Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

config: Testnet 4844 fork time #107

Merged
merged 2 commits into from
May 7, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions params/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -217,11 +217,17 @@ var (
TerminalTotalDifficulty: big.NewInt(0),
TerminalTotalDifficultyPassed: true,
Optimism: &OptimismConfig{
EIP1559Elasticity: 2,
EIP1559Denominator: 8,
EIP1559Elasticity: 2,
EIP1559Denominator: 8,
EIP1559DenominatorCanyon: 8,
},
PreContractForkBlock: big.NewInt(5805494),
Fermat: big.NewInt(12113000), // Nov-03-2023 06 AM +UTC
Fermat: big.NewInt(12113000), // Nov-03-2023 06 AM +UTC
ShanghaiTime: newUint64(1715753400), // May-15-2024 06:10 AM +UTC
CanyonTime: newUint64(1715753400), // May-15-2024 06:10 AM +UTC
// Delta: the Delta upgrade does not affect the execution-layer, and is thus not configurable in the chain config.
CancunTime: newUint64(1715754600), // May-15-2024 06:30 AM +UTC
EcotoneTime: newUint64(1715754600), // May-15-2024 06:30 AM +UTC
}
// OPBNBQANetConfig is the chain parameters to run a node on the opBNB qa network. It is just for internal test.
OPBNBQANetConfig = &ChainConfig{
Expand Down
Loading