Skip to content

Commit

Permalink
README: added instructions for -min-bid
Browse files Browse the repository at this point in the history
  • Loading branch information
metachris committed Nov 19, 2022
1 parent d5f7061 commit 2a1217f
Showing 1 changed file with 23 additions and 9 deletions.
32 changes: 23 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -243,9 +243,9 @@ Run MEV-Boost pointed at a Sepolia relay:

These are the CLI arguments for the main branch. For arguments available in a specific release, check the [release page](https://github.com/flashbots/mev-boost/releases).

```
$ ./mev-boost -help
Usage of ./mev-boost:
```bash
$ mev-boost -help
Usage of mev-boost:
-addr string
listen-address for mev-boost server (default "localhost:18550")
-debug
Expand All @@ -263,7 +263,7 @@ Usage of ./mev-boost:
-loglevel string
minimum loglevel: trace, debug, info, warn/warning, error, fatal, panic (default "info")
-mainnet
use Mainnet
use Mainnet (default true)
-min-bid float
minimum bid to accept from a relay [eth]
-relay value
Expand Down Expand Up @@ -297,18 +297,32 @@ times for multiple relays. Use whichever method suits your preferences.

These two MEV-Boost commands are equivalent:

```
./mev-boost -mainnet -relay-check \
```bash
./mev-boost -relay-check \
-relays $YOUR_RELAY_CHOICE_A,$YOUR_RELAY_CHOICE_B,$YOUR_RELAY_CHOICE_C
```

```bash
./mev-boost -relay-check \
-relay $YOUR_RELAY_CHOICE_A \
-relay $YOUR_RELAY_CHOICE_B \
-relay $YOUR_RELAY_CHOICE_C
```
./mev-boost -mainnet -relay-check \
-relay $YOUR_RELAY_CHOICE_A \
-relay $YOUR_RELAY_CHOICE_B \


### Setting a minimum bid value with `-min-bid`

Setting a minimum bid value of 0.06 ETH:

```bash
mev-boost \
-min-bid 0.06 \
-relay $YOUR_RELAY_CHOICE_A \
-relay $YOUR_RELAY_CHOICE_B \
-relay $YOUR_RELAY_CHOICE_C
```


---

# API
Expand Down

0 comments on commit 2a1217f

Please sign in to comment.