Skip to content

Commit fee7361

Browse files
committed
eth2: bump, remove holesky
Holesky is no longer maintained and has been removed from eth2
1 parent f3253f4 commit fee7361

29 files changed

+71
-3224
lines changed

GeneralStateTestsDevnet.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,11 @@ OK: 5/5 Fail: 0/5 Skip: 0/5
139139
+ valid_multi_inf.json OK
140140
```
141141
OK: 6/6 Fail: 0/6 Skip: 0/6
142+
## bls12_precompiles_before_fork
143+
```diff
144+
+ precompile_before_fork.json OK
145+
```
146+
OK: 1/1 Fail: 0/1 Skip: 0/1
142147
## bls12_variable_length_input_contracts
143148
```diff
144149
+ invalid_gas_g1msm.json OK
@@ -165,6 +170,11 @@ OK: 15/15 Fail: 0/15 Skip: 0/15
165170
+ call_memory_expands_on_early_revert.json OK
166171
```
167172
OK: 3/3 Fail: 0/3 Skip: 0/3
173+
## call_and_callcode_gas_calculation
174+
```diff
175+
+ value_transfer_gas_calculation.json OK
176+
```
177+
OK: 1/1 Fail: 0/1 Skip: 0/1
168178
## calldatacopy
169179
```diff
170180
+ calldatacopy.json OK
@@ -461,9 +471,10 @@ OK: 50/50 Fail: 0/50 Skip: 0/50
461471
+ pointer_to_precompile.json OK
462472
+ pointer_to_static.json OK
463473
+ pointer_to_static_reentry.json OK
474+
+ set_code_type_tx_pre_fork.json OK
464475
+ static_to_pointer.json OK
465476
```
466-
OK: 15/15 Fail: 0/15 Skip: 0/15
477+
OK: 16/16 Fail: 0/16 Skip: 0/16
467478
## shift_combinations
468479
```diff
469480
+ combinations.json OK
@@ -551,4 +562,4 @@ OK: 2/2 Fail: 0/2 Skip: 0/2
551562
OK: 1/1 Fail: 0/1 Skip: 0/1
552563

553564
---TOTAL---
554-
OK: 265/265 Fail: 0/265 Skip: 0/265
565+
OK: 268/268 Fail: 0/268 Skip: 0/268

execution_chain/common/chain_config.nim

Lines changed: 0 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@ const
6060
# these are public network id
6161
MainNet* = 1.u256
6262
SepoliaNet* = 11155111.u256
63-
HoleskyNet* = 17000.u256
6463
HoodiNet* = 560048.u256
6564

6665
createJsonFlavor JGenesis,
@@ -549,33 +548,6 @@ func chainConfigForNetwork*(id: NetworkId): ChainConfig =
549548
depositContractAddress: Opt.some(SEPOLIANET_DEPOSIT_CONTRACT_ADDRESS),
550549
blobSchedule: defaultBlobSchedule(),
551550
)
552-
elif id == HoleskyNet:
553-
#https://github.com/eth-clients/holesky
554-
const
555-
HOLESKYNET_DEPOSIT_CONTRACT_ADDRESS = address"0x4242424242424242424242424242424242424242"
556-
ChainConfig(
557-
chainId: HoleskyNet,
558-
homesteadBlock: Opt.some(0.BlockNumber),
559-
eip150Block: Opt.some(0.BlockNumber),
560-
eip155Block: Opt.some(0.BlockNumber),
561-
eip158Block: Opt.some(0.BlockNumber),
562-
byzantiumBlock: Opt.some(0.BlockNumber),
563-
constantinopleBlock: Opt.some(0.BlockNumber),
564-
petersburgBlock: Opt.some(0.BlockNumber),
565-
istanbulBlock: Opt.some(0.BlockNumber),
566-
berlinBlock: Opt.some(0.BlockNumber),
567-
londonBlock: Opt.some(0.BlockNumber),
568-
mergeNetsplitBlock: Opt.some(0.BlockNumber),
569-
terminalTotalDifficulty: Opt.some(0.u256),
570-
shanghaiTime: Opt.some(1_696_000_704.EthTime), # Friday, 29 September 2023 15:18:24
571-
cancunTime: Opt.some(1_707_305_664.EthTime), # Wednesday, 7 February 2024 11:34:24
572-
pragueTime: Opt.some(1_740_434_112.EthTime), # Monday, 24 February 2025 21:55:12
573-
osakaTime: Opt.some(1_759_308_480.EthTime), # Wednesday, 1 October 2025 08:48:00
574-
bpo1Time: Opt.some(1_759_800_000.EthTime), # Tuesday, 7 October 2025 01:20:00
575-
bpo2Time: Opt.some(1_760_389_824.EthTime), # Monday, 13 October 2025 21:10:24
576-
depositContractAddress: Opt.some(HOLESKYNET_DEPOSIT_CONTRACT_ADDRESS),
577-
blobSchedule: defaultBlobSchedule(),
578-
)
579551
elif id == HoodiNet:
580552
const
581553
HOODI_DEPOSIT_CONTRACT_ADDRESS = address"0x00000000219ab540356cBB839Cbe05303d7705Fa"
@@ -631,14 +603,6 @@ func genesisBlockForNetwork*(id: NetworkId): Genesis
631603
difficulty: 0x20000.u256,
632604
alloc: decodePrealloc(sepoliaAllocData)
633605
)
634-
elif id == HoleskyNet:
635-
Genesis(
636-
difficulty: 0x01.u256,
637-
gasLimit: 0x17D7840,
638-
nonce: uint64(0x1234).to(Bytes8),
639-
timestamp: EthTime(0x65156994),
640-
alloc: decodePrealloc(holeskyAllocData)
641-
)
642606
elif id == HoodiNet:
643607
Genesis(
644608
difficulty: 0x01.u256,
@@ -655,8 +619,6 @@ func name*(id: NetworkId): string =
655619
"mainnet"
656620
elif id == SepoliaNet:
657621
"sepolia"
658-
elif id == HoleskyNet:
659-
"holesky"
660622
elif id == HoodiNet:
661623
"hoodi"
662624
else:

execution_chain/common/genesis_alloc.nim

Lines changed: 0 additions & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)