From 18a1bdaba575dd8200f38ccd1f6580b05e51a4a9 Mon Sep 17 00:00:00 2001 From: "larry.lx" Date: Fri, 21 Jul 2023 11:36:25 +0800 Subject: [PATCH] upgrade: mainnet hardfork block height for: Plato, Hertz Hertz is equal to Berlin and London - Plato will be enabled on BSC mainnet at height: 30720096 - Hertz will be enabled on BSC mainnet at height: 31302048 Hertz is for ecosystem compatibility, to enable some customized EIPs of Berlin&London on BSC --- params/config.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/params/config.go b/params/config.go index 638d54647d..46fc40b7e8 100644 --- a/params/config.go +++ b/params/config.go @@ -193,11 +193,11 @@ var ( // TODO modify blockNumber, make sure the blockNumber is not an integer multiple of 200 (epoch number) // TODO Caution !!! it should be very careful !!! LubanBlock: big.NewInt(29020050), - PlatoBlock: nil, + PlatoBlock: big.NewInt(30720096), // TODO modify blockNumber, make sure HertzBlock=BerlinBlock=LondonBlock to enable Berlin and London EIPs - BerlinBlock: nil, - LondonBlock: nil, - HertzBlock: nil, + BerlinBlock: big.NewInt(31302048), + LondonBlock: big.NewInt(31302048), + HertzBlock: big.NewInt(31302048), Parlia: &ParliaConfig{ Period: 3,