Commit d11a6898 authored by Gyanendra Mishra's avatar Gyanendra Mishra Committed by GitHub

fix: mention reth in package readme (#133)

parent 94ad3754
......@@ -67,7 +67,7 @@ To configure the package behaviour, you can modify your `eth2-package-params.yam
"participants": [
{
// The type of EL client that should be started
// Valid values are "geth", "nethermind", "erigon" and "besu"
// Valid values are "geth", "nethermind", "erigon", "besu" and "reth"
"el_client_type": "geth",
// The Docker image that should be used for the EL client; leave blank to use the default for the client type
......@@ -76,6 +76,7 @@ To configure the package behaviour, you can modify your `eth2-package-params.yam
// - erigon: thorax/erigon:devel
// - nethermind: nethermind/nethermind:latest
// - besu: hyperledger/besu:develop
// - reth: ghcr.io/paradigmxyz/reth
"el_client_image": "",
// The log level string that this participant's EL client should log at
......
......@@ -2,7 +2,8 @@ DEFAULT_EL_IMAGES = {
"geth": "ethereum/client-go:latest",
"erigon": "thorax/erigon:devel",
"nethermind": "nethermind/nethermind:latest",
"besu": "hyperledger/besu:develop"
"besu": "hyperledger/besu:develop",
"reth": "ghcr.io/paradigmxyz/reth"
}
DEFAULT_CL_IMAGES = {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment