Skip to content

Commit

Permalink
adding ephemery testnet
Browse files Browse the repository at this point in the history
  • Loading branch information
chuygarcia92 authored Oct 16, 2024
1 parent 6b02c5e commit 65e27ec
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion packages/stakers/src/consensus.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import {
ConsensusClientLukso,
ConsensusClientMainnet,
ConsensusClientPrater,
ConsensusClientEphemery,
Network,
StakerItem,
UserSettings
Expand All @@ -28,7 +29,8 @@ export class Consensus extends StakerComponent {
[Network.Gnosis]: db.consensusClientGnosis,
[Network.Prater]: db.consensusClientPrater,
[Network.Holesky]: db.consensusClientHolesky,
[Network.Lukso]: db.consensusClientLukso
[Network.Lukso]: db.consensusClientLukso,
[Network.Ephemery]: db.consensusClientEphemery
};
protected static readonly CompatibleConsensus: Record<Network, { dnpName: string; minVersion: string }[]> = {
[Network.Mainnet]: [
Expand Down Expand Up @@ -61,6 +63,10 @@ export class Consensus extends StakerComponent {
[Network.Lukso]: [
{ dnpName: ConsensusClientLukso.Prysm, minVersion: "0.1.0" },
{ dnpName: ConsensusClientLukso.Teku, minVersion: "0.1.0" }
],
[Network.Ephemery]: [
{ dnpName: ConsensusClientEphemery.Lodestar, minVersion: "0.1.0" },
{ dnpName: ConsensusClientEphemery.Teku, minVersion: "0.1.0" }
]
};

Expand Down

0 comments on commit 65e27ec

Please sign in to comment.