forked from ethereum/hive
-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
316 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,258 @@ | ||
package optimism | ||
|
||
import ( | ||
"context" | ||
"fmt" | ||
"os" | ||
|
||
"github.com/ethereum/go-ethereum/ethclient" | ||
"github.com/ethereum/hive/hivesim" | ||
) | ||
|
||
type Devnet struct { | ||
T *hivesim.T | ||
|
||
L1 *Eth1Node | ||
L2 *L2Node | ||
Rollup *OpNode | ||
Proposer *L2OSNode | ||
Batcher *BSSNode | ||
|
||
GenesisTimestamp string | ||
L2Genesis string | ||
|
||
L2ToL1MessagePasserJSON string | ||
L2CrossDomainMessengerJSON string | ||
OptimismMintableTokenFactoryJSON string | ||
L2StandardBridgeJSON string | ||
L1BlockJSON string | ||
|
||
L2OutputOracle string | ||
OptimismPortal string | ||
|
||
Nodes map[string]*hivesim.ClientDefinition | ||
Ctx context.Context | ||
} | ||
|
||
func (d *Devnet) Start() { | ||
clientTypes, err := d.T.Sim.ClientTypes() | ||
if err != nil { | ||
d.T.Fatal(err) | ||
} | ||
var eth1, l2, op, l2os, bss *hivesim.ClientDefinition | ||
for _, client := range clientTypes { | ||
if client.HasRole("op-l1") { | ||
eth1 = client | ||
} | ||
if client.HasRole("op-l2") { | ||
l2 = client | ||
} | ||
if client.HasRole("op-node") { | ||
op = client | ||
} | ||
if client.HasRole("op-proposer") { | ||
l2os = client | ||
} | ||
if client.HasRole("op-batcher") { | ||
bss = client | ||
} | ||
} | ||
|
||
if eth1 == nil || l2 == nil || op == nil || l2os == nil || bss == nil { | ||
d.T.Fatal("op-l1, op-l2, op-node, op-proposer, op-batcher required") | ||
} | ||
|
||
// Generate genesis for execution clients | ||
// eth1Genesis := setup.BuildEth1Genesis(config.TerminalTotalDifficulty, uint64(eth1GenesisTime)) | ||
// eth1ConfigOpt := eth1Genesis.ToParams(depositAddress) | ||
// eth1Bundle, err := setup.Eth1Bundle(eth1Genesis.Genesis) | ||
// if err != nil { | ||
// t.Fatal(err) | ||
// } | ||
var eth1ConfigOpt, eth1Bundle hivesim.Params | ||
execNodeOpts := hivesim.Params{ | ||
"HIVE_CATALYST_ENABLED": "1", | ||
"HIVE_LOGLEVEL": os.Getenv("HIVE_LOGLEVEL"), | ||
"HIVE_NODETYPE": "full", | ||
} | ||
executionOpts := hivesim.Bundle(eth1ConfigOpt, eth1Bundle, execNodeOpts) | ||
|
||
opts := []hivesim.StartOption{executionOpts} | ||
d.L1 = &Eth1Node{d.T.StartClient(eth1.Name, opts...), 8545, 8546} | ||
|
||
d.Nodes["op-l1"] = eth1 | ||
d.Nodes["op-l2"] = l2 | ||
d.Nodes["op-node"] = op | ||
d.Nodes["op-proposer"] = l2os | ||
d.Nodes["op-batcher"] = bss | ||
} | ||
|
||
func (d *Devnet) Wait() error { | ||
// TODO: wait until rpc connects | ||
client := ethclient.NewClient(d.L1.Client.RPC()) | ||
_, err := client.ChainID(d.Ctx) | ||
return err | ||
} | ||
|
||
func (d *Devnet) DeployL1() error { | ||
execInfo, err := d.L1.Client.Exec("deploy.sh") | ||
fmt.Println(execInfo.Stdout) | ||
return err | ||
} | ||
|
||
func (d *Devnet) Cat(path string) (string, error) { | ||
execInfo, err := d.L1.Client.Exec("cat.sh", path) | ||
if err != nil { | ||
return "", err | ||
} | ||
return execInfo.Stdout, nil | ||
} | ||
|
||
func (d *Devnet) InitL2() error { | ||
genesisTimestamp, err := d.Cat("/hive/genesis_timestamp") | ||
if err != nil { | ||
return err | ||
} | ||
d.GenesisTimestamp = genesisTimestamp | ||
|
||
l2OutputOracle, err := d.Cat("/hive/optimism/packages/contracts-bedrock/deployments/devnetL1/L2OutputOracleProxy.json") | ||
if err != nil { | ||
return err | ||
} | ||
d.L2OutputOracle = l2OutputOracle | ||
|
||
optimismPortal, err := d.Cat("/hive/optimism/packages/contracts-bedrock/deployments/devnetL1/OptimismPortalProxy.json") | ||
if err != nil { | ||
return err | ||
} | ||
d.OptimismPortal = optimismPortal | ||
|
||
l2ToL1MessagePasserJSON, err := d.Cat("/hive/optimism/packages/contracts-bedrock/artifacts/contracts/L2/L2ToL1MessagePasser.sol/L2ToL1MessagePasser.json") | ||
if err != nil { | ||
return err | ||
} | ||
d.L2ToL1MessagePasserJSON = l2ToL1MessagePasserJSON | ||
|
||
l2CrossDomainMessengerJSON, err := d.Cat("/hive/optimism/packages/contracts-bedrock/artifacts/contracts/L2/L2CrossDomainMessenger.sol/L2CrossDomainMessenger.json") | ||
if err != nil { | ||
return err | ||
} | ||
d.L2CrossDomainMessengerJSON = l2CrossDomainMessengerJSON | ||
|
||
optimismMintableTokenFactoryJSON, err := d.Cat("/hive/optimism/packages/contracts-bedrock/artifacts/contracts/universal/OptimismMintableTokenFactoryProxy.sol/OptimismMintableTokenFactoryProxy.json") | ||
if err != nil { | ||
return err | ||
} | ||
d.OptimismMintableTokenFactoryJSON = optimismMintableTokenFactoryJSON | ||
|
||
l2StandardBridgeJSON, err := d.Cat("/hive/optimism/packages/contracts-bedrock/artifacts/contracts/L2/L2StandardBridge.sol/L2StandardBridge.json") | ||
if err != nil { | ||
return err | ||
} | ||
d.L2StandardBridgeJSON = l2StandardBridgeJSON | ||
|
||
l1BlockJSON, err := d.Cat("/hive/optimism/packages/contracts-bedrock/artifacts/contracts/L2/L1Block.sol/L1Block.json") | ||
if err != nil { | ||
return err | ||
} | ||
d.L1BlockJSON = l1BlockJSON | ||
|
||
return nil | ||
} | ||
|
||
func (d *Devnet) StartL2() error { | ||
l2 := d.Nodes["op-l2"] | ||
|
||
executionOpts := hivesim.Params{ | ||
"HIVE_CHECK_LIVE_PORT": "9545", | ||
"HIVE_LOGLEVEL": os.Getenv("HIVE_LOGLEVEL"), | ||
"HIVE_NODETYPE": "full", | ||
"HIVE_NETWORK_ID": networkID.String(), | ||
"HIVE_CHAIN_ID": chainID.String(), | ||
} | ||
|
||
genesisTimestampOpt := hivesim.WithDynamicFile("/genesis_timestamp", bytesSource([]byte(d.GenesisTimestamp))) | ||
l2ToL1MessagePasserOpt := hivesim.WithDynamicFile("/L2ToL1MessagePasser.json", bytesSource([]byte(d.L2ToL1MessagePasserJSON))) | ||
l2CrossDomainMessengerOpt := hivesim.WithDynamicFile("/L2CrossDomainMessenger.json", bytesSource([]byte(d.L2CrossDomainMessengerJSON))) | ||
optimismMintableTokenFactoryOpt := hivesim.WithDynamicFile("/OptimismMintableTokenFactoryProxy.json", bytesSource([]byte(d.OptimismMintableTokenFactoryJSON))) | ||
l2StandardBridgeOpt := hivesim.WithDynamicFile("/L2StandardBridge.json", bytesSource([]byte(d.L2StandardBridgeJSON))) | ||
l1BlockOpt := hivesim.WithDynamicFile("/L1Block.json", bytesSource([]byte(d.L1BlockJSON))) | ||
opts := []hivesim.StartOption{executionOpts, genesisTimestampOpt, l2ToL1MessagePasserOpt, l2CrossDomainMessengerOpt, optimismMintableTokenFactoryOpt, l2StandardBridgeOpt, l1BlockOpt} | ||
d.L2 = &L2Node{d.T.StartClient(l2.Name, opts...), 9545, 9546} | ||
return nil | ||
} | ||
|
||
func (d *Devnet) InitOp() error { | ||
execInfo, err := d.L2.Client.Exec("cat.sh", "/hive/genesis-l2.json") | ||
if err != nil { | ||
return err | ||
} | ||
d.L2Genesis = execInfo.Stdout | ||
return nil | ||
} | ||
|
||
func (d *Devnet) StartOp() error { | ||
op := d.Nodes["op-node"] | ||
|
||
executionOpts := hivesim.Params{ | ||
"HIVE_CHECK_LIVE_PORT": "7545", | ||
"HIVE_CATALYST_ENABLED": "1", | ||
"HIVE_LOGLEVEL": os.Getenv("HIVE_LOGLEVEL"), | ||
"HIVE_NODETYPE": "full", | ||
|
||
"HIVE_L1_URL": fmt.Sprintf("http://%s:%d", d.L1.IP, d.L1.HTTPPort), | ||
"HIVE_L2_URL": fmt.Sprintf("http://%s:%d", d.L2.IP, d.L2.HTTPPort), | ||
"HIVE_L1_ETH_RPC_FLAG": fmt.Sprintf("--l1=ws://%s:%d", d.L1.IP, d.L1.WSPort), | ||
"HIVE_L2_ENGINE_RPC_FLAG": fmt.Sprintf("--l2=ws://%s:%d", d.L2.IP, d.L2.WSPort), | ||
} | ||
|
||
if op.HasRole("op-sequencer") { | ||
executionOpts = executionOpts.Set("HIVE_SEQUENCER_ENABLED_FLAG", "--sequencer.enabled") | ||
executionOpts = executionOpts.Set("HIVE_SEQUENCER_KEY_FLAG", "--p2p.sequencer.key=/config/p2p-sequencer-key.txt") | ||
} | ||
|
||
optimismPortalOpt := hivesim.WithDynamicFile("/OptimismPortalProxy.json", bytesSource([]byte(d.OptimismPortal))) | ||
opts := []hivesim.StartOption{executionOpts, optimismPortalOpt} | ||
d.Rollup = &OpNode{d.T.StartClient(op.Name, opts...), 7545} | ||
return nil | ||
} | ||
|
||
func (d *Devnet) StartL2OS() error { | ||
l2os := d.Nodes["op-proposer"] | ||
|
||
executionOpts := hivesim.Params{ | ||
"HIVE_CHECK_LIVE_PORT": "0", | ||
"HIVE_CATALYST_ENABLED": "1", | ||
"HIVE_LOGLEVEL": os.Getenv("HIVE_LOGLEVEL"), | ||
"HIVE_NODETYPE": "full", | ||
|
||
"HIVE_L1_ETH_RPC_FLAG": fmt.Sprintf("--l1-eth-rpc=http://%s:%d", d.L1.IP, d.L1.HTTPPort), | ||
"HIVE_L2_ETH_RPC_FLAG": fmt.Sprintf("--l2-eth-rpc=http://%s:%d", d.L2.IP, d.L2.HTTPPort), | ||
"HIVE_ROLLUP_RPC_FLAG": fmt.Sprintf("--rollup-rpc=http://%s:%d", d.Rollup.IP, d.Rollup.HTTPPort), | ||
} | ||
|
||
l2OutputOracleOpt := hivesim.WithDynamicFile("/L2OutputOracleProxy.json", bytesSource([]byte(d.L2OutputOracle))) | ||
opts := []hivesim.StartOption{executionOpts, l2OutputOracleOpt} | ||
d.Proposer = &L2OSNode{d.T.StartClient(l2os.Name, opts...)} | ||
return nil | ||
} | ||
|
||
func (d *Devnet) StartBSS() error { | ||
bss := d.Nodes["op-batcher"] | ||
|
||
executionOpts := hivesim.Params{ | ||
"HIVE_CHECK_LIVE_PORT": "0", | ||
"HIVE_CATALYST_ENABLED": "1", | ||
"HIVE_LOGLEVEL": os.Getenv("HIVE_LOGLEVEL"), | ||
"HIVE_NODETYPE": "full", | ||
|
||
"HIVE_L1_ETH_RPC_FLAG": fmt.Sprintf("--l1-eth-rpc=http://%s:%d", d.L1.IP, d.L1.HTTPPort), | ||
"HIVE_L2_ETH_RPC_FLAG": fmt.Sprintf("--l2-eth-rpc=http://%s:%d", d.L2.IP, d.L2.HTTPPort), | ||
"HIVE_ROLLUP_RPC_FLAG": fmt.Sprintf("--rollup-rpc=http://%s:%d", d.Rollup.IP, d.Rollup.HTTPPort), | ||
} | ||
|
||
optimismPortalOpt := hivesim.WithDynamicFile("/OptimismPortalProxy.json", bytesSource([]byte(d.OptimismPortal))) | ||
opts := []hivesim.StartOption{executionOpts, optimismPortalOpt} | ||
d.Batcher = &BSSNode{d.T.StartClient(bss.Name, opts...)} | ||
return nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package optimism | ||
|
||
import ( | ||
"bytes" | ||
"io" | ||
"io/ioutil" | ||
) | ||
|
||
func bytesSource(data []byte) func() (io.ReadCloser, error) { | ||
return func() (io.ReadCloser, error) { | ||
return ioutil.NopCloser(bytes.NewReader(data)), nil | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
package optimism | ||
|
||
import "github.com/ethereum/hive/hivesim" | ||
|
||
type Eth1Node struct { | ||
*hivesim.Client | ||
HTTPPort uint16 | ||
WSPort uint16 | ||
} | ||
|
||
type L2Node struct { | ||
*hivesim.Client | ||
HTTPPort uint16 | ||
WSPort uint16 | ||
} | ||
|
||
type OpNode struct { | ||
*hivesim.Client | ||
HTTPPort uint16 | ||
} | ||
|
||
type L2OSNode struct { | ||
*hivesim.Client | ||
} | ||
|
||
type BSSNode struct { | ||
*hivesim.Client | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
package optimism | ||
|
||
import ( | ||
"math/big" | ||
|
||
"github.com/ethereum/go-ethereum/params" | ||
) | ||
|
||
var ( | ||
// parameters used for signing transactions | ||
chainID = big.NewInt(901) | ||
gasPrice = big.NewInt(30 * params.GWei) | ||
|
||
// would be nice to use a networkID that's different from chainID, | ||
// but some clients don't support the distinction properly. | ||
networkID = big.NewInt(901) | ||
) |