From eb52174417e8b94e1e44b0d2a0d294fef56362a4 Mon Sep 17 00:00:00 2001 From: Alok Date: Mon, 29 Sep 2025 14:46:38 +0530 Subject: [PATCH] fix: released contracts --- contracts-abi/config/mainnet.go | 16 ++++++++-------- oracle/cmd/main.go | 2 +- p2p/pkg/node/node.go | 4 ++-- tools/bidder-cli/main.go | 2 +- 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/contracts-abi/config/mainnet.go b/contracts-abi/config/mainnet.go index c4829e2b9..de4f2a37b 100644 --- a/contracts-abi/config/mainnet.go +++ b/contracts-abi/config/mainnet.go @@ -2,21 +2,21 @@ package config import "math/big" -var MainnetChainID = big.NewInt(8855) +var MainnetChainID = big.NewInt(57173) var MevCommitChainContracts = Contracts{ - BidderRegistry: "0xC973D09e51A20C9Ab0214c439e4B34Dbac52AD67", - ProviderRegistry: "0xb772Add4718E5BD6Fe57Fb486A6f7f008E52167E", - PreconfManager: "0x3761bF3932cD22d684A7485002E1424c3aCCD69c", - Oracle: "0xa1aaCA1e4583dB498D47f3D5901f2B2EB49Bd8f6", - BlockTracker: "0x0DA2a367C51f2a34465ACd6AE5d8A48385e9cB03", - SettlementGateway: "0x138c60599946280e5a2DCc1f553B8f0cC0554E03", + BidderRegistry: "0x145a9f4cbae2ec281f417195ea3464dbd04289a2", + ProviderRegistry: "0xeb6d22309062a86fa194520344530874221ef48c", + PreconfManager: "0x2ee9e88f57a7db801e114a4df7a99eb7257871e2", + Oracle: "0x37a037d2423221f403cfa146f5fb962e19582d90", + BlockTracker: "0x5d64b933739558101f9359e2750acc228f0cb64f", + SettlementGateway: "0x21f5f1142200a515248a2eef5b0654581c7f2b46", } var EthereumContracts = L1Contracts{ ValidatorOptInRouter: "0x821798d7b9d57dF7Ed7616ef9111A616aB19ed64", VanillaRegistry: "0x47afdcB2B089C16CEe354811EA1Bbe0DB7c335E9", MevCommitAVS: "0xBc77233855e3274E1903771675Eb71E602D9DC2e", - L1Gateway: "0xDBf24cafF1470a6D08bF2FF2c6875bafC60Cf881", + L1Gateway: "0x5d64b933739558101f9359e2750acc228f0cb64f", MevCommitMiddleware: "0x21fD239311B050bbeE7F32850d99ADc224761382", } diff --git a/oracle/cmd/main.go b/oracle/cmd/main.go index b44029458..6acfed2ae 100644 --- a/oracle/cmd/main.go +++ b/oracle/cmd/main.go @@ -103,7 +103,7 @@ var ( Name: "l1-rpc-urls", Usage: "URLs for L1 RPC", EnvVars: []string{"MEV_ORACLE_L1_RPC_URLS"}, - Value: cli.NewStringSlice("https://ethereum-holesky-rpc.publicnode.com"), + Value: cli.NewStringSlice("https://ethereum-rpc.publicnode.com"), }) optionSettlementRPCUrlHTTP = altsrc.NewStringFlag(&cli.StringFlag{ diff --git a/p2p/pkg/node/node.go b/p2p/pkg/node/node.go index 8f9d287ae..3bf4759e7 100644 --- a/p2p/pkg/node/node.go +++ b/p2p/pkg/node/node.go @@ -90,8 +90,8 @@ var defaultL1URLs = map[string]L1URLs{ BeaconAPIURL: "https://ethereum-beacon-api.publicnode.com", }, contracts.TestnetChainID.String(): L1URLs{ - L1RPCURL: "https://ethereum-holesky-rpc.publicnode.com", - BeaconAPIURL: "https://ethereum-holesky-beacon-api.publicnode.com", + L1RPCURL: "https://ethereum-hoodi-rpc.publicnode.com", + BeaconAPIURL: "https://ethereum-hoodi-beacon-api.publicnode.com", }, } diff --git a/tools/bidder-cli/main.go b/tools/bidder-cli/main.go index 9eb059a48..0a7ff4660 100644 --- a/tools/bidder-cli/main.go +++ b/tools/bidder-cli/main.go @@ -40,7 +40,7 @@ var ( Name: "l1-rpc-url", Usage: "URL of the L1 RPC", EnvVars: []string{"BIDDER_CLI_L1_RPC_URL"}, - Value: "https://ethereum-holesky-rpc.publicnode.com", + Value: "https://ethereum-rpc.publicnode.com", } optionVerbose = &cli.BoolFlag{ Name: "verbose",