diff --git a/core/genesis_write.go b/core/genesis_write.go index c210d3affb9..50ff7c2bb1e 100644 --- a/core/genesis_write.go +++ b/core/genesis_write.go @@ -348,10 +348,9 @@ func HoleskyGenesisBlock() *types.Genesis { return &types.Genesis{ Config: params.HoleskyChainConfig, Nonce: 4660, - ExtraData: hexutil.MustDecode("0x686f77206d7563682069732074686520666973683f"), GasLimit: 25000000, Difficulty: big.NewInt(1), - Timestamp: 1694786100, + Timestamp: 1695902100, Alloc: readPrealloc("allocs/holesky.json"), } } diff --git a/params/chainspecs/holesky.json b/params/chainspecs/holesky.json index da1185b1ef9..852beb80e3d 100644 --- a/params/chainspecs/holesky.json +++ b/params/chainspecs/holesky.json @@ -13,5 +13,5 @@ "mergeForkBlock": 0, "terminalTotalDifficulty": 0, "terminalTotalDifficultyPassed": true, - "shanghaiTime": 1694884704 + "shanghaiTime": 1696000704 } \ No newline at end of file diff --git a/params/config.go b/params/config.go index b5593605af9..851090f0238 100644 --- a/params/config.go +++ b/params/config.go @@ -51,7 +51,7 @@ func readChainSpec(filename string) *chain.Config { // Genesis hashes to enforce below configs on. var ( MainnetGenesisHash = libcommon.HexToHash("0xd4e56740f876aef8c010b86a40d5f56745a118d0906a34e69aec8c0db1cb8fa3") - HoleskyGenesisHash = libcommon.HexToHash("0xff9006519a8ce843ac9c28549d24211420b546e12ce2d170c77a8cca7964f23d") + HoleskyGenesisHash = libcommon.HexToHash("0xb5f7f912443c940f21fd611f12828d75b534364ed9e95ca4e307729a4661bde4") SepoliaGenesisHash = libcommon.HexToHash("0x25a5cc106eea7138acab33231d7160d69cb777ee0c2c553fcddf5138993e6dd9") GoerliGenesisHash = libcommon.HexToHash("0xbf7e331f7f7c1dd2e05159666b3bf8bc7a8a3a9eb1d518969eab529dd9b88c1a") MumbaiGenesisHash = libcommon.HexToHash("0x7b66506a9ebdbf30d32b43c5f15a3b1216269a1ec3a75aa3182b86176a2b1ca7") diff --git a/params/version.go b/params/version.go index 61fd2a8fa16..732f35ddb9f 100644 --- a/params/version.go +++ b/params/version.go @@ -33,7 +33,7 @@ var ( const ( VersionMajor = 2 // Major version component of the current release VersionMinor = 49 // Minor version component of the current release - VersionMicro = 2 // Patch version component of the current release + VersionMicro = 3 // Patch version component of the current release VersionModifier = "stable" // Modifier component of the current release VersionKeyCreated = "ErigonVersionCreated" VersionKeyFinished = "ErigonVersionFinished"