feat: schedule Curie hard fork on Scroll and Scroll Sepolia (#808)

* feat: schedule Curie hard fork on Scroll and Scroll Sepolia

* update fork blocks
This commit is contained in:
Péter Garamvölgyi 2024-06-11 13:17:16 +02:00 committed by GitHub
parent e34a8cf79b
commit 77f358fe77
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 4 deletions

View file

@ -319,7 +319,7 @@ var (
ArchimedesBlock: big.NewInt(0),
ShanghaiBlock: big.NewInt(0),
BernoulliBlock: big.NewInt(3747132),
CurieBlock: nil,
CurieBlock: big.NewInt(4740239),
DescartesBlock: nil,
Clique: &CliqueConfig{
Period: 3,
@ -358,7 +358,7 @@ var (
ArchimedesBlock: big.NewInt(0),
ShanghaiBlock: big.NewInt(0),
BernoulliBlock: big.NewInt(5220340),
CurieBlock: nil,
CurieBlock: big.NewInt(6895269),
DescartesBlock: nil,
Clique: &CliqueConfig{
Period: 3,

View file

@ -23,8 +23,8 @@ import (
const (
VersionMajor = 5 // Major version component of the current release
VersionMinor = 3 // Minor version component of the current release
VersionPatch = 42 // Patch version component of the current release
VersionMinor = 4 // Minor version component of the current release
VersionPatch = 0 // Patch version component of the current release
VersionMeta = "mainnet" // Version metadata to append to the version string
)