Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion GETTING_STARTED.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ How Rocket Pool Works. Unlike solo stakers, who are required to put 32 ETH up fo

Start with Rocket Pool at [http://rocketpool-testnet.public.dappnode/](http://rocketpool-testnet.public.dappnode/)

ℹ️ Rocket Pool supports three different Execution clients: Geth, Besu, and Nethermind.
ℹ️ Rocket Pool supports three different Execution clients: Geth, Besu, Erigon, and Nethermind.

ℹ️ Rocket Pool supports five Consensus clients: Lighthouse, Lodestar, Nimbus, Prysm, and Teku.

Expand Down
8 changes: 8 additions & 0 deletions build/rocketpool-start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ case $NETWORK in
_EXECUTION_LAYER_WS_NETHERMIND="ws://nethermind.dappnode:8546"
_EXECUTION_LAYER_HTTP_BESU="http://besu.dappnode:8545"
_EXECUTION_LAYER_WS_BESU="ws://besu.dappnode:8546"
_EXECUTION_LAYER_HTTP_ERIGON="http://erigon.dappnode:8545"
_EXECUTION_LAYER_WS_ERIGON="ws://erigon.dappnode:8545"

_BEACON_NODE_API_3500_PRYSM="http://beacon-chain.prysm.dappnode:3500"
_BEACON_NODE_API_4000_PRYSM="http://beacon-chain.prysm.dappnode:4000"
Expand All @@ -42,6 +44,8 @@ case $NETWORK in
_EXECUTION_LAYER_WS_NETHERMIND="ws://goerli-nethermind.dappnode:8546"
_EXECUTION_LAYER_HTTP_BESU="http://goerli-besu.dappnode:8545"
_EXECUTION_LAYER_WS_BESU="ws://goerli-besu.dappnode:8546"
_EXECUTION_LAYER_HTTP_ERIGON="http://goerli-erigon.dappnode:8545"
_EXECUTION_LAYER_WS_ERIGON="ws://goerli-erigon.dappnode:8545"

_BEACON_NODE_API_3500_PRYSM="http://beacon-chain.prysm-prater.dappnode:3500"
_BEACON_NODE_API_4000_PRYSM="http://beacon-chain.prysm-prater.dappnode:4000"
Expand Down Expand Up @@ -75,6 +79,10 @@ case $_DAPPNODE_GLOBAL_EXECUTION_CLIENT_PRATER in
_EXECUTION_LAYER_HTTP=$_EXECUTION_LAYER_HTTP_BESU
_EXECUTION_LAYER_WS=$_EXECUTION_LAYER_WS_BESU
;;
"goerli-erigon.dnp.dappnode.eth")
_EXECUTION_LAYER_HTTP=$_EXECUTION_LAYER_HTTP_ERIGON
_EXECUTION_LAYER_WS=$_EXECUTION_LAYER_WS_ERIGON
;;
*)
echo "Unknown value or unsupported for _DAPPNODE_GLOBAL_EXECUTION_CLIENT_PRATER Please confirm that the value is correct"
exit 1
Expand Down