* added Bhilai and Prague block for mainnet (#1581)

* params: version bump to v2.1.1
This commit is contained in:
Pratik Patil 2025-06-17 15:12:38 +05:30 committed by GitHub
commit c522a93628
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 7 additions and 1 deletions

View file

@ -15,11 +15,13 @@
"londonBlock": 23850000, "londonBlock": 23850000,
"shanghaiBlock": 50523000, "shanghaiBlock": 50523000,
"cancunBlock": 54876000, "cancunBlock": 54876000,
"pragueBlock": 73440256,
"bor": { "bor": {
"jaipurBlock": 23850000, "jaipurBlock": 23850000,
"delhiBlock": 38189056, "delhiBlock": 38189056,
"indoreBlock": 44934656, "indoreBlock": 44934656,
"ahmedabadBlock": 62278656, "ahmedabadBlock": 62278656,
"bhilaiBlock": 73440256,
"stateSyncConfirmationDelay": { "stateSyncConfirmationDelay": {
"44934656": 128 "44934656": 128
}, },

View file

@ -29,11 +29,13 @@ var mainnetBor = &Chain{
LondonBlock: big.NewInt(23850000), LondonBlock: big.NewInt(23850000),
ShanghaiBlock: big.NewInt(50523000), ShanghaiBlock: big.NewInt(50523000),
CancunBlock: big.NewInt(54876000), CancunBlock: big.NewInt(54876000),
PragueBlock: big.NewInt(73440256),
Bor: &params.BorConfig{ Bor: &params.BorConfig{
JaipurBlock: big.NewInt(23850000), JaipurBlock: big.NewInt(23850000),
DelhiBlock: big.NewInt(38189056), DelhiBlock: big.NewInt(38189056),
IndoreBlock: big.NewInt(44934656), IndoreBlock: big.NewInt(44934656),
AhmedabadBlock: big.NewInt(62278656), AhmedabadBlock: big.NewInt(62278656),
BhilaiBlock: big.NewInt(73440256),
StateSyncConfirmationDelay: map[string]uint64{ StateSyncConfirmationDelay: map[string]uint64{
"44934656": 128, "44934656": 128,
}, },

View file

@ -390,11 +390,13 @@ var (
LondonBlock: big.NewInt(23850000), LondonBlock: big.NewInt(23850000),
ShanghaiBlock: big.NewInt(50523000), ShanghaiBlock: big.NewInt(50523000),
CancunBlock: big.NewInt(54876000), CancunBlock: big.NewInt(54876000),
PragueBlock: big.NewInt(73440256),
Bor: &BorConfig{ Bor: &BorConfig{
JaipurBlock: big.NewInt(23850000), JaipurBlock: big.NewInt(23850000),
DelhiBlock: big.NewInt(38189056), DelhiBlock: big.NewInt(38189056),
IndoreBlock: big.NewInt(44934656), IndoreBlock: big.NewInt(44934656),
AhmedabadBlock: big.NewInt(62278656), AhmedabadBlock: big.NewInt(62278656),
BhilaiBlock: big.NewInt(73440256),
StateSyncConfirmationDelay: map[string]uint64{ StateSyncConfirmationDelay: map[string]uint64{
"44934656": 128, "44934656": 128,
}, },

View file

@ -25,7 +25,7 @@ import (
const ( const (
VersionMajor = 2 // Major version component of the current release VersionMajor = 2 // Major version component of the current release
VersionMinor = 1 // Minor 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 VersionMeta = "" // Version metadata to append to the version string
) )