Add Archimedes hard fork block number for Scroll Alpha (#331)

* add Archimedes hard fork block number for Scroll Alpha

* bump version
This commit is contained in:
Péter Garamvölgyi 2023-05-18 12:38:53 +02:00 committed by GitHub
parent c5da652c29
commit b8d22a104d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View file

@ -275,7 +275,7 @@ var (
BerlinBlock: big.NewInt(0),
LondonBlock: big.NewInt(0),
ArrowGlacierBlock: nil,
ArchimedesBlock: nil,
ArchimedesBlock: big.NewInt(2444711),
ShanghaiBlock: nil,
Clique: &CliqueConfig{
Period: 3,

View file

@ -23,8 +23,8 @@ import (
const (
VersionMajor = 3 // Major version component of the current release
VersionMinor = 1 // Minor version component of the current release
VersionPatch = 12 // Patch version component of the current release
VersionMinor = 2 // Minor version component of the current release
VersionPatch = 0 // Patch version component of the current release
VersionMeta = "alpha" // Version metadata to append to the version string
)