Enable MEV
Last updated
Last updated
This quickstart guide focuses on configuring the builder API for Charon and supported validator and consensus clients.
Running a distributed validator cluster with the builder API enabled will give the validators in the cluster access to the builder network. This builder network is a network of "Block Builders" who work with MEV searchers to produce the most valuable blocks a validator can propose.
is one such product from Flashbots that enables you to ask multiple block relays (who communicate with the "Block Builders") for blocks to propose. The block that pays the largest reward to the validator will be signed and returned to the relay for broadcasting to the wider network. The end result for the validator is generally an increased APR as they receive some share of the MEV.
Charon supports builder API with the --builder-api
flag. To use builder API, one simply needs to add this flag to the charon run
command:
The following flags need to be configured on your chosen consensus client. A Flashbots relay URL is provided for example purposes, you should use the and select the two or three relays with the lowest latency to your node that also conform to your block building preferences. A public list of MEV relays is available .
Teku can communicate with a single relay directly:
Or you can configure it to communicate with a local sidecar to configure multiple relays:
The following flags need to be configured on your chosen validator client
It can be difficult to confirm everything is configured correctly with your cluster until a proposal opportunity arrives, but here are some things you can check.
When your cluster is running, you should see if Charon is logging something like this each epoch:
This indicates that your Charon node is successfully registering with the relay for a blinded block when the time comes.
You should check that your validator client's logs look healthy, and ensure that you haven't added a fee-recipient
address that conflicts with what has been selected by your cluster in your cluster-lock.json
file, as that may prevent your validator from producing a signature for the block when the opportunity arises. You should also confirm the same for all of the other peers in your cluster.
If you are using the , you can enter your cluster's distributed validator public key(s) into their website, to confirm they also see the validator as correctly registered.
Once a proposal has been made, you should look at the Block Extra Data
field under Execution Payload
for the block on , and confirm there is text present, this generally suggests the block came from a builder, and was not a locally constructed block.