From 25369b23c3cf5f7e4af8256f1fa605df123e554f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A9ter=20Garamv=C3=B6lgyi?= Date: Wed, 6 Aug 2025 08:01:55 +0200 Subject: [PATCH] feat: schedule Feynman upgrade on Scroll mainnet (#1230) --- params/config.go | 2 +- params/version.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/params/config.go b/params/config.go index 741d3dade0..cb26a7d10a 100644 --- a/params/config.go +++ b/params/config.go @@ -385,7 +385,7 @@ var ( DarwinV2Time: newUint64(1725264000), EuclidTime: newUint64(1744815600), EuclidV2Time: newUint64(1745305200), - FeynmanTime: nil, + FeynmanTime: newUint64(1755576000), Clique: &CliqueConfig{ Period: 3, Epoch: 30000, diff --git a/params/version.go b/params/version.go index b1e0cc28d6..c25acb0991 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 = 8 // Minor version component of the current release - VersionPatch = 76 // Patch version component of the current release + VersionPatch = 77 // Patch version component of the current release VersionMeta = "mainnet" // Version metadata to append to the version string )