From c1bf13ee737f3437d0aca7cf3bfd9753e2f31d43 Mon Sep 17 00:00:00 2001 From: Gyanendra Mishra Date: Mon, 11 Sep 2023 12:56:15 +0100 Subject: [PATCH] fix: update readme for MEV params (#189) --- README.md | 24 ++++++++++++++++-------- 1 file changed, 16 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 8b05ff428..836b3d054 100644 --- a/README.md +++ b/README.md @@ -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 } } ```