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
1ce16570
Unverified
Commit
1ce16570
authored
Sep 11, 2023
by
OptimismBot
Committed by
GitHub
Sep 11, 2023
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #7164 from ethereum-optimism/ctb/create2-deploy
contracts-bedrock: use create2 to deploy implementations
parents
bc602c07
e8671bbf
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
36 additions
and
14 deletions
+36
-14
__init__.py
bedrock-devnet/devnet/__init__.py
+16
-1
helpers.go
op-chain-ops/genesis/helpers.go
+2
-0
Deploy.s.sol
packages/contracts-bedrock/scripts/Deploy.s.sol
+16
-11
Deployer.sol
packages/contracts-bedrock/scripts/Deployer.sol
+2
-2
No files found.
bedrock-devnet/devnet/__init__.py
View file @
1ce16570
...
@@ -110,6 +110,20 @@ def deploy_contracts(paths):
...
@@ -110,6 +110,20 @@ def deploy_contracts(paths):
response
=
json
.
loads
(
res
)
response
=
json
.
loads
(
res
)
account
=
response
[
'result'
][
0
]
account
=
response
[
'result'
][
0
]
log
.
info
(
f
'Deploying with {account}'
)
# send some ether to the create2 deployer account
run_command
([
'cast'
,
'send'
,
'--from'
,
account
,
'--rpc-url'
,
'http://127.0.0.1:8545'
,
'--unlocked'
,
'--value'
,
'1ether'
,
'0x3fAB184622Dc19b6109349B94811493BF2a45362'
],
env
=
{},
cwd
=
paths
.
contracts_bedrock_dir
)
# deploy the create2 deployer
run_command
([
'cast'
,
'publish'
,
'--rpc-url'
,
'http://127.0.0.1:8545'
,
'0xf8a58085174876e800830186a08080b853604580600e600039806000f350fe7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe03601600081602082378035828234f58015156039578182fd5b8082525050506014600cf31ba02222222222222222222222222222222222222222222222222222222222222222a02222222222222222222222222222222222222222222222222222222222222222'
],
env
=
{},
cwd
=
paths
.
contracts_bedrock_dir
)
fqn
=
'scripts/Deploy.s.sol:Deploy'
fqn
=
'scripts/Deploy.s.sol:Deploy'
run_command
([
run_command
([
...
@@ -138,7 +152,8 @@ def devnet_l1_genesis(paths):
...
@@ -138,7 +152,8 @@ def devnet_l1_genesis(paths):
geth
=
subprocess
.
Popen
([
geth
=
subprocess
.
Popen
([
'geth'
,
'--dev'
,
'--http'
,
'--http.api'
,
'eth,debug'
,
'geth'
,
'--dev'
,
'--http'
,
'--http.api'
,
'eth,debug'
,
'--verbosity'
,
'4'
,
'--gcmode'
,
'archive'
,
'--dev.gaslimit'
,
'30000000'
'--verbosity'
,
'4'
,
'--gcmode'
,
'archive'
,
'--dev.gaslimit'
,
'30000000'
,
'--rpc.allow-unprotected-txs'
])
])
forge
=
ChildProcess
(
deploy_contracts
,
paths
)
forge
=
ChildProcess
(
deploy_contracts
,
paths
)
...
...
op-chain-ops/genesis/helpers.go
View file @
1ce16570
...
@@ -55,6 +55,8 @@ var DevAccounts = []common.Address{
...
@@ -55,6 +55,8 @@ var DevAccounts = []common.Address{
common
.
HexToAddress
(
"0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266"
),
common
.
HexToAddress
(
"0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266"
),
// Test account used by geth tests
// Test account used by geth tests
common
.
HexToAddress
(
"0x71562b71999873DB5b286dF957af199Ec94617F7"
),
common
.
HexToAddress
(
"0x71562b71999873DB5b286dF957af199Ec94617F7"
),
// Deployer of create2 deterministic proxy https://github.com/Arachnid/deterministic-deployment-proxy
common
.
HexToAddress
(
"0x3fab184622dc19b6109349b94811493bf2a45362"
),
}
}
// The devBalance is the amount of wei that a dev account is funded with.
// The devBalance is the amount of wei that a dev account is funded with.
...
...
packages/contracts-bedrock/scripts/Deploy.s.sol
View file @
1ce16570
...
@@ -44,6 +44,11 @@ import "src/libraries/DisputeTypes.sol";
...
@@ -44,6 +44,11 @@ import "src/libraries/DisputeTypes.sol";
contract Deploy is Deployer {
contract Deploy is Deployer {
DeployConfig cfg;
DeployConfig cfg;
/// @notice The create2 salt used for deployment of the contract implementations.
/// Using this helps to reduce config across networks as the implementation
/// addresses will be the same across networks when deployed with create2.
bytes32 constant IMPL_SALT = bytes32("ether's phoenix");
/// @notice The name of the script, used to ensure the right deploy artifacts
/// @notice The name of the script, used to ensure the right deploy artifacts
/// are used.
/// are used.
function name() public pure override returns (string memory name_) {
function name() public pure override returns (string memory name_) {
...
@@ -288,7 +293,7 @@ contract Deploy is Deployer {
...
@@ -288,7 +293,7 @@ contract Deploy is Deployer {
/// @notice Deploy the L1CrossDomainMessenger
/// @notice Deploy the L1CrossDomainMessenger
function deployL1CrossDomainMessenger() public broadcast returns (address addr_) {
function deployL1CrossDomainMessenger() public broadcast returns (address addr_) {
L1CrossDomainMessenger messenger = new L1CrossDomainMessenger();
L1CrossDomainMessenger messenger = new L1CrossDomainMessenger
{ salt: IMPL_SALT }
();
require(address(messenger.PORTAL()) == address(0));
require(address(messenger.PORTAL()) == address(0));
require(address(messenger.portal()) == address(0));
require(address(messenger.portal()) == address(0));
...
@@ -304,7 +309,7 @@ contract Deploy is Deployer {
...
@@ -304,7 +309,7 @@ contract Deploy is Deployer {
/// @notice Deploy the OptimismPortal
/// @notice Deploy the OptimismPortal
function deployOptimismPortal() public broadcast returns (address addr_) {
function deployOptimismPortal() public broadcast returns (address addr_) {
OptimismPortal portal = new OptimismPortal();
OptimismPortal portal = new OptimismPortal
{ salt: IMPL_SALT }
();
require(address(portal.L2_ORACLE()) == address(0));
require(address(portal.L2_ORACLE()) == address(0));
require(portal.GUARDIAN() == address(0));
require(portal.GUARDIAN() == address(0));
...
@@ -319,7 +324,7 @@ contract Deploy is Deployer {
...
@@ -319,7 +324,7 @@ contract Deploy is Deployer {
/// @notice Deploy the L2OutputOracle
/// @notice Deploy the L2OutputOracle
function deployL2OutputOracle() public broadcast returns (address addr_) {
function deployL2OutputOracle() public broadcast returns (address addr_) {
L2OutputOracle oracle = new L2OutputOracle({
L2OutputOracle oracle = new L2OutputOracle
{ salt: IMPL_SALT }
({
_submissionInterval: cfg.l2OutputOracleSubmissionInterval(),
_submissionInterval: cfg.l2OutputOracleSubmissionInterval(),
_l2BlockTime: cfg.l2BlockTime(),
_l2BlockTime: cfg.l2BlockTime(),
_finalizationPeriodSeconds: cfg.finalizationPeriodSeconds()
_finalizationPeriodSeconds: cfg.finalizationPeriodSeconds()
...
@@ -346,7 +351,7 @@ contract Deploy is Deployer {
...
@@ -346,7 +351,7 @@ contract Deploy is Deployer {
/// @notice Deploy the OptimismMintableERC20Factory
/// @notice Deploy the OptimismMintableERC20Factory
function deployOptimismMintableERC20Factory() public broadcast returns (address addr_) {
function deployOptimismMintableERC20Factory() public broadcast returns (address addr_) {
OptimismMintableERC20Factory factory = new OptimismMintableERC20Factory();
OptimismMintableERC20Factory factory = new OptimismMintableERC20Factory
{ salt: IMPL_SALT }
();
require(factory.BRIDGE() == address(0));
require(factory.BRIDGE() == address(0));
require(factory.bridge() == address(0));
require(factory.bridge() == address(0));
...
@@ -359,7 +364,7 @@ contract Deploy is Deployer {
...
@@ -359,7 +364,7 @@ contract Deploy is Deployer {
/// @notice Deploy the DisputeGameFactory
/// @notice Deploy the DisputeGameFactory
function deployDisputeGameFactory() public onlyDevnet broadcast returns (address addr_) {
function deployDisputeGameFactory() public onlyDevnet broadcast returns (address addr_) {
DisputeGameFactory factory = new DisputeGameFactory();
DisputeGameFactory factory = new DisputeGameFactory
{ salt: IMPL_SALT }
();
save("DisputeGameFactory", address(factory));
save("DisputeGameFactory", address(factory));
console.log("DisputeGameFactory deployed at %s", address(factory));
console.log("DisputeGameFactory deployed at %s", address(factory));
...
@@ -368,7 +373,7 @@ contract Deploy is Deployer {
...
@@ -368,7 +373,7 @@ contract Deploy is Deployer {
/// @notice Deploy the BlockOracle
/// @notice Deploy the BlockOracle
function deployBlockOracle() public onlyDevnet broadcast returns (address addr_) {
function deployBlockOracle() public onlyDevnet broadcast returns (address addr_) {
BlockOracle oracle = new BlockOracle();
BlockOracle oracle = new BlockOracle
{ salt: IMPL_SALT }
();
save("BlockOracle", address(oracle));
save("BlockOracle", address(oracle));
console.log("BlockOracle deployed at %s", address(oracle));
console.log("BlockOracle deployed at %s", address(oracle));
...
@@ -377,7 +382,7 @@ contract Deploy is Deployer {
...
@@ -377,7 +382,7 @@ contract Deploy is Deployer {
/// @notice Deploy the PreimageOracle
/// @notice Deploy the PreimageOracle
function deployPreimageOracle() public onlyDevnet broadcast returns (address addr_) {
function deployPreimageOracle() public onlyDevnet broadcast returns (address addr_) {
PreimageOracle preimageOracle = new PreimageOracle();
PreimageOracle preimageOracle = new PreimageOracle
{ salt: IMPL_SALT }
();
save("PreimageOracle", address(preimageOracle));
save("PreimageOracle", address(preimageOracle));
console.log("PreimageOracle deployed at %s", address(preimageOracle));
console.log("PreimageOracle deployed at %s", address(preimageOracle));
...
@@ -386,7 +391,7 @@ contract Deploy is Deployer {
...
@@ -386,7 +391,7 @@ contract Deploy is Deployer {
/// @notice Deploy Mips
/// @notice Deploy Mips
function deployMips() public onlyDevnet broadcast returns (address addr_) {
function deployMips() public onlyDevnet broadcast returns (address addr_) {
MIPS mips = new MIPS(IPreimageOracle(mustGetAddress("PreimageOracle")));
MIPS mips = new MIPS
{ salt: IMPL_SALT }
(IPreimageOracle(mustGetAddress("PreimageOracle")));
save("Mips", address(mips));
save("Mips", address(mips));
console.log("MIPS deployed at %s", address(mips));
console.log("MIPS deployed at %s", address(mips));
...
@@ -395,7 +400,7 @@ contract Deploy is Deployer {
...
@@ -395,7 +400,7 @@ contract Deploy is Deployer {
/// @notice Deploy the SystemConfig
/// @notice Deploy the SystemConfig
function deploySystemConfig() public broadcast returns (address addr_) {
function deploySystemConfig() public broadcast returns (address addr_) {
SystemConfig config = new SystemConfig();
SystemConfig config = new SystemConfig
{ salt: IMPL_SALT }
();
require(config.owner() == address(0xdEaD));
require(config.owner() == address(0xdEaD));
require(config.overhead() == 0);
require(config.overhead() == 0);
...
@@ -428,7 +433,7 @@ contract Deploy is Deployer {
...
@@ -428,7 +433,7 @@ contract Deploy is Deployer {
/// @notice Deploy the L1StandardBridge
/// @notice Deploy the L1StandardBridge
function deployL1StandardBridge() public broadcast returns (address addr_) {
function deployL1StandardBridge() public broadcast returns (address addr_) {
L1StandardBridge bridge = new L1StandardBridge();
L1StandardBridge bridge = new L1StandardBridge
{ salt: IMPL_SALT }
();
require(address(bridge.MESSENGER()) == address(0));
require(address(bridge.MESSENGER()) == address(0));
require(address(bridge.messenger()) == address(0));
require(address(bridge.messenger()) == address(0));
...
@@ -443,7 +448,7 @@ contract Deploy is Deployer {
...
@@ -443,7 +448,7 @@ contract Deploy is Deployer {
/// @notice Deploy the L1ERC721Bridge
/// @notice Deploy the L1ERC721Bridge
function deployL1ERC721Bridge() public broadcast returns (address addr_) {
function deployL1ERC721Bridge() public broadcast returns (address addr_) {
L1ERC721Bridge bridge = new L1ERC721Bridge();
L1ERC721Bridge bridge = new L1ERC721Bridge
{ salt: IMPL_SALT }
();
require(address(bridge.MESSENGER()) == address(0));
require(address(bridge.MESSENGER()) == address(0));
require(bridge.OTHER_BRIDGE() == Predeploys.L2_ERC721_BRIDGE);
require(bridge.OTHER_BRIDGE() == Predeploys.L2_ERC721_BRIDGE);
...
...
packages/contracts-bedrock/scripts/Deployer.sol
View file @
1ce16570
...
@@ -265,8 +265,8 @@ abstract contract Deployer is Script {
...
@@ -265,8 +265,8 @@ abstract contract Deployer is Script {
'"',
'"',
vm.toString(_addr),
vm.toString(_addr),
'"',
'"',
") | select(.transactionType == "
,
') | select(.transactionType == "CREATE"'
,
'
"CREATE
"',
'
or .transactionType == "CREATE2
"',
")' < ",
")' < ",
deployPath
deployPath
);
);
...
...
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