Add support for hoodi.

This commit is contained in:
Jim McDonald
2025-03-16 08:00:45 +00:00
parent 992a969eaf
commit 1c23926295
3 changed files with 5 additions and 1 deletions

View File

@@ -1,3 +1,6 @@
1.37.3:
- add "hoodi" to the list of supported networks
1.37.2:
- add "block trail"

View File

@@ -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 {

View File

@@ -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{