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
1 change: 1 addition & 0 deletions src/cl/hildr/hildr_launcher.star
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ def launch(
existing_cl_clients,
l1_config_env_vars,
sequencer_enabled,
interop_params,
):
# beacon_node_identity_recipe = PostHttpRequestRecipe(
# endpoint="/",
Expand Down
1 change: 1 addition & 0 deletions src/el_cl_launcher.star
Original file line number Diff line number Diff line change
Expand Up @@ -312,6 +312,7 @@ def launch(
all_cl_contexts,
l1_config_env_vars,
False,
interop_params,
)
all_cl_contexts.append(cl_builder_context)

Expand Down
5 changes: 0 additions & 5 deletions static_files/scripts/fund.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,6 @@ for chain_id in "${chain_ids[@]}"; do
role="${roles[$index]}"
role_idx=$((index+1))

# Skip wallet addrs for anything other Proposer/Batcher/Sequencer/Challenger if not on local L1
if [[ "${L1_NETWORK}" != "local" && $role_idx -gt 4 ]]; then
continue
fi

private_key=$(cast wallet private-key "$mnemonic" "m/44'/60'/2'/$chain_id/$role_idx")
address=$(cast wallet address "${private_key}")
write_keyfile "${address}" "${private_key}" "${role}-$chain_id"
Expand Down