diff --git a/CHANGELOG.md b/CHANGELOG.md index 3702c855e2..7241b10d53 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -84,6 +84,7 @@ Ref: https://keepachangelog.com/en/1.0.0/ ### Bug Fixes +- (app) [#1165](https://github.com/evmos/evmos/pull/1165) Update Ledger supported algorithms to only consist of `EthSecp256k1` - (cmd) [#1172](https://github.com/evmos/evmos/pull/1172) Update default node snapshot interval to `5000` - (cmd) [\#1120](https://github.com/evmos/evmos/pull/1120) Fix snapshot configuration - (app) [\#1118](https://github.com/evmos/evmos/pull/1118) Setup gRPC node service with the application. diff --git a/crypto/keyring/options.go b/crypto/keyring/options.go index e6e2712a12..fbe419fe35 100644 --- a/crypto/keyring/options.go +++ b/crypto/keyring/options.go @@ -5,7 +5,6 @@ import ( cosmosLedger "github.com/cosmos/cosmos-sdk/crypto/ledger" "github.com/cosmos/cosmos-sdk/crypto/types" - sdkhd "github.com/cosmos/cosmos-sdk/crypto/hd" "github.com/evmos/ethermint/crypto/ethsecp256k1" "github.com/evmos/ethermint/crypto/hd" "github.com/evmos/evmos-ledger-go/ledger" @@ -21,7 +20,7 @@ var ( // SupportedAlgorithmsLedger defines the list of signing algorithms used on Evmos for the Ledger device: // - secp256k1 (in order to comply with Cosmos SDK) // The Ledger derivation function is responsible for all signing and address generation. - SupportedAlgorithmsLedger = keyring.SigningAlgoList{sdkhd.Secp256k1} + SupportedAlgorithmsLedger = keyring.SigningAlgoList{hd.EthSecp256k1} // LedgerDerivation defines the Evmos Ledger Go derivation (Ethereum app with EIP-712 signing) LedgerDerivation = ledger.EvmosLedgerDerivation() // CreatePubkey uses the ethsecp256k1 pubkey with Ethereum address generation and keccak hashing