Skip to content

Commit

Permalink
feat: we no longer need 4788 deployer (#485)
Browse files Browse the repository at this point in the history
  • Loading branch information
barnabasbusa authored Feb 1, 2024
1 parent bbe0b16 commit abdfc2c
Show file tree
Hide file tree
Showing 5 changed files with 1 addition and 177 deletions.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -769,7 +769,6 @@ Here's a table of where the keys are used
| 1 | blob_spammer | ✅ | | As the sender of blobs |
| 3 | transaction_spammer | ✅ | | To spam transactions with |
| 4 | goomy_blob | ✅ | | As the sender of blobs |
| 5 | eip4788_deployment | ✅ | | As contract deployer |
| 6 | mev_flood | ✅ | | As the contract owner |
| 7 | mev_flood | ✅ | | As the user_key |
| 8 | assertoor | ✅ | ✅ | As the funding for tests |
Expand Down
15 changes: 0 additions & 15 deletions main.star
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,6 @@ mev_flood = import_module("./src/mev/mev_flood/mev_flood_launcher.star")
mev_custom_flood = import_module(
"./src/mev/mev_custom_flood/mev_custom_flood_launcher.star"
)
eip4788_deployment = import_module(
"./src/eip4788_deployment/eip4788_deployment_launcher.star"
)
broadcaster = import_module("./src/broadcaster/broadcaster.star")
assertoor = import_module("./src/assertoor/assertoor_launcher.star")

Expand Down Expand Up @@ -130,18 +127,6 @@ def run(plan, args={}):
all_cl_client_contexts,
args_with_right_defaults.participants,
)
if network_params.network == constants.NETWORK_NAME.kurtosis:
if network_params.deneb_fork_epoch != 0:
plan.print("Launching 4788 contract deployer")
el_uri = "http://{0}:{1}".format(
all_el_client_contexts[0].ip_addr,
all_el_client_contexts[0].rpc_port_num,
)
eip4788_deployment.deploy_eip4788_contract_in_background(
plan,
genesis_constants.PRE_FUNDED_ACCOUNTS[5].private_key,
el_uri,
)

fuzz_target = "http://{0}:{1}".format(
all_el_client_contexts[0].ip_addr,
Expand Down
38 changes: 0 additions & 38 deletions src/eip4788_deployment/eip4788_deployment_launcher.star

This file was deleted.

122 changes: 0 additions & 122 deletions src/eip4788_deployment/sender.py

This file was deleted.

2 changes: 1 addition & 1 deletion src/participant_network.star
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ def launch_participant_network(
and network_params.electra_fork_epoch == None
):
ethereum_genesis_generator_image = (
"ethpandaops/ethereum-genesis-generator:2.0.8"
"ethpandaops/ethereum-genesis-generator:2.0.11"
)
# we are running electra - experimental
elif network_params.electra_fork_epoch != None:
Expand Down

0 comments on commit abdfc2c

Please sign in to comment.