From a325227c4580619809085bf2af595ee877d4767e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A9ter=20Garamv=C3=B6lgyi?= Date: Tue, 18 Nov 2025 10:27:53 +0100 Subject: [PATCH] feat: schedule Galileo on Scroll Sepolia (#1255) * feat: schedule Galileo on Scroll Sepolia * bump version * bump version * update timestamp --- params/config.go | 1 + params/version.go | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/params/config.go b/params/config.go index f5314b7d0d..a131a6ff09 100644 --- a/params/config.go +++ b/params/config.go @@ -333,6 +333,7 @@ var ( EuclidTime: newUint64(1741680000), EuclidV2Time: newUint64(1741852800), FeynmanTime: newUint64(1753167600), + GalileoTime: newUint64(1764054000), Clique: &CliqueConfig{ Period: 3, Epoch: 30000, diff --git a/params/version.go b/params/version.go index b97b906198..b5cbf04cc3 100644 --- a/params/version.go +++ b/params/version.go @@ -24,7 +24,7 @@ import ( const ( VersionMajor = 5 // Major version component of the current release VersionMinor = 9 // Minor version component of the current release - VersionPatch = 12 // Patch version component of the current release + VersionPatch = 13 // Patch version component of the current release VersionMeta = "mainnet" // Version metadata to append to the version string )