Skip to content

Commit

Permalink
fix: update readme for MEV params (#189)
Browse files Browse the repository at this point in the history
  • Loading branch information
h4ck3rk3y committed Sep 11, 2023
1 parent 8146ab7 commit c1bf13e
Showing 1 changed file with 16 additions and 8 deletions.
24 changes: 16 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -213,20 +213,28 @@ To configure the package behaviour, you can modify your `network_params.json` fi
// Parameters if MEV is used
"mev_params": {
// The image to use for MEV boot relay
// This uses the h4ck3rk3y image instead of the flashbots image as that isn't published yet
"mev_relay_image": "flashbots/mev-boost-relay",
"mev_relay_image": "flashbots/mev-boost-relay",
// The image to use for the builder
"mev_builder_image": "ethpandaops/flashbots-builder:main",
// The image to use for mev-boost
"mev_boost_image": "flashbots/mev-boost",
// Extra parameters to send to the API
"mev_relay_api_extra_args": [],
"mev_relay_api_extra_args": [],
// Extra parameters to send to the housekeeper
"mev_relay_housekeeper_extra_args": [],
"mev_relay_housekeeper_extra_args": [],
// Extra parameters to send to the website
"mev_relay_website_extra_args": [],
"mev_relay_website_extra_args": [],
// Extra parameters to send to the builder
"mev_builder_extra_args": [],
"mev_builder_extra_args": [],
// Image to use for mev-flood
"mev_flood_image": "flashbots/mev-flood",
"mev_flood_image": "flashbots/mev-flood",
// Extra parameters to send to mev-flood
"mev_flood_extra_args": []
"mev_flood_extra_args": [],
// Number of seconds between bundles for mev-flood
"mev_flood_seconds_per_bundle": 15,
// A custom flood script that increases the balance of the coinbase addresss leading to more reliable
// payload delivery
"launch_custom_flood": false
}
}
```
Expand Down

0 comments on commit c1bf13e

Please sign in to comment.