Skip to content

Commit e01198b

Browse files
authored
fix: released contracts (#816)
1 parent c530ccd commit e01198b

4 files changed

Lines changed: 12 additions & 12 deletions

File tree

contracts-abi/config/mainnet.go

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,21 @@ package config
22

33
import "math/big"
44

5-
var MainnetChainID = big.NewInt(8855)
5+
var MainnetChainID = big.NewInt(57173)
66

77
var MevCommitChainContracts = Contracts{
8-
BidderRegistry: "0xC973D09e51A20C9Ab0214c439e4B34Dbac52AD67",
9-
ProviderRegistry: "0xb772Add4718E5BD6Fe57Fb486A6f7f008E52167E",
10-
PreconfManager: "0x3761bF3932cD22d684A7485002E1424c3aCCD69c",
11-
Oracle: "0xa1aaCA1e4583dB498D47f3D5901f2B2EB49Bd8f6",
12-
BlockTracker: "0x0DA2a367C51f2a34465ACd6AE5d8A48385e9cB03",
13-
SettlementGateway: "0x138c60599946280e5a2DCc1f553B8f0cC0554E03",
8+
BidderRegistry: "0x145a9f4cbae2ec281f417195ea3464dbd04289a2",
9+
ProviderRegistry: "0xeb6d22309062a86fa194520344530874221ef48c",
10+
PreconfManager: "0x2ee9e88f57a7db801e114a4df7a99eb7257871e2",
11+
Oracle: "0x37a037d2423221f403cfa146f5fb962e19582d90",
12+
BlockTracker: "0x5d64b933739558101f9359e2750acc228f0cb64f",
13+
SettlementGateway: "0x21f5f1142200a515248a2eef5b0654581c7f2b46",
1414
}
1515

1616
var EthereumContracts = L1Contracts{
1717
ValidatorOptInRouter: "0x821798d7b9d57dF7Ed7616ef9111A616aB19ed64",
1818
VanillaRegistry: "0x47afdcB2B089C16CEe354811EA1Bbe0DB7c335E9",
1919
MevCommitAVS: "0xBc77233855e3274E1903771675Eb71E602D9DC2e",
20-
L1Gateway: "0xDBf24cafF1470a6D08bF2FF2c6875bafC60Cf881",
20+
L1Gateway: "0x5d64b933739558101f9359e2750acc228f0cb64f",
2121
MevCommitMiddleware: "0x21fD239311B050bbeE7F32850d99ADc224761382",
2222
}

oracle/cmd/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ var (
103103
Name: "l1-rpc-urls",
104104
Usage: "URLs for L1 RPC",
105105
EnvVars: []string{"MEV_ORACLE_L1_RPC_URLS"},
106-
Value: cli.NewStringSlice("https://ethereum-holesky-rpc.publicnode.com"),
106+
Value: cli.NewStringSlice("https://ethereum-rpc.publicnode.com"),
107107
})
108108

109109
optionSettlementRPCUrlHTTP = altsrc.NewStringFlag(&cli.StringFlag{

p2p/pkg/node/node.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,8 @@ var defaultL1URLs = map[string]L1URLs{
9090
BeaconAPIURL: "https://ethereum-beacon-api.publicnode.com",
9191
},
9292
contracts.TestnetChainID.String(): L1URLs{
93-
L1RPCURL: "https://ethereum-holesky-rpc.publicnode.com",
94-
BeaconAPIURL: "https://ethereum-holesky-beacon-api.publicnode.com",
93+
L1RPCURL: "https://ethereum-hoodi-rpc.publicnode.com",
94+
BeaconAPIURL: "https://ethereum-hoodi-beacon-api.publicnode.com",
9595
},
9696
}
9797

tools/bidder-cli/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ var (
4040
Name: "l1-rpc-url",
4141
Usage: "URL of the L1 RPC",
4242
EnvVars: []string{"BIDDER_CLI_L1_RPC_URL"},
43-
Value: "https://ethereum-holesky-rpc.publicnode.com",
43+
Value: "https://ethereum-rpc.publicnode.com",
4444
}
4545
optionVerbose = &cli.BoolFlag{
4646
Name: "verbose",

0 commit comments

Comments
 (0)