Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
N
nebula
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
exchain
nebula
Commits
6da41697
Unverified
Commit
6da41697
authored
Dec 18, 2022
by
mergify[bot]
Committed by
GitHub
Dec 18, 2022
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #4521 from ethereum-optimism/fix/ctp-test-contract-versions
contracts-periphery: update version on test contracts
parents
7a5eddb3
957c3935
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
7 additions
and
7 deletions
+7
-7
CallRecorder.sol
...acts-periphery/contracts/testing/helpers/CallRecorder.sol
+1
-1
ExternalContractCompiler.sol
...ry/contracts/testing/helpers/ExternalContractCompiler.sol
+1
-1
FailingReceiver.sol
...s-periphery/contracts/testing/helpers/FailingReceiver.sol
+1
-1
Reverter.sol
...ontracts-periphery/contracts/testing/helpers/Reverter.sol
+1
-1
SimpleStorage.sol
...cts-periphery/contracts/testing/helpers/SimpleStorage.sol
+1
-1
TestERC20.sol
...ntracts-periphery/contracts/testing/helpers/TestERC20.sol
+1
-1
TestERC721.sol
...tracts-periphery/contracts/testing/helpers/TestERC721.sol
+1
-1
No files found.
packages/contracts-periphery/contracts/testing/helpers/CallRecorder.sol
View file @
6da41697
// SPDX-License-Identifier: MIT
pragma solidity
0.8.15
;
pragma solidity
^0.8.0
;
contract CallRecorder {
struct CallInfo {
...
...
packages/contracts-periphery/contracts/testing/helpers/ExternalContractCompiler.sol
View file @
6da41697
// SPDX-License-Identifier: MIT
pragma solidity
0.8.15
;
pragma solidity
^0.8.0
;
import { ProxyAdmin } from "@eth-optimism/contracts-bedrock/contracts/universal/ProxyAdmin.sol";
import { Proxy } from "@eth-optimism/contracts-bedrock/contracts/universal/Proxy.sol";
...
...
packages/contracts-periphery/contracts/testing/helpers/FailingReceiver.sol
View file @
6da41697
// SPDX-License-Identifier: MIT
pragma solidity
0.8.15
;
pragma solidity
^0.8.0
;
contract FailingReceiver {
receive() external payable {
...
...
packages/contracts-periphery/contracts/testing/helpers/Reverter.sol
View file @
6da41697
// SPDX-License-Identifier: MIT
pragma solidity
0.8.15
;
pragma solidity
^0.8.0
;
contract Reverter {
function doRevert() public pure {
...
...
packages/contracts-periphery/contracts/testing/helpers/SimpleStorage.sol
View file @
6da41697
// SPDX-License-Identifier: MIT
pragma solidity
0.8.15
;
pragma solidity
^0.8.0
;
contract SimpleStorage {
mapping(bytes32 => bytes32) public db;
...
...
packages/contracts-periphery/contracts/testing/helpers/TestERC20.sol
View file @
6da41697
// SPDX-License-Identifier: MIT
pragma solidity
0.8.15
;
pragma solidity
^0.8.0
;
import { ERC20 } from "@rari-capital/solmate/src/tokens/ERC20.sol";
...
...
packages/contracts-periphery/contracts/testing/helpers/TestERC721.sol
View file @
6da41697
// SPDX-License-Identifier: MIT
pragma solidity
0.8.15
;
pragma solidity
^0.8.0
;
import { ERC721 } from "@rari-capital/solmate/src/tokens/ERC721.sol";
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment