From 6d289c5846ffd5deebfca2249bfdb1870bf42c28 Mon Sep 17 00:00:00 2001 From: "fletcher.fan" Date: Thu, 12 Mar 2026 16:59:47 +0800 Subject: [PATCH 1/2] params: set Jade fork activation times for mainnet and Hoodi Set Jade upgrade timestamps: - Hoodi (chain 2910): 2026-03-25 14:00 Beijing (1774418400) - Mainnet (chain 2818): 2026-04-08 14:00 Beijing (1775628000) Co-Authored-By: Claude Opus 4.6 --- params/config.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/params/config.go b/params/config.go index dd6bee1df..8da900795 100644 --- a/params/config.go +++ b/params/config.go @@ -321,6 +321,7 @@ var ( Morph203Time: NewUint64(0), ViridianTime: NewUint64(1761544800), EmeraldTime: NewUint64(1766988000), + JadeForkTime: NewUint64(1774418400), TerminalTotalDifficulty: big.NewInt(0), Morph: MorphConfig{ UseZktrie: true, @@ -353,6 +354,7 @@ var ( Morph203Time: NewUint64(1747029600), ViridianTime: NewUint64(1762149600), EmeraldTime: NewUint64(1767765600), + JadeForkTime: NewUint64(1775628000), TerminalTotalDifficulty: big.NewInt(0), Morph: MorphConfig{ UseZktrie: true, From fd5ffdfdd0b4c05d842c4d6d1ee3430ad2f4c383 Mon Sep 17 00:00:00 2001 From: "fletcher.fan" Date: Thu, 12 Mar 2026 17:22:38 +0800 Subject: [PATCH 2/2] bump version to 2.2.0 Co-Authored-By: Claude Opus 4.6 --- params/version.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/params/version.go b/params/version.go index 7e41072e4..b4dbcaf3e 100644 --- a/params/version.go +++ b/params/version.go @@ -23,8 +23,8 @@ import ( const ( VersionMajor = 2 // Major version component of the current release - VersionMinor = 1 // Minor version component of the current release - VersionPatch = 2 // 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 = "mainnet" // Version metadata to append to the version string )