Skip to content

Commit d11a689

Browse files
authored
fix: mention reth in package readme (ethereum#133)
1 parent 94ad375 commit d11a689

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ To configure the package behaviour, you can modify your `eth2-package-params.yam
6767
"participants": [
6868
{
6969
// The type of EL client that should be started
70-
// Valid values are "geth", "nethermind", "erigon" and "besu"
70+
// Valid values are "geth", "nethermind", "erigon", "besu" and "reth"
7171
"el_client_type": "geth",
7272

7373
// 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
7676
// - erigon: thorax/erigon:devel
7777
// - nethermind: nethermind/nethermind:latest
7878
// - besu: hyperledger/besu:develop
79+
// - reth: ghcr.io/paradigmxyz/reth
7980
"el_client_image": "",
8081

8182
// The log level string that this participant's EL client should log at

src/package_io/parse_input.star

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ DEFAULT_EL_IMAGES = {
22
"geth": "ethereum/client-go:latest",
33
"erigon": "thorax/erigon:devel",
44
"nethermind": "nethermind/nethermind:latest",
5-
"besu": "hyperledger/besu:develop"
5+
"besu": "hyperledger/besu:develop",
6+
"reth": "ghcr.io/paradigmxyz/reth"
67
}
78

89
DEFAULT_CL_IMAGES = {

0 commit comments

Comments
 (0)