Skip to content

Commit

Permalink
fix: mention reth in package readme (#133)
Browse files Browse the repository at this point in the history
  • Loading branch information
h4ck3rk3y authored Aug 17, 2023
1 parent 94ad375 commit d11a689
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
3 changes: 2 additions & 1 deletion src/package_io/parse_input.star
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand Down

0 comments on commit d11a689

Please sign in to comment.