Skip to content

Commit

Permalink
feat(mev-sidecar): launch with beacon client url
Browse files Browse the repository at this point in the history
  • Loading branch information
thedevbirb committed Jun 6, 2024
1 parent 09ff0a3 commit bdcc7b8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
3 changes: 2 additions & 1 deletion main.star
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,8 @@ def run(plan, args={}):
plan,
mev_params,
global_node_selectors,
mev_boost_context
mev_boost_context,
all_cl_contexts[0].beacon_http_url
)

if len(args_with_right_defaults.additional_services) == 0:
Expand Down
5 changes: 4 additions & 1 deletion src/mev/mev_sidecar/mev_sidecar_launcher.star
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ def launch_mev_sidecar(
plan,
mev_params,
node_selectors,
mev_boost_context
mev_boost_context,
beacon_client_url
):
image = mev_params.mev_sidecar_image

Expand All @@ -38,6 +39,8 @@ def launch_mev_sidecar(
"18d1c5302e734fd6fbfaa51828d42c4c6d3cbe020c42bab7dd15a2799cf00b82",
"--mevboost-url",
mev_boost_context_util.mev_boost_endpoint(mev_boost_context),
"--beacon-client-url",
beacon_client_url
],
# + mev_params.mev_relay_api_extra_args,
ports={
Expand Down

0 comments on commit bdcc7b8

Please sign in to comment.