Skip to content

Commit bcdeb08

Browse files
authored
chore(mainnet): delay pectra11 hardfork (#2882)
1 parent 3772798 commit bcdeb08

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

config/spec/mainnet.go

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -74,18 +74,18 @@ const (
7474
mainnetDepositContractAddress = defaultDepositContractAddress
7575

7676
// mainnetGenesisTime is the timestamp of the Berachain mainnet genesis block.
77-
mainnetGenesisTime = 1737381600
77+
mainnetGenesisTime = 1_737_381_600
7878

7979
// mainnetDeneb1ForkTime is the timestamp at which the Deneb1 fork occurs.
8080
// This is calculated based on the timestamp of the 2855th mainnet epoch, block 548160, which
8181
// was used to initiate the fork when beacon-kit forked by epoch instead of by timestamp.
82-
mainnetDeneb1ForkTime = 1738415507
82+
mainnetDeneb1ForkTime = 1_738_415_507
8383

8484
// mainnetElectraForkTime is the timestamp at which the Electra fork occurs.
85-
mainnetElectraForkTime = 1749056400
85+
mainnetElectraForkTime = 1_749_056_400
8686

8787
// mainnetElectra1ForkTime is the timestamp at which the Electra1 fork occurs.
88-
mainnetElectra1ForkTime = 1756310400
88+
mainnetElectra1ForkTime = 1_756_915_200
8989

9090
// mainnetEVMInflationAddressDeneb1 is the address on the EVM which will receive the
9191
// inflation amount of native EVM balance through a withdrawal every block in the Deneb1 fork.
@@ -100,8 +100,8 @@ const (
100100
mainnetMinValidatorWithdrawabilityDelay = defaultMinValidatorWithdrawabilityDelay
101101

102102
// These are the heights at which SBT is activated on mainnet.
103-
mainnetSBTConsensusUpdateHeight = 9_702_579
104-
mainnetSBTConsensusEnableHeight = 9_702_580
103+
mainnetSBTConsensusUpdateHeight = 9_983_085
104+
mainnetSBTConsensusEnableHeight = 9_983_086
105105
)
106106

107107
// MainnetChainSpecData is the chain.SpecData for the Berachain mainnet.

config/spec/testnet.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,22 +32,22 @@ func TestnetChainSpecData() *chain.SpecData {
3232
specData.DepositEth1ChainID = chain.TestnetEth1ChainID
3333

3434
// Timestamp of the genesis block of Bepolia testnet.
35-
specData.GenesisTime = 1739976735
35+
specData.GenesisTime = 1_739_976_735
3636

3737
// Deneb1 fork timing on Bepolia. This is calculated based on the timestamp of the first bepolia
3838
// epoch, block 192, which was used to initiate the fork when beacon-kit forked by epoch instead
3939
// of by timestamp.
40-
specData.Deneb1ForkTime = 1740090694
40+
specData.Deneb1ForkTime = 1_740_090_694
4141

4242
// Timestamp of the Electra fork on Bepolia.
43-
specData.ElectraForkTime = 1746633600
43+
specData.ElectraForkTime = 1_746_633_600
4444

4545
// Enable stable block time before the Electra1 fork.
4646
specData.Config.ConsensusUpdateHeight = 7_768_334
4747
specData.Config.ConsensusEnableHeight = 7_768_335
4848

4949
// Timestamp of the Electra1 fork on Bepolia.
50-
specData.Electra1ForkTime = 1754496000
50+
specData.Electra1ForkTime = 1_754_496_000
5151

5252
return specData
5353
}

testing/networks/80094/eth-genesis.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
},
3737
"berachain": {
3838
"prague1": {
39-
"time": 1756310400,
39+
"time": 1756915200,
4040
"baseFeeChangeDenominator": 48,
4141
"minimumBaseFeeWei": 1000000000,
4242
"polDistributorAddress": "0xD2f19a79b026Fb636A7c300bF5947df113940761"

testing/networks/80094/spec.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ target-seconds-per-eth1-block = 2
3535
genesis-time = 1_737_381_600
3636
deneb-one-fork-time = 1_738_415_507
3737
electra-fork-time = 1_749_056_400
38-
electra-one-fork-time = 1_756_310_400
38+
electra-one-fork-time = 1_756_915_200
3939

4040
# State list lengths
4141
epochs-per-historical-vector = 8
@@ -71,5 +71,5 @@ min-validator-withdrawability-delay = 256
7171
max-block-delay = 300_000_000_000
7272
target-block-time = 2_000_000_000
7373
const-block-delay = 500_000_000
74-
consensus-update-height = 9_702_579
75-
consensus-enable-height = 9_702_580
74+
consensus-update-height = 9_983_085
75+
consensus-enable-height = 9_983_086

0 commit comments

Comments
 (0)