diff --git a/CHANGELOG.md b/CHANGELOG.md index 112b50c..5683775 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,6 @@ -dev: +1.24.1: - fix potential crash when new validators are activated + - add "sepolia" to the list of supported networks 1.24.0: - add "validator yield" diff --git a/cmd/validator/depositdata/output.go b/cmd/validator/depositdata/output.go index d86592f..d5ffed5 100644 --- a/cmd/validator/depositdata/output.go +++ b/cmd/validator/depositdata/output.go @@ -111,6 +111,7 @@ func validatorDepositDataOutputLaunchpad(datum *dataOut) (string, error) { [4]byte{0x00, 0x00, 0x20, 0x09}: "pyrmont", [4]byte{0x00, 0x00, 0x10, 0x20}: "prater", [4]byte{0x80, 0x00, 0x00, 0x69}: "ropsten", + [4]byte{0x90, 0x00, 0x00, 0x69}: "sepolia", } if datum.validatorPubKey == nil { diff --git a/cmd/version.go b/cmd/version.go index d353688..26b69ce 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.24.0)" +var ReleaseVersion = "local build (latest release 1.24.1)" // versionCmd represents the version command var versionCmd = &cobra.Command{