Skip to content

Commit

Permalink
Add sepolia support.
Browse files Browse the repository at this point in the history
  • Loading branch information
mcdee committed Jun 21, 2022
1 parent 547f8d9 commit 77abe0e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
1 change: 1 addition & 0 deletions cmd/validator/depositdata/output.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion cmd/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -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{
Expand Down

0 comments on commit 77abe0e

Please sign in to comment.