Skip to content

Commit

Permalink
Fix typo reth execution client mainnet
Browse files Browse the repository at this point in the history
  • Loading branch information
pablomendezroyo committed Oct 16, 2024
1 parent 6b02c5e commit 8230c4a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/stakers/src/execution.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export class Execution extends StakerComponent {

protected static readonly CompatibleExecutions: Record<Network, { dnpName: string; minVersion: string }[]> = {
[Network.Mainnet]: [
{ dnpName: ExecutionClientHolesky.Reth, minVersion: "0.1.0" },
{ dnpName: ExecutionClientMainnet.Reth, minVersion: "0.1.0" },
{ dnpName: ExecutionClientMainnet.Geth, minVersion: "0.1.37" },
{ dnpName: ExecutionClientMainnet.Nethermind, minVersion: "1.0.27" },
{ dnpName: ExecutionClientMainnet.Erigon, minVersion: "0.1.34" },
Expand Down
3 changes: 2 additions & 1 deletion packages/types/src/stakers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ export enum ExecutionClientMainnet {
Geth = "geth.dnp.dappnode.eth",
Besu = "besu.public.dappnode.eth",
Erigon = "erigon.dnp.dappnode.eth",
Nethermind = "nethermind.public.dappnode.eth"
Nethermind = "nethermind.public.dappnode.eth",
Reth = "reth.dnp.dappnode.eth"
}
export enum SignerMainnet {
Web3signer = "web3signer.dnp.dappnode.eth"
Expand Down

0 comments on commit 8230c4a

Please sign in to comment.