From 77f358fe776441839c4f94635f6d299b8d4202be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A9ter=20Garamv=C3=B6lgyi?= Date: Tue, 11 Jun 2024 13:17:16 +0200 Subject: [PATCH] feat: schedule Curie hard fork on Scroll and Scroll Sepolia (#808) * feat: schedule Curie hard fork on Scroll and Scroll Sepolia * update fork blocks --- params/config.go | 4 ++-- params/version.go | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/params/config.go b/params/config.go index 580a97980d..a240e0ca01 100644 --- a/params/config.go +++ b/params/config.go @@ -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, diff --git a/params/version.go b/params/version.go index d5cce001dc..67b04ff4ae 100644 --- a/params/version.go +++ b/params/version.go @@ -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 )