Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions kurtosis-devnet/pkg/kurtosis/sources/deployer/deployer.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"`
}

Expand Down Expand Up @@ -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
}

Expand Down
8 changes: 4 additions & 4 deletions op-devstack/sysext/addrbook.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down