Skip to content

Commit

Permalink
added indore block and parallel universe for mainnet (#913)
Browse files Browse the repository at this point in the history
  • Loading branch information
pratikspatil024 authored Jun 27, 2023
1 parent c3c3bb6 commit a055726
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 2 deletions.
5 changes: 5 additions & 0 deletions builder/files/genesis-mainnet-v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@
"bor": {
"jaipurBlock": 23850000,
"delhiBlock": 38189056,
"parallelUniverseBlock": 0,
"indoreBlock": 44915456,
"stateSyncConfirmationDelay": {
"44915456": 128
},
"period": {
"0": 2
},
Expand Down
9 changes: 7 additions & 2 deletions internal/cli/server/chains/mainnet.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,13 @@ var mainnetBor = &Chain{
BerlinBlock: big.NewInt(14750000),
LondonBlock: big.NewInt(23850000),
Bor: &params.BorConfig{
JaipurBlock: big.NewInt(23850000),
DelhiBlock: big.NewInt(38189056),
JaipurBlock: big.NewInt(23850000),
DelhiBlock: big.NewInt(38189056),
ParallelUniverseBlock: big.NewInt(0),
IndoreBlock: big.NewInt(44915456),
StateSyncConfirmationDelay: map[string]uint64{
"44915456": 128,
},
Period: map[string]uint64{
"0": 2,
},
Expand Down
5 changes: 5 additions & 0 deletions params/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -412,6 +412,11 @@ var (
JaipurBlock: big.NewInt(23850000),
DelhiBlock: big.NewInt(38189056),
ParallelUniverseBlock: big.NewInt(0),
IndoreBlock: big.NewInt(44915456),
StateSyncConfirmationDelay: map[string]uint64{
"44915456": 128,
},

Period: map[string]uint64{
"0": 2,
},
Expand Down

0 comments on commit a055726

Please sign in to comment.