-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Touch up dkg debugging, add client config page (#403)
* Touch up dkg debugging, add client config page * Address changes, improve links across site
- Loading branch information
Showing
5 changed files
with
94 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
--- | ||
sidebar_position: 5 | ||
description: A reference for extra configuration of Ethereum Clients when running in DVs. | ||
--- | ||
|
||
# Client Configuration | ||
|
||
Many execution, consensus, and validator clients need custom flags or parameters to work best with Distributed Validators. These settings are often dispersed across a number of documentation pages or example repos. This page aims to be a reference for each client and the specific additions they may require. | ||
|
||
|
||
|
||
|
||
## Lighthouse | ||
|
||
### Consensus Client | ||
|
||
Nothing specific for distributed validators is required. If you are configuring MEV-boost, consult the settings you need [here](../advanced/quickstart-builder-api.mdx#consensus-clients). | ||
|
||
### Validator Client | ||
|
||
Required flags: | ||
```shell | ||
--distributed | ||
``` | ||
|
||
## Lodestar | ||
|
||
### Consensus Client | ||
|
||
Nothing specific for distributed validators is required. If you are configuring MEV-boost, consult the settings you need [here](../advanced/quickstart-builder-api.mdx#consensus-clients). | ||
|
||
### Validator Client | ||
|
||
Required flags: | ||
```shell | ||
--distributed | ||
``` | ||
|
||
## Nimbus | ||
|
||
### Consensus Client | ||
|
||
When running a Nimbus Consensus Client you must add the following flag **to `charon run`**: | ||
```shell | ||
--feature-set-enable=json_requests | ||
``` | ||
|
||
### Validator Client | ||
|
||
Required flags: | ||
```shell | ||
--distributed | ||
``` | ||
|
||
## Prysm | ||
|
||
### Consensus Client | ||
|
||
Nothing specific for distributed validators is required. If you are configuring MEV-boost, consult the settings you need [here](../advanced/quickstart-builder-api.mdx#consensus-clients). | ||
|
||
### Validator Client | ||
|
||
Required flags: | ||
```shell | ||
--distributed | ||
``` | ||
|
||
## Teku | ||
|
||
### Consensus Client | ||
|
||
Required flags: | ||
```shell | ||
--validators-graffiti-client-append-format=DISABLED | ||
``` | ||
|
||
### Validator Client | ||
|
||
Required flags: | ||
```shell | ||
--Xobol-dvt-integration-enabled | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters