From e0289dbe421f192c9054c3aac03a9e1983c1d037 Mon Sep 17 00:00:00 2001 From: redhdx <136775144+redhdx@users.noreply.github.com> Date: Mon, 29 Apr 2024 14:56:46 +0800 Subject: [PATCH] feature(op-geth): add opBNB qanet hard fork config (#101) --- params/config.go | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/params/config.go b/params/config.go index d1c2bed9c1..b470593d9f 100644 --- a/params/config.go +++ b/params/config.go @@ -245,10 +245,16 @@ var ( TerminalTotalDifficulty: big.NewInt(0), TerminalTotalDifficultyPassed: true, Optimism: &OptimismConfig{ - EIP1559Elasticity: 2, - EIP1559Denominator: 8, + EIP1559Elasticity: 2, + EIP1559Denominator: 8, + EIP1559DenominatorCanyon: 8, }, - Fermat: big.NewInt(0), + Fermat: big.NewInt(0), + ShanghaiTime: newUint64(1714385400), // Apr-29-2024 10:10 AM +UTC + CanyonTime: newUint64(1714385400), // Apr-29-2024 10:10 AM +UTC + // Delta: the Delta upgrade does not affect the execution-layer, and is thus not configurable in the chain config. + CancunTime: newUint64(1714386600), // Apr-29-2024 10:30 AM +UTC + EcotoneTime: newUint64(1714386600), // Apr-29-2024 10:30 AM +UTC } // AllEthashProtocolChanges contains every protocol change (EIPs) introduced