From 88f1ee3f782c2b612ea31ea39ffb8eb5066af67b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A9ter=20Garamv=C3=B6lgyi?= Date: Fri, 5 Dec 2025 13:30:54 +0100 Subject: [PATCH] feat: schedule Galileo and GalileoV2 on Scroll mainnet --- 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 9052698311dc..a3de1b540f2b 100644 --- a/params/config.go +++ b/params/config.go @@ -388,8 +388,8 @@ var ( EuclidTime: newUint64(1744815600), EuclidV2Time: newUint64(1745305200), FeynmanTime: newUint64(1755576000), - GalileoTime: nil, - GalileoV2Time: nil, + GalileoTime: newUint64(1765868400), + GalileoV2Time: newUint64(1766041200), Clique: &CliqueConfig{ Period: 3, Epoch: 30000, diff --git a/params/version.go b/params/version.go index 7077f93d8b23..b647f521ac57 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 = 9 // Minor version component of the current release - VersionPatch = 19 // Patch version component of the current release + VersionMinor = 10 // 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 )