From 9b7e2960c2d83743dde0dc997a225116d77a1c96 Mon Sep 17 00:00:00 2001 From: andri lim Date: Fri, 6 Dec 2024 17:06:52 +0700 Subject: [PATCH] Add Holesky deposit contract address (#2915) --- nimbus/common/chain_config.nim | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/nimbus/common/chain_config.nim b/nimbus/common/chain_config.nim index 686f18168..6ca4fdca0 100644 --- a/nimbus/common/chain_config.nim +++ b/nimbus/common/chain_config.nim @@ -497,6 +497,9 @@ func chainConfigForNetwork*(id: NetworkId): ChainConfig = cancunTime: Opt.some(1_706_655_072.EthTime), # 2024-01-30 22:51:12 ) of HoleskyNet: + #https://github.com/eth-clients/holesky + const + HOLESKYNET_DEPOSIT_CONTRACT_ADDRESS = address"0x4242424242424242424242424242424242424242" ChainConfig( chainId: HoleskyNet.ChainId, homesteadBlock: Opt.some(0.BlockNumber), @@ -514,6 +517,7 @@ func chainConfigForNetwork*(id: NetworkId): ChainConfig = terminalTotalDifficultyPassed: Opt.some(true), shanghaiTime: Opt.some(1_696_000_704.EthTime), cancunTime: Opt.some(1_707_305_664.EthTime), # 2024-02-07 11:34:24 + depositContractAddress: Opt.some(HOLESKYNET_DEPOSIT_CONTRACT_ADDRESS), ) else: ChainConfig()