diff --git a/kurtosis-devnet/pkg/kurtosis/sources/deployer/deployer.go b/kurtosis-devnet/pkg/kurtosis/sources/deployer/deployer.go index 791d4a2a1632e..9f2dc8eba66da 100644 --- a/kurtosis-devnet/pkg/kurtosis/sources/deployer/deployer.go +++ b/kurtosis-devnet/pkg/kurtosis/sources/deployer/deployer.go @@ -53,7 +53,7 @@ type DeployerState struct { // StateFile represents the structure of the state.json file type StateFile struct { OpChainDeployments []map[string]interface{} `json:"opChainDeployments"` - SuperChainDeployment map[string]interface{} `json:"superchainDeployment"` + SuperChainContracts map[string]interface{} `json:"superchainContracts"` ImplementationsDeployment map[string]interface{} `json:"implementationsDeployment"` } @@ -283,7 +283,7 @@ func parseStateFile(r io.Reader) (*DeployerState, error) { result.Addresses = mapDeployment(state.ImplementationsDeployment) // merge the superchain and implementations addresses - for key, value := range mapDeployment(state.SuperChainDeployment) { + for key, value := range mapDeployment(state.SuperChainContracts) { result.Addresses[key] = value } diff --git a/op-devstack/sysext/addrbook.go b/op-devstack/sysext/addrbook.go index f15d74bbb0507..a633eddd2b706 100644 --- a/op-devstack/sysext/addrbook.go +++ b/op-devstack/sysext/addrbook.go @@ -9,11 +9,11 @@ import ( ) const ( - ProtocolVersionsAddressName = "protocolVersionsProxy" - SuperchainConfigAddressName = "superchainConfigProxy" + ProtocolVersionsAddressName = "ProtocolVersionsProxy" + SuperchainConfigAddressName = "SuperchainConfigProxy" - SystemConfigAddressName = "systemConfigProxy" - DisputeGameFactoryName = "disputeGameFactoryProxy" + SystemConfigAddressName = "SystemConfigProxy" + DisputeGameFactoryName = "DisputeGameFactoryProxy" ) type l1AddressBook struct {