Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -1568,7 +1568,7 @@ ansible_telemetry_deploy: ## Deploy the Telemetry. Parameters: INVENTORY
__ETHEREUM_PACKAGE__: ## ____

ethereum_package_start: ## Starts the ethereum_package environment
kurtosis run --enclave aligned github.com/ethpandaops/ethereum-package@5.0.1 --args-file network_params.yaml
kurtosis run --enclave aligned github.com/ethpandaops/ethereum-package --args-file network_params.yaml
Comment thread
MarcosNicolau marked this conversation as resolved.
Outdated

ethereum_package_inspect: ## Prints detailed information about the net
kurtosis enclave inspect aligned
Expand Down
4 changes: 2 additions & 2 deletions config-files/config-aggregator-ethereum-package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ environment: "production"
aligned_layer_deployment_config_file_path: "./contracts/script/output/devnet/alignedlayer_deployment_output.json"
eigen_layer_deployment_config_file_path: "./contracts/script/output/devnet/eigenlayer_deployment_output.json"
eth_rpc_url: "http://localhost:8545"
eth_rpc_url_fallback: "http://localhost:8551"
eth_rpc_url_fallback: "http://localhost:8552"
eth_ws_url: "ws://localhost:8546"
eth_ws_url_fallback: "ws://localhost:8552"
eth_ws_url_fallback: "ws://localhost:8553"
eigen_metrics_ip_port_address: "localhost:9090"

## ECDSA Configurations
Expand Down
4 changes: 2 additions & 2 deletions config-files/config-batcher-ethereum-package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ environment: "production"
aligned_layer_deployment_config_file_path: "./contracts/script/output/devnet/alignedlayer_deployment_output.json"
eigen_layer_deployment_config_file_path: "./contracts/script/output/devnet/eigenlayer_deployment_output.json"
eth_rpc_url: "http://localhost:8545"
eth_rpc_url_fallback: "http://localhost:8551"
eth_rpc_url_fallback: "http://localhost:8552"
eth_ws_url: "ws://localhost:8546"
eth_ws_url_fallback: "ws://localhost:8552"
eth_ws_url_fallback: "ws://localhost:8553"
eigen_metrics_ip_port_address: "localhost:9090"

## ECDSA Configurations
Expand Down
4 changes: 2 additions & 2 deletions config-files/config-operator-1-ethereum-package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ environment: 'development'
aligned_layer_deployment_config_file_path: './contracts/script/output/devnet/alignedlayer_deployment_output.json'
eigen_layer_deployment_config_file_path: './contracts/script/output/devnet/eigenlayer_deployment_output.json'
eth_rpc_url: "http://localhost:8545"
eth_rpc_url_fallback: "http://localhost:8551"
eth_rpc_url_fallback: "http://localhost:8552"
eth_ws_url: "ws://localhost:8546"
eth_ws_url_fallback: "ws://localhost:8552"
eth_ws_url_fallback: "ws://localhost:8553"
eigen_metrics_ip_port_address: 'localhost:9090'

## ECDSA Configurations
Expand Down
24 changes: 19 additions & 5 deletions network_params.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
participants:
- el_type: reth
- el_type: geth
el_image: ethereum/client-go:v1.16.4
el_extra_params: ["--miner.extradata=lighthouseFromLocal"]
cl_type: lighthouse
count: 3
validator_count: 32
cl_image: sigp/lighthouse:v8.0.0
count: 3
supernode: true


ethereum_metrics_exporter_enabled: true

Expand All @@ -22,6 +26,7 @@ port_publisher:
ethereum_genesis_generator_params:
# The image to use for ethereum genesis generator
image: ethpandaops/ethereum-genesis-generator:4.1.19
extra_env: {}

# Default configuration parameters for the network
network_params:
Expand All @@ -34,7 +39,7 @@ network_params:
seconds_per_slot: 12

# How long you want the network to wait before starting up
genesis_delay: 20
genesis_delay: 120

# The gas limit of the network set at genesis
genesis_gaslimit: 36000000
Expand All @@ -47,8 +52,17 @@ network_params:
custody_requirement: 4
# Maximum number of blobs per block
# max_blobs_per_block: 6
min_validator_withdrawability_delay: 1
shard_committee_period: 1
churn_limit_quotient: 16
fulu_fork_epoch: 1
bpo_1_epoch: 2
bpo_1_max_blobs: 15
bpo_1_target_blobs: 10
bpo_2_epoch: 3
bpo_2_max_blobs: 21
bpo_2_target_blobs: 14

preset: "minimal"
devnet_repo: ethpandaops

# Prefunded Accounts
Expand Down
Loading