Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion cl/clparams/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -1108,7 +1108,7 @@ func gnosisConfig() BeaconChainConfig {
cfg.DenebForkVersion = 0x04000064
cfg.ElectraForkEpoch = 1337856
cfg.ElectraForkVersion = 0x05000064
cfg.FuluForkEpoch = math.MaxUint64
cfg.FuluForkEpoch = 1714688
cfg.FuluForkVersion = 0x06000064
cfg.TerminalTotalDifficulty = "8626000000000000000000058750000000000000000000"
cfg.DepositContractAddress = "0x0B98057eA310F4d31F2a452B414647007d1645d9"
Expand Down
6 changes: 6 additions & 0 deletions execution/chain/spec/chainspecs/gnosis.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
"shanghaiTime": 1690889660,
"cancunTime": 1710181820,
"pragueTime": 1746021820,
"osakaTime": 1776168380,
"minBlobGasPrice": 1000000000,
"blobSchedule": {
"cancun": {
Expand All @@ -28,6 +29,11 @@
"target": 1,
"max": 2,
"baseFeeUpdateFraction": 1112826
},
"osaka": {
"target": 1,
"max": 2,
"baseFeeUpdateFraction": 1112826
}
},
"burntContract": {
Expand Down
3 changes: 2 additions & 1 deletion p2p/forkid/forkid_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,8 @@ func TestCreation(t *testing.T) {
{32880680, 1710181820, ID{Hash: ChecksumToBytes(0x1384dfc1), Activation: 1710181820, Next: 1746021820}}, // First Cancun block
{39827052, 1746021815, ID{Hash: ChecksumToBytes(0x1384dfc1), Activation: 1710181820, Next: 1746021820}}, // Last Cancun block
{39827053, 1746021825, ID{Hash: ChecksumToBytes(0x2f095d4a), Activation: 1746021820, Next: 1766419900}}, // First Prague block
{43785599, 1766419900, ID{Hash: ChecksumToBytes(0xd00284ad), Activation: 1766419900, Next: 0}}, // Future Balancer block (approx)
{43785599, 1766419900, ID{Hash: ChecksumToBytes(0xd00284ad), Activation: 1766419900, Next: 1776168380}}, // First Balancer block (approx)
{45735295, 1776168380, ID{Hash: ChecksumToBytes(0xcfca387c), Activation: 1776168380, Next: 0}}, // First Osaka block (approx)
},
},
{
Expand Down
Loading