Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
ethereum-package
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
vicotor
ethereum-package
Commits
bc89ad31
Unverified
Commit
bc89ad31
authored
Dec 04, 2024
by
Barnabas Busa
Committed by
GitHub
Dec 04, 2024
1
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: mev-builder custom image (#847)
parent
b61a128b
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
2 deletions
+8
-2
el_launcher.star
src/el/el_launcher.star
+2
-0
reth_launcher.star
src/el/reth/reth_launcher.star
+5
-2
participant_network.star
src/participant_network.star
+1
-0
No files found.
src/el/el_launcher.star
View file @
bc89ad31
...
...
@@ -25,6 +25,7 @@ def launch(
num_participants,
port_publisher,
mev_builder_type,
mev_params,
):
el_launchers = {
constants.EL_TYPE.geth: {
...
...
@@ -77,6 +78,7 @@ def launch(
jwt_file,
network_params.network,
builder_type=mev_builder_type,
mev_params=mev_params,
),
"launch_method": reth.launch,
},
...
...
src/el/reth/reth_launcher.star
View file @
bc89ad31
...
...
@@ -234,7 +234,7 @@ def get_config(
launcher.builder_type == constants.FLASHBOTS_MEV_TYPE
or launcher.builder_type == constants.COMMIT_BOOST_MEV_TYPE
):
image =
constants.DEFAULT_FLASHBOTS_BUILDER_IMAGE
image =
launcher.mev_params.mev_builder_image
cl_client_name = service_name.split("-")[4]
cmd.append("--engine.experimental")
cmd.append("--rbuilder.config=" + flashbots_rbuilder.MEV_FILE_PATH_ON_CONTAINER)
...
...
@@ -283,10 +283,13 @@ def get_config(
return ServiceConfig(**config_args)
def new_reth_launcher(el_cl_genesis_data, jwt_file, network, builder_type=False):
def new_reth_launcher(
el_cl_genesis_data, jwt_file, network, builder_type=False, mev_params=None
):
return struct(
el_cl_genesis_data=el_cl_genesis_data,
jwt_file=jwt_file,
network=network,
builder_type=builder_type,
mev_params=mev_params,
)
src/participant_network.star
View file @
bc89ad31
...
...
@@ -141,6 +141,7 @@ def launch_participant_network(
num_participants,
args_with_right_defaults.port_publisher,
args_with_right_defaults.mev_type,
args_with_right_defaults.mev_params,
)
# Launch all consensus layer clients
...
...
vicotor
@luxueqian
mentioned in commit
e957062f
·
Apr 13, 2025
mentioned in commit
e957062f
mentioned in commit e957062f619b4c8503c2c41cd7f51dbdb48a4ed3
Toggle commit list
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment