feat: schedule Feynman upgrade on Scroll mainnet (#1230)

This commit is contained in:
Péter Garamvölgyi 2025-08-06 08:01:55 +02:00 committed by GitHub
parent 35bc5a9b0f
commit 25369b23c3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -385,7 +385,7 @@ var (
DarwinV2Time: newUint64(1725264000), DarwinV2Time: newUint64(1725264000),
EuclidTime: newUint64(1744815600), EuclidTime: newUint64(1744815600),
EuclidV2Time: newUint64(1745305200), EuclidV2Time: newUint64(1745305200),
FeynmanTime: nil, FeynmanTime: newUint64(1755576000),
Clique: &CliqueConfig{ Clique: &CliqueConfig{
Period: 3, Period: 3,
Epoch: 30000, Epoch: 30000,

View file

@ -24,7 +24,7 @@ import (
const ( const (
VersionMajor = 5 // Major version component of the current release VersionMajor = 5 // Major version component of the current release
VersionMinor = 8 // Minor 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 VersionMeta = "mainnet" // Version metadata to append to the version string
) )