From 1c2392629569c6ceed1aed53cbc3a5061b7dd249 Mon Sep 17 00:00:00 2001 From: Jim McDonald Date: Sun, 16 Mar 2025 08:00:45 +0000 Subject: [PATCH] Add support for hoodi. --- CHANGELOG.md | 3 +++ cmd/validator/depositdata/output.go | 1 + cmd/version.go | 2 +- 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6870dd1..f83e404 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +1.37.3: + - add "hoodi" to the list of supported networks + 1.37.2: - add "block trail" diff --git a/cmd/validator/depositdata/output.go b/cmd/validator/depositdata/output.go index a5ccdc2..2246b3f 100644 --- a/cmd/validator/depositdata/output.go +++ b/cmd/validator/depositdata/output.go @@ -114,6 +114,7 @@ func validatorDepositDataOutputLaunchpad(datum *dataOut) (string, error) { [4]byte{0x80, 0x00, 0x00, 0x69}: "ropsten", [4]byte{0x90, 0x00, 0x00, 0x69}: "sepolia", [4]byte{0x01, 0x01, 0x70, 0x00}: "holesky", + [4]byte{0x10, 0x00, 0x09, 0x10}: "hoodi", } if datum.validatorPubKey == nil { diff --git a/cmd/version.go b/cmd/version.go index 8b368ed..af97351 100644 --- a/cmd/version.go +++ b/cmd/version.go @@ -24,7 +24,7 @@ import ( // ReleaseVersion is the release version of the codebase. // Usually overridden by tag names when building binaries. -var ReleaseVersion = "local build (latest release 1.37.2)" +var ReleaseVersion = "local build (latest release 1.37.3)" // versionCmd represents the version command. var versionCmd = &cobra.Command{