Skip to content

Commit

Permalink
Merge pull request #66 from migalabs/update/add-new-networks
Browse files Browse the repository at this point in the history
update the fork digest list to support new testnets
  • Loading branch information
cortze committed Nov 28, 2023
2 parents f4dfd0b + 4cbd29e commit 1f69e06
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions pkg/networks/ethereum/network_info.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ var (
Phase0Key string = "Mainnet"
AltairKey string = "Altair"
BellatrixKey string = "Bellatrix"
CapellaKey string = "Capella"
CapellaKey string = "Capella"
// Gnosis
GnosisPhase0Key string = "GnosisPhase0"
GnosisAltairKey string = "GnosisAltair"
Expand All @@ -29,6 +29,12 @@ var (
PraterPhase0Key string = "PraterPhase0"
PraterBellatrixKey string = "PraterBellatrix"
PraterCapellaKey string = "PraterCapella"
// Sepolia
SepoliaCapellaKey string = "SepoliaCapella"
// Holesky
HoleskyCapellaKey string = "HoleskyCapella"
// Deneb
DenebCancunKey string = "DenebCancun"

ForkDigests = map[string]string{
AllForkDigest: "all",
Expand All @@ -40,10 +46,16 @@ var (
// Gnosis
GnosisPhase0Key: "0xf925ddc5",
GnosisBellatrixKey: "0x56fdb5e0",
// Goerli
// Goerli-Prater
PraterPhase0Key: "0x79df0428",
PraterBellatrixKey: "0xc2ce3aa8",
PraterCapellaKey: "0x628941ef",
PraterCapellaKey: "0x628941ef",
// Sepolia
SepoliaCapellaKey: "0x47eb72b3",
// Holesky
HoleskyCapellaKey: "0x17e2dad3",
// Deneb
DenebCancunKey: "0xee7b3a32",
}

MessageTypes = []string{
Expand Down

0 comments on commit 1f69e06

Please sign in to comment.