Skip to content

Commit 7048c1b

Browse files
committed
chore: migrate ethereum package to fulu fork (#2173)
1 parent bb3786d commit 7048c1b

File tree

5 files changed

+26
-12
lines changed

5 files changed

+26
-12
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1444,7 +1444,7 @@ ansible_telemetry_deploy: ## Deploy the Telemetry. Parameters: INVENTORY
14441444
__ETHEREUM_PACKAGE__: ## ____
14451445

14461446
ethereum_package_start: ## Starts the ethereum_package environment
1447-
kurtosis run --enclave aligned github.com/ethpandaops/ethereum-package@5.0.1 --args-file network_params.yaml
1447+
kurtosis run --enclave aligned github.com/ethpandaops/ethereum-package@905bf4fe7e558ce4fa3dd843fb6dbe711fdc3049 --args-file network_params.yaml
14481448

14491449
ethereum_package_inspect: ## Prints detailed information about the net
14501450
kurtosis enclave inspect aligned

config-files/config-aggregator-ethereum-package.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ environment: "production"
44
aligned_layer_deployment_config_file_path: "./contracts/script/output/devnet/alignedlayer_deployment_output.json"
55
eigen_layer_deployment_config_file_path: "./contracts/script/output/devnet/eigenlayer_deployment_output.json"
66
eth_rpc_url: "http://localhost:8545"
7-
eth_rpc_url_fallback: "http://localhost:8551"
7+
eth_rpc_url_fallback: "http://localhost:8552"
88
eth_ws_url: "ws://localhost:8546"
9-
eth_ws_url_fallback: "ws://localhost:8552"
9+
eth_ws_url_fallback: "ws://localhost:8553"
1010
eigen_metrics_ip_port_address: "localhost:9090"
1111

1212
## ECDSA Configurations

config-files/config-batcher-ethereum-package.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ environment: "production"
44
aligned_layer_deployment_config_file_path: "./contracts/script/output/devnet/alignedlayer_deployment_output.json"
55
eigen_layer_deployment_config_file_path: "./contracts/script/output/devnet/eigenlayer_deployment_output.json"
66
eth_rpc_url: "http://localhost:8545"
7-
eth_rpc_url_fallback: "http://localhost:8551"
7+
eth_rpc_url_fallback: "http://localhost:8552"
88
eth_ws_url: "ws://localhost:8546"
9-
eth_ws_url_fallback: "ws://localhost:8552"
9+
eth_ws_url_fallback: "ws://localhost:8553"
1010
eigen_metrics_ip_port_address: "localhost:9090"
1111

1212
## ECDSA Configurations

config-files/config-operator-1-ethereum-package.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ environment: 'development'
44
aligned_layer_deployment_config_file_path: './contracts/script/output/devnet/alignedlayer_deployment_output.json'
55
eigen_layer_deployment_config_file_path: './contracts/script/output/devnet/eigenlayer_deployment_output.json'
66
eth_rpc_url: "http://localhost:8545"
7-
eth_rpc_url_fallback: "http://localhost:8551"
7+
eth_rpc_url_fallback: "http://localhost:8552"
88
eth_ws_url: "ws://localhost:8546"
9-
eth_ws_url_fallback: "ws://localhost:8552"
9+
eth_ws_url_fallback: "ws://localhost:8553"
1010
eigen_metrics_ip_port_address: 'localhost:9090'
1111

1212
## ECDSA Configurations

network_params.yaml

Lines changed: 19 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
participants:
2-
- el_type: reth
2+
- el_type: geth
3+
el_image: ethereum/client-go:v1.16.4
4+
el_extra_params: ["--miner.extradata=lighthouseFromLocal"]
35
cl_type: lighthouse
4-
count: 3
5-
validator_count: 32
6+
cl_image: sigp/lighthouse:v8.0.0
7+
count: 3
8+
supernode: true
9+
610

711
ethereum_metrics_exporter_enabled: true
812

@@ -22,6 +26,7 @@ port_publisher:
2226
ethereum_genesis_generator_params:
2327
# The image to use for ethereum genesis generator
2428
image: ethpandaops/ethereum-genesis-generator:4.1.19
29+
extra_env: {}
2530

2631
# Default configuration parameters for the network
2732
network_params:
@@ -34,7 +39,7 @@ network_params:
3439
seconds_per_slot: 12
3540

3641
# How long you want the network to wait before starting up
37-
genesis_delay: 20
42+
genesis_delay: 120
3843

3944
# The gas limit of the network set at genesis
4045
genesis_gaslimit: 36000000
@@ -47,8 +52,17 @@ network_params:
4752
custody_requirement: 4
4853
# Maximum number of blobs per block
4954
# max_blobs_per_block: 6
55+
min_validator_withdrawability_delay: 1
56+
shard_committee_period: 1
57+
churn_limit_quotient: 16
58+
fulu_fork_epoch: 1
59+
bpo_1_epoch: 2
60+
bpo_1_max_blobs: 15
61+
bpo_1_target_blobs: 10
62+
bpo_2_epoch: 3
63+
bpo_2_max_blobs: 21
64+
bpo_2_target_blobs: 14
5065

51-
preset: "minimal"
5266
devnet_repo: ethpandaops
5367

5468
# Prefunded Accounts

0 commit comments

Comments
 (0)