Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
ethereum-package
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
vicotor
ethereum-package
Commits
d11a6898
Unverified
Commit
d11a6898
authored
Aug 17, 2023
by
Gyanendra Mishra
Committed by
GitHub
Aug 17, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: mention reth in package readme (#133)
parent
94ad3754
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
README.md
README.md
+2
-1
parse_input.star
src/package_io/parse_input.star
+2
-1
No files found.
README.md
View file @
d11a6898
...
...
@@ -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
...
...
src/package_io/parse_input.star
View file @
d11a6898
...
...
@@ -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 = {
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment