Skip to content

Commit

Permalink
chore(bolt-boost): support in input parser
Browse files Browse the repository at this point in the history
  • Loading branch information
thedevbirb committed Oct 2, 2024
1 parent 3d48b98 commit fea7f34
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/package_io/input_parser.star
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ HIGH_DENEB_VALUE_FORK_VERKLE = 2000000000
# MEV Params
FLASHBOTS_MEV_BOOST_PORT = 18550
MEV_BOOST_SERVICE_NAME_PREFIX = "mev-boost"
BOLT_BOOST_SERVICE_NAME_PREFIX = "bolt-boost"

# Minimum number of validators required for a network to be valid is 64
MIN_VALIDATORS = 64
Expand Down Expand Up @@ -237,6 +238,7 @@ def input_parser(plan, input_args):
preset=result["network_params"]["preset"],
),
mev_params=struct(
bolt_boost_image=result["mev_params"]["bolt_boost_image"],
helix_relay_image=result["mev_params"]["helix_relay_image"],
mev_relay_image=result["mev_params"]["mev_relay_image"],
mev_builder_image=result["mev_params"]["mev_builder_image"],
Expand Down Expand Up @@ -711,6 +713,7 @@ def default_participant():

def get_default_mev_params():
return {
"bolt_boost_image": None,
"mev_relay_image": MEV_BOOST_RELAY_DEFAULT_IMAGE,
"mev_builder_image": "flashbots/builder:latest",
"mev_builder_cl_image": "sigp/lighthouse:latest",
Expand Down

0 comments on commit fea7f34

Please sign in to comment.