├── .gitignore ├── deployments ├── goerli │ ├── .chainId │ ├── Lib_AddressManager.json │ ├── OVM_CanonicalTransactionChain.json │ ├── OVM_ChainStorageContainer:CTC:batches.json │ ├── OVM_ChainStorageContainer:CTC:queue.json │ ├── OVM_ChainStorageContainer:SCC:batches.json │ ├── OVM_L1CrossDomainMessenger.json │ ├── OVM_StateCommitmentChain.json │ ├── Proxy__OVM_L1CrossDomainMessenger.json │ ├── mockOVM_BondManager.json │ └── solcInputs │ │ └── cebcb515c1a9c570d96e0b8f6fd237e2.json ├── kovan-v1 │ ├── .chainId │ ├── Lib_AddressManager.json │ ├── OVM_CanonicalTransactionChain.json │ ├── OVM_ChainStorageContainer:CTC:batches.json │ ├── OVM_ChainStorageContainer:CTC:queue.json │ ├── OVM_ChainStorageContainer:SCC:batches.json │ ├── OVM_L1CrossDomainMessenger.json │ ├── OVM_StateCommitmentChain.json │ ├── Proxy__OVM_L1CrossDomainMessenger.json │ ├── mockOVM_BondManager.json │ └── solcInputs │ │ └── cebcb515c1a9c570d96e0b8f6fd237e2.json ├── kovan-v2 │ ├── .chainId │ ├── Lib_AddressManager.json │ ├── OVM_CanonicalTransactionChain.json │ ├── OVM_ChainStorageContainer:CTC:batches.json │ ├── OVM_ChainStorageContainer:CTC:queue.json │ ├── OVM_ChainStorageContainer:SCC:batches.json │ ├── OVM_ExecutionManager.json │ ├── OVM_FraudVerifier.json │ ├── OVM_L1CrossDomainMessenger.json │ ├── OVM_L1ETHGateway.json │ ├── OVM_L1MultiMessageRelayer.json │ ├── OVM_SafetyChecker.json │ ├── OVM_StateCommitmentChain.json │ ├── OVM_StateManagerFactory.json │ ├── OVM_StateTransitionerFactory.json │ ├── Proxy__OVM_L1CrossDomainMessenger.json │ ├── Proxy__OVM_L1ETHGateway.json │ ├── mockOVM_BondManager.json │ └── solcInputs │ │ └── 03aed03b958b1d37f90bd88d0f56dd85.json ├── mainnet-v1 │ ├── .chainId │ ├── Lib_AddressManager.json │ ├── OVM_CanonicalTransactionChain.json │ ├── OVM_ChainStorageContainer:CTC:batches.json │ ├── OVM_ChainStorageContainer:CTC:queue.json │ ├── OVM_ChainStorageContainer:SCC:batches.json │ ├── OVM_L1CrossDomainMessenger.json │ ├── OVM_StateCommitmentChain.json │ ├── Proxy__OVM_L1CrossDomainMessenger.json │ ├── mockOVM_BondManager.json │ └── solcInputs │ │ └── cebcb515c1a9c570d96e0b8f6fd237e2.json └── mainnet-v2 │ ├── .chainId │ ├── Lib_AddressManager.json │ ├── OVM_CanonicalTransactionChain.json │ ├── OVM_ChainStorageContainer:CTC:batches.json │ ├── OVM_ChainStorageContainer:CTC:queue.json │ ├── OVM_ChainStorageContainer:SCC:batches.json │ ├── OVM_ExecutionManager.json │ ├── OVM_FraudVerifier.json │ ├── OVM_L1CrossDomainMessenger.json │ ├── OVM_L1ETHGateway.json │ ├── OVM_L1MultiMessageRelayer.json │ ├── OVM_SafetyChecker.json │ ├── OVM_StateCommitmentChain.json │ ├── OVM_StateManagerFactory.json │ ├── OVM_StateTransitionerFactory.json │ ├── Proxy__OVM_L1CrossDomainMessenger.json │ ├── Proxy__OVM_L1ETHGateway.json │ ├── mockOVM_BondManager.json │ └── solcInputs │ └── 43ee6bb8ef92595aa6d0e22a6c464dff.json ├── package.json ├── scripts ├── addresses.js └── verify.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /deployments/goerli/.chainId: -------------------------------------------------------------------------------- 1 | 5 -------------------------------------------------------------------------------- /deployments/goerli/Lib_AddressManager.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/regenesis/HEAD/deployments/goerli/Lib_AddressManager.json -------------------------------------------------------------------------------- /deployments/goerli/OVM_CanonicalTransactionChain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/regenesis/HEAD/deployments/goerli/OVM_CanonicalTransactionChain.json -------------------------------------------------------------------------------- /deployments/goerli/OVM_ChainStorageContainer:CTC:batches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/regenesis/HEAD/deployments/goerli/OVM_ChainStorageContainer:CTC:batches.json -------------------------------------------------------------------------------- /deployments/goerli/OVM_ChainStorageContainer:CTC:queue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/regenesis/HEAD/deployments/goerli/OVM_ChainStorageContainer:CTC:queue.json -------------------------------------------------------------------------------- /deployments/goerli/OVM_ChainStorageContainer:SCC:batches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/regenesis/HEAD/deployments/goerli/OVM_ChainStorageContainer:SCC:batches.json -------------------------------------------------------------------------------- /deployments/goerli/OVM_L1CrossDomainMessenger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/regenesis/HEAD/deployments/goerli/OVM_L1CrossDomainMessenger.json -------------------------------------------------------------------------------- /deployments/goerli/OVM_StateCommitmentChain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/regenesis/HEAD/deployments/goerli/OVM_StateCommitmentChain.json -------------------------------------------------------------------------------- /deployments/goerli/Proxy__OVM_L1CrossDomainMessenger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/regenesis/HEAD/deployments/goerli/Proxy__OVM_L1CrossDomainMessenger.json -------------------------------------------------------------------------------- /deployments/goerli/mockOVM_BondManager.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/regenesis/HEAD/deployments/goerli/mockOVM_BondManager.json -------------------------------------------------------------------------------- /deployments/goerli/solcInputs/cebcb515c1a9c570d96e0b8f6fd237e2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/regenesis/HEAD/deployments/goerli/solcInputs/cebcb515c1a9c570d96e0b8f6fd237e2.json -------------------------------------------------------------------------------- /deployments/kovan-v1/.chainId: -------------------------------------------------------------------------------- 1 | 42 -------------------------------------------------------------------------------- /deployments/kovan-v1/Lib_AddressManager.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/regenesis/HEAD/deployments/kovan-v1/Lib_AddressManager.json -------------------------------------------------------------------------------- /deployments/kovan-v1/OVM_CanonicalTransactionChain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/regenesis/HEAD/deployments/kovan-v1/OVM_CanonicalTransactionChain.json -------------------------------------------------------------------------------- /deployments/kovan-v1/OVM_ChainStorageContainer:CTC:batches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/regenesis/HEAD/deployments/kovan-v1/OVM_ChainStorageContainer:CTC:batches.json -------------------------------------------------------------------------------- /deployments/kovan-v1/OVM_ChainStorageContainer:CTC:queue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/regenesis/HEAD/deployments/kovan-v1/OVM_ChainStorageContainer:CTC:queue.json -------------------------------------------------------------------------------- /deployments/kovan-v1/OVM_ChainStorageContainer:SCC:batches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/regenesis/HEAD/deployments/kovan-v1/OVM_ChainStorageContainer:SCC:batches.json -------------------------------------------------------------------------------- /deployments/kovan-v1/OVM_L1CrossDomainMessenger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/regenesis/HEAD/deployments/kovan-v1/OVM_L1CrossDomainMessenger.json -------------------------------------------------------------------------------- /deployments/kovan-v1/OVM_StateCommitmentChain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/regenesis/HEAD/deployments/kovan-v1/OVM_StateCommitmentChain.json -------------------------------------------------------------------------------- /deployments/kovan-v1/Proxy__OVM_L1CrossDomainMessenger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/regenesis/HEAD/deployments/kovan-v1/Proxy__OVM_L1CrossDomainMessenger.json -------------------------------------------------------------------------------- /deployments/kovan-v1/mockOVM_BondManager.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/regenesis/HEAD/deployments/kovan-v1/mockOVM_BondManager.json -------------------------------------------------------------------------------- /deployments/kovan-v1/solcInputs/cebcb515c1a9c570d96e0b8f6fd237e2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/regenesis/HEAD/deployments/kovan-v1/solcInputs/cebcb515c1a9c570d96e0b8f6fd237e2.json -------------------------------------------------------------------------------- /deployments/kovan-v2/.chainId: -------------------------------------------------------------------------------- 1 | 42 -------------------------------------------------------------------------------- /deployments/kovan-v2/Lib_AddressManager.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/regenesis/HEAD/deployments/kovan-v2/Lib_AddressManager.json -------------------------------------------------------------------------------- /deployments/kovan-v2/OVM_CanonicalTransactionChain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/regenesis/HEAD/deployments/kovan-v2/OVM_CanonicalTransactionChain.json -------------------------------------------------------------------------------- /deployments/kovan-v2/OVM_ChainStorageContainer:CTC:batches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/regenesis/HEAD/deployments/kovan-v2/OVM_ChainStorageContainer:CTC:batches.json -------------------------------------------------------------------------------- /deployments/kovan-v2/OVM_ChainStorageContainer:CTC:queue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/regenesis/HEAD/deployments/kovan-v2/OVM_ChainStorageContainer:CTC:queue.json -------------------------------------------------------------------------------- /deployments/kovan-v2/OVM_ChainStorageContainer:SCC:batches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/regenesis/HEAD/deployments/kovan-v2/OVM_ChainStorageContainer:SCC:batches.json -------------------------------------------------------------------------------- /deployments/kovan-v2/OVM_ExecutionManager.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/regenesis/HEAD/deployments/kovan-v2/OVM_ExecutionManager.json -------------------------------------------------------------------------------- /deployments/kovan-v2/OVM_FraudVerifier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/regenesis/HEAD/deployments/kovan-v2/OVM_FraudVerifier.json -------------------------------------------------------------------------------- /deployments/kovan-v2/OVM_L1CrossDomainMessenger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/regenesis/HEAD/deployments/kovan-v2/OVM_L1CrossDomainMessenger.json -------------------------------------------------------------------------------- /deployments/kovan-v2/OVM_L1ETHGateway.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/regenesis/HEAD/deployments/kovan-v2/OVM_L1ETHGateway.json -------------------------------------------------------------------------------- /deployments/kovan-v2/OVM_L1MultiMessageRelayer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/regenesis/HEAD/deployments/kovan-v2/OVM_L1MultiMessageRelayer.json -------------------------------------------------------------------------------- /deployments/kovan-v2/OVM_SafetyChecker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/regenesis/HEAD/deployments/kovan-v2/OVM_SafetyChecker.json -------------------------------------------------------------------------------- /deployments/kovan-v2/OVM_StateCommitmentChain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/regenesis/HEAD/deployments/kovan-v2/OVM_StateCommitmentChain.json -------------------------------------------------------------------------------- /deployments/kovan-v2/OVM_StateManagerFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/regenesis/HEAD/deployments/kovan-v2/OVM_StateManagerFactory.json -------------------------------------------------------------------------------- /deployments/kovan-v2/OVM_StateTransitionerFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/regenesis/HEAD/deployments/kovan-v2/OVM_StateTransitionerFactory.json -------------------------------------------------------------------------------- /deployments/kovan-v2/Proxy__OVM_L1CrossDomainMessenger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/regenesis/HEAD/deployments/kovan-v2/Proxy__OVM_L1CrossDomainMessenger.json -------------------------------------------------------------------------------- /deployments/kovan-v2/Proxy__OVM_L1ETHGateway.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/regenesis/HEAD/deployments/kovan-v2/Proxy__OVM_L1ETHGateway.json -------------------------------------------------------------------------------- /deployments/kovan-v2/mockOVM_BondManager.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/regenesis/HEAD/deployments/kovan-v2/mockOVM_BondManager.json -------------------------------------------------------------------------------- /deployments/kovan-v2/solcInputs/03aed03b958b1d37f90bd88d0f56dd85.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/regenesis/HEAD/deployments/kovan-v2/solcInputs/03aed03b958b1d37f90bd88d0f56dd85.json -------------------------------------------------------------------------------- /deployments/mainnet-v1/.chainId: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /deployments/mainnet-v1/Lib_AddressManager.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/regenesis/HEAD/deployments/mainnet-v1/Lib_AddressManager.json -------------------------------------------------------------------------------- /deployments/mainnet-v1/OVM_CanonicalTransactionChain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/regenesis/HEAD/deployments/mainnet-v1/OVM_CanonicalTransactionChain.json -------------------------------------------------------------------------------- /deployments/mainnet-v1/OVM_ChainStorageContainer:CTC:batches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/regenesis/HEAD/deployments/mainnet-v1/OVM_ChainStorageContainer:CTC:batches.json -------------------------------------------------------------------------------- /deployments/mainnet-v1/OVM_ChainStorageContainer:CTC:queue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/regenesis/HEAD/deployments/mainnet-v1/OVM_ChainStorageContainer:CTC:queue.json -------------------------------------------------------------------------------- /deployments/mainnet-v1/OVM_ChainStorageContainer:SCC:batches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/regenesis/HEAD/deployments/mainnet-v1/OVM_ChainStorageContainer:SCC:batches.json -------------------------------------------------------------------------------- /deployments/mainnet-v1/OVM_L1CrossDomainMessenger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/regenesis/HEAD/deployments/mainnet-v1/OVM_L1CrossDomainMessenger.json -------------------------------------------------------------------------------- /deployments/mainnet-v1/OVM_StateCommitmentChain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/regenesis/HEAD/deployments/mainnet-v1/OVM_StateCommitmentChain.json -------------------------------------------------------------------------------- /deployments/mainnet-v1/Proxy__OVM_L1CrossDomainMessenger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/regenesis/HEAD/deployments/mainnet-v1/Proxy__OVM_L1CrossDomainMessenger.json -------------------------------------------------------------------------------- /deployments/mainnet-v1/mockOVM_BondManager.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/regenesis/HEAD/deployments/mainnet-v1/mockOVM_BondManager.json -------------------------------------------------------------------------------- /deployments/mainnet-v1/solcInputs/cebcb515c1a9c570d96e0b8f6fd237e2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/regenesis/HEAD/deployments/mainnet-v1/solcInputs/cebcb515c1a9c570d96e0b8f6fd237e2.json -------------------------------------------------------------------------------- /deployments/mainnet-v2/.chainId: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /deployments/mainnet-v2/Lib_AddressManager.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/regenesis/HEAD/deployments/mainnet-v2/Lib_AddressManager.json -------------------------------------------------------------------------------- /deployments/mainnet-v2/OVM_CanonicalTransactionChain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/regenesis/HEAD/deployments/mainnet-v2/OVM_CanonicalTransactionChain.json -------------------------------------------------------------------------------- /deployments/mainnet-v2/OVM_ChainStorageContainer:CTC:batches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/regenesis/HEAD/deployments/mainnet-v2/OVM_ChainStorageContainer:CTC:batches.json -------------------------------------------------------------------------------- /deployments/mainnet-v2/OVM_ChainStorageContainer:CTC:queue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/regenesis/HEAD/deployments/mainnet-v2/OVM_ChainStorageContainer:CTC:queue.json -------------------------------------------------------------------------------- /deployments/mainnet-v2/OVM_ChainStorageContainer:SCC:batches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/regenesis/HEAD/deployments/mainnet-v2/OVM_ChainStorageContainer:SCC:batches.json -------------------------------------------------------------------------------- /deployments/mainnet-v2/OVM_ExecutionManager.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/regenesis/HEAD/deployments/mainnet-v2/OVM_ExecutionManager.json -------------------------------------------------------------------------------- /deployments/mainnet-v2/OVM_FraudVerifier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/regenesis/HEAD/deployments/mainnet-v2/OVM_FraudVerifier.json -------------------------------------------------------------------------------- /deployments/mainnet-v2/OVM_L1CrossDomainMessenger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/regenesis/HEAD/deployments/mainnet-v2/OVM_L1CrossDomainMessenger.json -------------------------------------------------------------------------------- /deployments/mainnet-v2/OVM_L1ETHGateway.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/regenesis/HEAD/deployments/mainnet-v2/OVM_L1ETHGateway.json -------------------------------------------------------------------------------- /deployments/mainnet-v2/OVM_L1MultiMessageRelayer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/regenesis/HEAD/deployments/mainnet-v2/OVM_L1MultiMessageRelayer.json -------------------------------------------------------------------------------- /deployments/mainnet-v2/OVM_SafetyChecker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/regenesis/HEAD/deployments/mainnet-v2/OVM_SafetyChecker.json -------------------------------------------------------------------------------- /deployments/mainnet-v2/OVM_StateCommitmentChain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/regenesis/HEAD/deployments/mainnet-v2/OVM_StateCommitmentChain.json -------------------------------------------------------------------------------- /deployments/mainnet-v2/OVM_StateManagerFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/regenesis/HEAD/deployments/mainnet-v2/OVM_StateManagerFactory.json -------------------------------------------------------------------------------- /deployments/mainnet-v2/OVM_StateTransitionerFactory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/regenesis/HEAD/deployments/mainnet-v2/OVM_StateTransitionerFactory.json -------------------------------------------------------------------------------- /deployments/mainnet-v2/Proxy__OVM_L1CrossDomainMessenger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/regenesis/HEAD/deployments/mainnet-v2/Proxy__OVM_L1CrossDomainMessenger.json -------------------------------------------------------------------------------- /deployments/mainnet-v2/Proxy__OVM_L1ETHGateway.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/regenesis/HEAD/deployments/mainnet-v2/Proxy__OVM_L1ETHGateway.json -------------------------------------------------------------------------------- /deployments/mainnet-v2/mockOVM_BondManager.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/regenesis/HEAD/deployments/mainnet-v2/mockOVM_BondManager.json -------------------------------------------------------------------------------- /deployments/mainnet-v2/solcInputs/43ee6bb8ef92595aa6d0e22a6c464dff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/regenesis/HEAD/deployments/mainnet-v2/solcInputs/43ee6bb8ef92595aa6d0e22a6c464dff.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/regenesis/HEAD/package.json -------------------------------------------------------------------------------- /scripts/addresses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/regenesis/HEAD/scripts/addresses.js -------------------------------------------------------------------------------- /scripts/verify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/regenesis/HEAD/scripts/verify.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ethereum-optimism/regenesis/HEAD/yarn.lock --------------------------------------------------------------------------------