Skip to content

Commit c522a93

Browse files
V2.1.1 (#1582)
* added Bhilai and Prague block for mainnet (#1581) * params: version bump to v2.1.1
2 parents 97c0728 + cec664b commit c522a93

File tree

4 files changed

+7
-1
lines changed

4 files changed

+7
-1
lines changed

builder/files/genesis-mainnet-v1.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,13 @@
1515
"londonBlock": 23850000,
1616
"shanghaiBlock": 50523000,
1717
"cancunBlock": 54876000,
18+
"pragueBlock": 73440256,
1819
"bor": {
1920
"jaipurBlock": 23850000,
2021
"delhiBlock": 38189056,
2122
"indoreBlock": 44934656,
2223
"ahmedabadBlock": 62278656,
24+
"bhilaiBlock": 73440256,
2325
"stateSyncConfirmationDelay": {
2426
"44934656": 128
2527
},

internal/cli/server/chains/mainnet.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,13 @@ var mainnetBor = &Chain{
2929
LondonBlock: big.NewInt(23850000),
3030
ShanghaiBlock: big.NewInt(50523000),
3131
CancunBlock: big.NewInt(54876000),
32+
PragueBlock: big.NewInt(73440256),
3233
Bor: &params.BorConfig{
3334
JaipurBlock: big.NewInt(23850000),
3435
DelhiBlock: big.NewInt(38189056),
3536
IndoreBlock: big.NewInt(44934656),
3637
AhmedabadBlock: big.NewInt(62278656),
38+
BhilaiBlock: big.NewInt(73440256),
3739
StateSyncConfirmationDelay: map[string]uint64{
3840
"44934656": 128,
3941
},

params/config.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -390,11 +390,13 @@ var (
390390
LondonBlock: big.NewInt(23850000),
391391
ShanghaiBlock: big.NewInt(50523000),
392392
CancunBlock: big.NewInt(54876000),
393+
PragueBlock: big.NewInt(73440256),
393394
Bor: &BorConfig{
394395
JaipurBlock: big.NewInt(23850000),
395396
DelhiBlock: big.NewInt(38189056),
396397
IndoreBlock: big.NewInt(44934656),
397398
AhmedabadBlock: big.NewInt(62278656),
399+
BhilaiBlock: big.NewInt(73440256),
398400
StateSyncConfirmationDelay: map[string]uint64{
399401
"44934656": 128,
400402
},

params/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import (
2525
const (
2626
VersionMajor = 2 // Major version component of the current release
2727
VersionMinor = 1 // Minor version component of the current release
28-
VersionPatch = 0 // Patch version component of the current release
28+
VersionPatch = 1 // Patch version component of the current release
2929
VersionMeta = "" // Version metadata to append to the version string
3030
)
3131

0 commit comments

Comments
 (0)