Skip to content

Commit

Permalink
feature(op-geth): add opBNB qanet hard fork config (#101)
Browse files Browse the repository at this point in the history
  • Loading branch information
redhdx authored Apr 29, 2024
1 parent c0a225e commit e0289db
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions params/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e0289db

Please sign in to comment.