Skip to content

Commit 8ed275a

Browse files
parithoshpk910
andauthored
feat: Adding support for new system contracts + updating devnet config (ethereum#862)
Co-authored-by: pk910 <[email protected]> Co-authored-by: pk910 <[email protected]>
1 parent 28f7b7d commit 8ed275a

File tree

6 files changed

+22
-64
lines changed

6 files changed

+22
-64
lines changed

.github/tests/pectra-devnet-2.yaml.norun

Lines changed: 0 additions & 60 deletions
This file was deleted.
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
participants:
2+
- el_type: besu
3+
el_image: ethpandaops/besu:24.12-develop-8c5aabe
4+
cl_type: teku
5+
cl_image: consensys/teku:develop
6+
el_log_level: "DEBUG"
7+
8+
network_params:
9+
electra_fork_epoch: 1
10+
min_validator_withdrawability_delay: 1
11+
shard_committee_period: 1
12+
churn_limit_quotient: 16
13+
num_validator_keys_per_node: 256
14+
additional_services:
15+
- dora
16+
dora_params:
17+
image: "ethpandaops/dora:master-latest"
18+
snooper_enabled: true

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -982,7 +982,7 @@ spamoor_blob_params:
982982
# Ethereum genesis generator params
983983
ethereum_genesis_generator_params:
984984
# The image to use for ethereum genesis generator
985-
image: ethpandaops/ethereum-genesis-generator:3.4.7
985+
image: ethpandaops/ethereum-genesis-generator:3.5.1
986986

987987
# Global parameter to set the exit ip address of services and public ports
988988
port_publisher:

network_params.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ keymanager_enabled: false
176176
checkpoint_sync_enabled: false
177177
checkpoint_sync_url: ""
178178
ethereum_genesis_generator_params:
179-
image: ethpandaops/ethereum-genesis-generator:3.4.7
179+
image: ethpandaops/ethereum-genesis-generator:3.5.1
180180
port_publisher:
181181
nat_exit_ip: KURTOSIS_IP_ADDR_PLACEHOLDER
182182
el:

src/package_io/constants.star

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ DEFAULT_DORA_IMAGE = "ethpandaops/dora:latest"
8989
DEFAULT_ASSERTOOR_IMAGE = "ethpandaops/assertoor:latest"
9090
DEFAULT_SNOOPER_IMAGE = "ethpandaops/rpc-snooper:latest"
9191
DEFAULT_ETHEREUM_GENESIS_GENERATOR_IMAGE = (
92-
"ethpandaops/ethereum-genesis-generator:3.4.7"
92+
"ethpandaops/ethereum-genesis-generator:3.5.1"
9393
)
9494
DEFAULT_FLASHBOTS_RELAY_IMAGE = "flashbots/mev-boost-relay:0.29.2a3"
9595
DEFAULT_FLASHBOTS_BUILDER_IMAGE = "ethpandaops/reth-rbuilder:develop"

src/package_io/input_parser.star

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1484,5 +1484,5 @@ def docker_cache_image_override(plan, result):
14841484

14851485
def get_default_ethereum_genesis_generator_params():
14861486
return {
1487-
"image": "ethpandaops/ethereum-genesis-generator:3.4.7",
1487+
"image": constants.DEFAULT_ETHEREUM_GENESIS_GENERATOR_IMAGE,
14881488
}

0 commit comments

Comments
 (0)