Skip to content

Commit

Permalink
Replaced all github.com/bloxapp/eth2-key-manager instances to github.…
Browse files Browse the repository at this point in the history
…com/ssvlabs/eth2-key-manager
  • Loading branch information
Roy-blox committed Oct 29, 2024
1 parent 321ee3d commit 480c778
Show file tree
Hide file tree
Showing 10 changed files with 25 additions and 23 deletions.
2 changes: 1 addition & 1 deletion cli/export_keys_from_mnemonic.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"fmt"
"log"

"github.com/bloxapp/eth2-key-manager/core"
"github.com/spf13/cobra"
"github.com/ssvlabs/eth2-key-manager/core"
util "github.com/wealdtech/go-eth2-util"
"go.uber.org/zap"

Expand Down
2 changes: 1 addition & 1 deletion e2e/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ require (
github.com/Microsoft/go-winio v0.6.1 // indirect
github.com/beorn7/perks v1.0.1 // indirect
github.com/bits-and-blooms/bitset v1.10.0 // indirect
github.com/bloxapp/eth2-key-manager v1.4.0 // indirect
github.com/ssvlabs/eth2-key-manager v1.4.0 // indirect
github.com/btcsuite/btcd/btcec/v2 v2.3.2 // indirect
github.com/cespare/xxhash/v2 v2.2.0 // indirect
github.com/consensys/bavard v0.1.13 // indirect
Expand Down
4 changes: 2 additions & 2 deletions e2e/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM=
github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw=
github.com/bits-and-blooms/bitset v1.10.0 h1:ePXTeiPEazB5+opbv5fr8umg2R/1NlzgDsyepwsSr88=
github.com/bits-and-blooms/bitset v1.10.0/go.mod h1:7hO7Gc7Pp1vODcmWvKMRA9BNmbv6a/7QIWpPxHddWR8=
github.com/bloxapp/eth2-key-manager v1.4.0 h1:fwAW886z2mSUb/u4Kq/ln+wvSkIxLqEgxvE+x8gZiz8=
github.com/bloxapp/eth2-key-manager v1.4.0/go.mod h1:m2DsvNCyLAAcgkN2JuroXUGpM61OeKSclmWuaRNW4Ss=
github.com/ssvlabs/eth2-key-manager v1.4.0 h1:fwAW886z2mSUb/u4Kq/ln+wvSkIxLqEgxvE+x8gZiz8=
github.com/ssvlabs/eth2-key-manager v1.4.0/go.mod h1:m2DsvNCyLAAcgkN2JuroXUGpM61OeKSclmWuaRNW4Ss=
github.com/btcsuite/btcd/btcec/v2 v2.3.2 h1:5n0X6hX0Zk+6omWcihdYvdAlGf2DfasC0GMf7DClJ3U=
github.com/btcsuite/btcd/btcec/v2 v2.3.2/go.mod h1:zYzJ8etWJQIv1Ogk7OzpWjowwOdXY1W/17j2MW85J04=
github.com/btcsuite/btcd/chaincfg/chainhash v1.0.1 h1:q0rUy8C/TYNBQS1+CGKw68tLOFYSNEs0TFnxxnS9+4U=
Expand Down
10 changes: 5 additions & 5 deletions ekm/eth_key_manager_signer.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ import (
"github.com/attestantio/go-eth2-client/spec/capella"
"github.com/attestantio/go-eth2-client/spec/deneb"
"github.com/attestantio/go-eth2-client/spec/phase0"
eth2keymanager "github.com/bloxapp/eth2-key-manager"
"github.com/bloxapp/eth2-key-manager/core"
"github.com/bloxapp/eth2-key-manager/signer"
slashingprotection "github.com/bloxapp/eth2-key-manager/slashing_protection"
"github.com/bloxapp/eth2-key-manager/wallets"
ssz "github.com/ferranbt/fastssz"
"github.com/herumi/bls-eth-go-binary/bls"
"github.com/pkg/errors"
eth2keymanager "github.com/ssvlabs/eth2-key-manager"
"github.com/ssvlabs/eth2-key-manager/core"
"github.com/ssvlabs/eth2-key-manager/signer"
slashingprotection "github.com/ssvlabs/eth2-key-manager/slashing_protection"
"github.com/ssvlabs/eth2-key-manager/wallets"
"go.uber.org/zap"

spectypes "github.com/ssvlabs/ssv-spec/types"
Expand Down
4 changes: 2 additions & 2 deletions ekm/signer_key_manager_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ import (
"github.com/attestantio/go-eth2-client/spec/capella"
"github.com/attestantio/go-eth2-client/spec/deneb"
"github.com/attestantio/go-eth2-client/spec/phase0"
"github.com/bloxapp/eth2-key-manager/core"
"github.com/bloxapp/eth2-key-manager/wallets/hd"
"github.com/herumi/bls-eth-go-binary/bls"
"github.com/holiman/uint256"
"github.com/pkg/errors"
"github.com/prysmaticlabs/go-bitfield"
"github.com/ssvlabs/eth2-key-manager/core"
"github.com/ssvlabs/eth2-key-manager/wallets/hd"
genesisspecqbft "github.com/ssvlabs/ssv-spec-pre-cc/qbft"
genesisspectypes "github.com/ssvlabs/ssv-spec-pre-cc/types"
spectypes "github.com/ssvlabs/ssv-spec/types"
Expand Down
8 changes: 4 additions & 4 deletions ekm/signer_storage.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ import (
"sync"

"github.com/attestantio/go-eth2-client/spec/phase0"
"github.com/bloxapp/eth2-key-manager/core"
"github.com/bloxapp/eth2-key-manager/encryptor"
"github.com/bloxapp/eth2-key-manager/wallets"
"github.com/bloxapp/eth2-key-manager/wallets/hd"
ssz "github.com/ferranbt/fastssz"
"github.com/google/uuid"
"github.com/pkg/errors"
"github.com/ssvlabs/eth2-key-manager/core"
"github.com/ssvlabs/eth2-key-manager/encryptor"
"github.com/ssvlabs/eth2-key-manager/wallets"
"github.com/ssvlabs/eth2-key-manager/wallets/hd"
"go.uber.org/zap"

"github.com/ssvlabs/ssv/logging"
Expand Down
8 changes: 4 additions & 4 deletions ekm/signer_storage_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ import (
"testing"

"github.com/attestantio/go-eth2-client/spec/phase0"
"github.com/bloxapp/eth2-key-manager/core"
"github.com/bloxapp/eth2-key-manager/encryptor"
"github.com/bloxapp/eth2-key-manager/encryptor/keystorev4"
"github.com/bloxapp/eth2-key-manager/wallets/hd"
"github.com/google/uuid"
"github.com/herumi/bls-eth-go-binary/bls"
"github.com/ssvlabs/eth2-key-manager/core"
"github.com/ssvlabs/eth2-key-manager/encryptor"
"github.com/ssvlabs/eth2-key-manager/encryptor/keystorev4"
"github.com/ssvlabs/eth2-key-manager/wallets/hd"
"github.com/stretchr/testify/require"
"go.uber.org/zap"

Expand Down
2 changes: 1 addition & 1 deletion eth/eventhandler/event_handler_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ import (

eth2apiv1 "github.com/attestantio/go-eth2-client/api/v1"
"github.com/attestantio/go-eth2-client/spec/phase0"
ekmcore "github.com/bloxapp/eth2-key-manager/core"
"github.com/ethereum/go-ethereum/accounts/abi"
"github.com/ethereum/go-ethereum/accounts/abi/bind"
ethcommon "github.com/ethereum/go-ethereum/common"
Expand All @@ -21,6 +20,7 @@ import (
"github.com/ethereum/go-ethereum/ethclient/simulated"
"github.com/herumi/bls-eth-go-binary/bls"
"github.com/pkg/errors"
ekmcore "github.com/ssvlabs/eth2-key-manager/core"
"github.com/stretchr/testify/require"
"go.uber.org/mock/gomock"
"go.uber.org/zap"
Expand Down
4 changes: 3 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ go 1.22
require (
github.com/aquasecurity/table v1.8.0
github.com/attestantio/go-eth2-client v0.21.7
github.com/bloxapp/eth2-key-manager v1.4.1
github.com/btcsuite/btcd/btcec/v2 v2.3.4
github.com/cespare/xxhash/v2 v2.3.0
github.com/dgraph-io/badger/v4 v4.2.0
Expand Down Expand Up @@ -36,6 +35,7 @@ require (
github.com/rs/zerolog v1.32.0
github.com/sourcegraph/conc v0.3.0
github.com/spf13/cobra v1.7.0
github.com/ssvlabs/eth2-key-manager v1.4.1
github.com/ssvlabs/ssv-spec v0.3.11-0.20240820113812-496d839e9614
github.com/ssvlabs/ssv-spec-pre-cc v0.0.0-20240725052506-c48532da6a63
github.com/status-im/keycard-go v0.2.0
Expand Down Expand Up @@ -244,3 +244,5 @@ require (
replace github.com/google/flatbuffers => github.com/google/flatbuffers v1.11.0

replace github.com/dgraph-io/ristretto => github.com/dgraph-io/ristretto v0.1.1-0.20211108053508-297c39e6640f

replace github.com/ssvlabs/eth2-key-manager => github.com/Roy-blox/eth2-key-manager v0.0.0-20241029094850-92c7958e04f6
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ github.com/DataDog/zstd v1.5.2 h1:vUG4lAyuPCXO0TLbXvPv7EB7cNK1QV/luu55UHLrrn8=
github.com/DataDog/zstd v1.5.2/go.mod h1:g4AWEaM3yOg3HYfnJ3YIawPnVdXJh9QME85blwSAmyw=
github.com/Microsoft/go-winio v0.6.2 h1:F2VQgta7ecxGYO8k3ZZz3RS8fVIXVxONVUPlNERoyfY=
github.com/Microsoft/go-winio v0.6.2/go.mod h1:yd8OoFMLzJbo9gZq8j5qaps8bJ9aShtEA8Ipt1oGCvU=
github.com/Roy-blox/eth2-key-manager v0.0.0-20241029094850-92c7958e04f6 h1:Cg0YYxt/ZZk/d3PWYQuk8c8MVK9VQM4MerMwbRfRieI=
github.com/Roy-blox/eth2-key-manager v0.0.0-20241029094850-92c7958e04f6/go.mod h1:RqsGIMCsOeUJQmC2nytr82z5vqn5gN3i3VAoY0OydV8=
github.com/Shopify/sarama v1.26.1/go.mod h1:NbSGBSSndYaIhRcBtY9V0U7AyH+x71bG668AuWys/yU=
github.com/Shopify/toxiproxy v2.1.4+incompatible/go.mod h1:OXgGpZ6Cli1/URJOF1DMxUHB2q5Ap20/P/eIdh4G0pI=
github.com/VictoriaMetrics/fastcache v1.12.2 h1:N0y9ASrJ0F6h0QaC3o6uJb3NIZ9VKLjCM7NQbSmF7WI=
Expand Down Expand Up @@ -52,8 +54,6 @@ github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM=
github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw=
github.com/bits-and-blooms/bitset v1.10.0 h1:ePXTeiPEazB5+opbv5fr8umg2R/1NlzgDsyepwsSr88=
github.com/bits-and-blooms/bitset v1.10.0/go.mod h1:7hO7Gc7Pp1vODcmWvKMRA9BNmbv6a/7QIWpPxHddWR8=
github.com/bloxapp/eth2-key-manager v1.4.1 h1:0VZxjG5YednaoQh82NQ1uvYlfdVYeTwYvH4qVOebJ3I=
github.com/bloxapp/eth2-key-manager v1.4.1/go.mod h1:m2DsvNCyLAAcgkN2JuroXUGpM61OeKSclmWuaRNW4Ss=
github.com/bradfitz/go-smtpd v0.0.0-20170404230938-deb6d6237625/go.mod h1:HYsPBTaaSFSlLx/70C2HPIMNZpVV8+vt/A+FMnYP11g=
github.com/bradfitz/gomemcache v0.0.0-20170208213004-1952afaa557d/go.mod h1:PmM6Mmwb0LSuEubjR8N7PtNe1KxZLtOUHtbeikc5h60=
github.com/btcsuite/btcd/btcec/v2 v2.3.4 h1:3EJjcN70HCu/mwqlUsGK8GcNVyLVxFDlWurTXGPFfiQ=
Expand Down

0 comments on commit 480c778

Please sign in to comment.