Skip to content

Commit

Permalink
added IndoreBlock for Mumbai chain (ethereum#892)
Browse files Browse the repository at this point in the history
  • Loading branch information
pratikspatil024 committed Jun 7, 2023
1 parent f96c668 commit 4d23e6d
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 4 deletions.
5 changes: 5 additions & 0 deletions builder/files/genesis-testnet-v4.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@
"bor": {
"jaipurBlock": 22770000,
"delhiBlock": 29638656,
"parallelUniverseBlock": 0,
"indoreBlock": 36877056,
"stateSyncConfirmationDelay": {
"36877056": 128
},
"period": {
"0": 2,
"25275000": 5,
Expand Down
9 changes: 7 additions & 2 deletions internal/cli/server/chains/mumbai.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,13 @@ var mumbaiTestnet = &Chain{
BerlinBlock: big.NewInt(13996000),
LondonBlock: big.NewInt(22640000),
Bor: &params.BorConfig{
JaipurBlock: big.NewInt(22770000),
DelhiBlock: big.NewInt(29638656),
JaipurBlock: big.NewInt(22770000),
DelhiBlock: big.NewInt(29638656),
ParallelUniverseBlock: big.NewInt(0),
IndoreBlock: big.NewInt(36877056),
StateSyncConfirmationDelay: map[string]uint64{
"36877056": 128,
},
Period: map[string]uint64{
"0": 2,
"25275000": 5,
Expand Down
7 changes: 6 additions & 1 deletion internal/cli/server/chains/test_files/chain_legacy_test.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,12 @@
"22640000": "0x70bcA57F4579f58670aB2d18Ef16e02C17553C38"
},
"jaipurBlock": 22770000,
"delhiBlock": 29638656
"delhiBlock": 29638656,
"parallelUniverseBlock": 0,
"indoreBlock": 36877056,
"stateSyncConfirmationDelay": {
"36877056": 128
}
}
},
"nonce": "0x0",
Expand Down
7 changes: 6 additions & 1 deletion internal/cli/server/chains/test_files/chain_test.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,12 @@
"22640000":"0x70bcA57F4579f58670aB2d18Ef16e02C17553C38"
},
"jaipurBlock":22770000,
"delhiBlock": 29638656
"delhiBlock": 29638656,
"parallelUniverseBlock": 0,
"indoreBlock": 36877056,
"stateSyncConfirmationDelay": {
"36877056": 128
}
}
},
"nonce":"0x0",
Expand Down
4 changes: 4 additions & 0 deletions params/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -353,6 +353,10 @@ var (
JaipurBlock: big.NewInt(22770000),
DelhiBlock: big.NewInt(29638656),
ParallelUniverseBlock: big.NewInt(0),
IndoreBlock: big.NewInt(36877056),
StateSyncConfirmationDelay: map[string]uint64{
"36877056": 128,
},
Period: map[string]uint64{
"0": 2,
"25275000": 5,
Expand Down

0 comments on commit 4d23e6d

Please sign in to comment.