From 1ad23ecd641ac966c8cbd835e04a4ec259e70460 Mon Sep 17 00:00:00 2001 From: Pratik Patil Date: Tue, 17 Jun 2025 15:06:54 +0530 Subject: [PATCH 1/2] added Bhilai and Prague block for mainnet (#1581) --- builder/files/genesis-mainnet-v1.json | 2 ++ internal/cli/server/chains/mainnet.go | 2 ++ params/config.go | 2 ++ 3 files changed, 6 insertions(+) diff --git a/builder/files/genesis-mainnet-v1.json b/builder/files/genesis-mainnet-v1.json index 8e6e4d055e..967b4fab67 100644 --- a/builder/files/genesis-mainnet-v1.json +++ b/builder/files/genesis-mainnet-v1.json @@ -15,11 +15,13 @@ "londonBlock": 23850000, "shanghaiBlock": 50523000, "cancunBlock": 54876000, + "pragueBlock": 73440256, "bor": { "jaipurBlock": 23850000, "delhiBlock": 38189056, "indoreBlock": 44934656, "ahmedabadBlock": 62278656, + "bhilaiBlock": 73440256, "stateSyncConfirmationDelay": { "44934656": 128 }, diff --git a/internal/cli/server/chains/mainnet.go b/internal/cli/server/chains/mainnet.go index 8c6a1093c9..9549c85638 100644 --- a/internal/cli/server/chains/mainnet.go +++ b/internal/cli/server/chains/mainnet.go @@ -29,11 +29,13 @@ var mainnetBor = &Chain{ LondonBlock: big.NewInt(23850000), ShanghaiBlock: big.NewInt(50523000), CancunBlock: big.NewInt(54876000), + PragueBlock: big.NewInt(73440256), Bor: ¶ms.BorConfig{ JaipurBlock: big.NewInt(23850000), DelhiBlock: big.NewInt(38189056), IndoreBlock: big.NewInt(44934656), AhmedabadBlock: big.NewInt(62278656), + BhilaiBlock: big.NewInt(73440256), StateSyncConfirmationDelay: map[string]uint64{ "44934656": 128, }, diff --git a/params/config.go b/params/config.go index 851218dffd..3acfb476ca 100644 --- a/params/config.go +++ b/params/config.go @@ -390,11 +390,13 @@ var ( LondonBlock: big.NewInt(23850000), ShanghaiBlock: big.NewInt(50523000), CancunBlock: big.NewInt(54876000), + PragueBlock: big.NewInt(73440256), Bor: &BorConfig{ JaipurBlock: big.NewInt(23850000), DelhiBlock: big.NewInt(38189056), IndoreBlock: big.NewInt(44934656), AhmedabadBlock: big.NewInt(62278656), + BhilaiBlock: big.NewInt(73440256), StateSyncConfirmationDelay: map[string]uint64{ "44934656": 128, }, From cec664be7ad646a4485031d4e0c5ef6ddf34201c Mon Sep 17 00:00:00 2001 From: Pratik Patil Date: Tue, 17 Jun 2025 15:07:35 +0530 Subject: [PATCH 2/2] params: version bump to v2.1.1 --- params/version.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/params/version.go b/params/version.go index 626d88b465..5966bb2f95 100644 --- a/params/version.go +++ b/params/version.go @@ -25,7 +25,7 @@ import ( const ( VersionMajor = 2 // Major version component of the current release VersionMinor = 1 // Minor version component of the current release - VersionPatch = 0 // Patch version component of the current release + VersionPatch = 1 // Patch version component of the current release VersionMeta = "" // Version metadata to append to the version string )