Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
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
22 changes: 11 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -662,8 +662,8 @@ network_params:
electra_fork_epoch: 0

# Fulu fork epoch
# Defaults to 18446744073709551615
fulu_fork_epoch: 18446744073709551615
# Defaults to 0
fulu_fork_epoch: 0

# Gloas fork epoch
# Defaults to 18446744073709551615
Expand Down Expand Up @@ -767,21 +767,21 @@ network_params:


# BPO
# BPO1-5 epoch (default 18446744073709551615)
bpo_1_epoch: 18446744073709551615
# BPO1-5 epoch (default 0/18446744073709551615)
bpo_1_epoch: 0
# Maximum number of blobs per block for BPO1-5
# If only max is set, target is auto-calculated as 2/3 of max
# If only target is set, max is auto-calculated as 3/2 of target
bpo_1_max_blobs: 0
bpo_1_max_blobs: 15
# Target number of blobs per block for BPO1-5
bpo_1_target_blobs: 0
bpo_1_target_blobs: 10
# Base fee update fraction for BPO1-5 (default 0)
bpo_1_base_fee_update_fraction: 0
bpo_1_base_fee_update_fraction: 8346193

bpo_2_epoch: 18446744073709551615
bpo_2_max_blobs: 0
bpo_2_target_blobs: 0
bpo_2_base_fee_update_fraction: 0
bpo_2_max_blobs: 21
bpo_2_target_blobs: 14
bpo_2_base_fee_update_fraction: 11684671

bpo_3_epoch: 18446744073709551615
bpo_3_max_blobs: 0
Expand Down Expand Up @@ -1235,7 +1235,7 @@ spamoor_params:
# Ethereum genesis generator params
ethereum_genesis_generator_params:
# The image to use for ethereum genesis generator
image: ethpandaops/ethereum-genesis-generator:5.1.0
image: ethpandaops/ethereum-genesis-generator:5.2.0
# Pass custom environment variables to the genesis generator (e.g. MY_VAR: my_value)
extra_env: {}

Expand Down
18 changes: 9 additions & 9 deletions network_params.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ network_params:
proposer_inclusion_list_cutoff_bps: 9167
deneb_fork_epoch: 0
electra_fork_epoch: 0
fulu_fork_epoch: 18446744073709551615
fulu_fork_epoch: 0
gloas_fork_epoch: 18446744073709551615
network_sync_base_url: https://snapshots.ethpandaops.io/
force_snapshot_sync: false
Expand All @@ -115,14 +115,14 @@ network_params:
additional_preloaded_contracts: {}
devnet_repo: ethpandaops
prefunded_accounts: {}
bpo_1_epoch: 18446744073709551615
bpo_1_max_blobs: 0
bpo_1_target_blobs: 0
bpo_1_base_fee_update_fraction: 0
bpo_1_epoch: 0
bpo_1_max_blobs: 15
bpo_1_target_blobs: 10
bpo_1_base_fee_update_fraction: 8346193
bpo_2_epoch: 18446744073709551615
bpo_2_max_blobs: 0
bpo_2_target_blobs: 0
bpo_2_base_fee_update_fraction: 0
bpo_2_max_blobs: 21
bpo_2_target_blobs: 14
bpo_2_base_fee_update_fraction: 11684671
bpo_3_epoch: 18446744073709551615
bpo_3_max_blobs: 0
bpo_3_target_blobs: 0
Expand Down Expand Up @@ -228,7 +228,7 @@ keymanager_enabled: false
checkpoint_sync_enabled: false
checkpoint_sync_url: ""
ethereum_genesis_generator_params:
image: ethpandaops/ethereum-genesis-generator:5.1.0
image: ethpandaops/ethereum-genesis-generator:5.2.0
extra_env: {}
port_publisher:
nat_exit_ip: KURTOSIS_IP_ADDR_PLACEHOLDER
Expand Down
2 changes: 1 addition & 1 deletion src/package_io/constants.star
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ DEFAULT_SPAMOOR_IMAGE = "ethpandaops/spamoor:latest"
DEFAULT_ASSERTOOR_IMAGE = "ethpandaops/assertoor:latest"
DEFAULT_SNOOPER_IMAGE = "ethpandaops/rpc-snooper:latest"
DEFAULT_ETHEREUM_GENESIS_GENERATOR_IMAGE = (
"ethpandaops/ethereum-genesis-generator:5.1.0"
"ethpandaops/ethereum-genesis-generator:5.2.0"
)
DEFAULT_YQ_IMAGE = "linuxserver/yq"
DEFAULT_FLASHBOTS_RELAY_IMAGE = "ethpandaops/mev-boost-relay:main"
Expand Down
20 changes: 10 additions & 10 deletions src/package_io/input_parser.star
Original file line number Diff line number Diff line change
Expand Up @@ -1236,7 +1236,7 @@ def default_network_params():
"capella_fork_epoch": 0,
"deneb_fork_epoch": 0,
"electra_fork_epoch": 0,
"fulu_fork_epoch": constants.FAR_FUTURE_EPOCH,
"fulu_fork_epoch": 0,
"gloas_fork_epoch": constants.FAR_FUTURE_EPOCH,
"eip7805_fork_epoch": constants.FAR_FUTURE_EPOCH,
"eip7441_fork_epoch": constants.FAR_FUTURE_EPOCH,
Expand All @@ -1258,7 +1258,7 @@ def default_network_params():
"max_payload_size": 10485760,
"perfect_peerdas_enabled": False,
"gas_limit": 0,
"bpo_1_epoch": 18446744073709551615,
"bpo_1_epoch": 0,
"bpo_1_max_blobs": 15,
"bpo_1_target_blobs": 10,
"bpo_1_base_fee_update_fraction": 8346193,
Expand Down Expand Up @@ -1318,7 +1318,7 @@ def default_minimal_network_params():
"capella_fork_epoch": 0,
"deneb_fork_epoch": 0,
"electra_fork_epoch": 0,
"fulu_fork_epoch": constants.FAR_FUTURE_EPOCH,
"fulu_fork_epoch": 0,
"gloas_fork_epoch": constants.FAR_FUTURE_EPOCH,
"eip7805_fork_epoch": constants.FAR_FUTURE_EPOCH,
"eip7441_fork_epoch": constants.FAR_FUTURE_EPOCH,
Expand All @@ -1340,14 +1340,14 @@ def default_minimal_network_params():
"max_payload_size": 10485760,
"perfect_peerdas_enabled": False,
"gas_limit": 0,
"bpo_1_epoch": 18446744073709551615,
"bpo_1_max_blobs": 0,
"bpo_1_target_blobs": 0,
"bpo_1_base_fee_update_fraction": 0,
"bpo_1_epoch": 0,
"bpo_1_max_blobs": 15,
"bpo_1_target_blobs": 10,
"bpo_1_base_fee_update_fraction": 8346193,
"bpo_2_epoch": 18446744073709551615,
"bpo_2_max_blobs": 0,
"bpo_2_target_blobs": 0,
"bpo_2_base_fee_update_fraction": 0,
"bpo_2_max_blobs": 21,
"bpo_2_target_blobs": 14,
"bpo_2_base_fee_update_fraction": 11684671,
"bpo_3_epoch": 18446744073709551615,
"bpo_3_max_blobs": 0,
"bpo_3_target_blobs": 0,
Expand Down
3 changes: 1 addition & 2 deletions src/spamoor/spamoor.star
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,7 @@ def launch_spamoor(

for index, spammer in enumerate(spamoor_params.spammers):
if (
"peerdas" in network_params.network
or network_params.fulu_fork_epoch != constants.FAR_FUTURE_EPOCH
network_params.fulu_fork_epoch != constants.FAR_FUTURE_EPOCH
) and "blob" in spammer["scenario"]:
if "config" not in spammer:
spammer["config"] = {}
Expand Down
Loading