From 76a53321df1da9747559cecd819b9a9529c2f0bb Mon Sep 17 00:00:00 2001 From: Daniel Liu <139250065@qq.com> Date: Fri, 30 Jan 2026 21:06:15 +0800 Subject: [PATCH] common: fix block numbers for EIP-1559 and cancun (#2020) --- common/constants.mainnet.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/constants.mainnet.go b/common/constants.mainnet.go index d08f28fe6c..8af16dc7ea 100644 --- a/common/constants.mainnet.go +++ b/common/constants.mainnet.go @@ -27,8 +27,8 @@ var MainnetConstant = constant{ TIPV2SwitchBlock: big.NewInt(80370000), // Target 2nd Oct 2024 tipXDCXMinerDisable: big.NewInt(80370000), // Target 2nd Oct 2024 tipXDCXReceiverDisable: big.NewInt(80370900), // Target 2nd Oct 2024, safer to release after disable miner - eip1559Block: big.NewInt(math.MaxInt64), - cancunBlock: big.NewInt(math.MaxInt64), + eip1559Block: big.NewInt(98800200), // Target 28th Jan 2026 + cancunBlock: big.NewInt(98802000), // Target 28th Jan 2026 pragueBlock: big.NewInt(math.MaxInt64), dynamicGasLimitBlock: big.NewInt(math.MaxInt64), tipUpgradeReward: big.NewInt(math.MaxInt64),