2022-12-16 09:48:38 +00:00
|
|
|
// Copyright 2021 Evmos Foundation
|
|
|
|
// This file is part of Evmos' Ethermint library.
|
|
|
|
//
|
|
|
|
// The Ethermint library is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// The Ethermint library is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
|
|
// along with the Ethermint library. If not, see https://github.com/evmos/ethermint/blob/main/LICENSE
|
2021-04-17 10:00:07 +00:00
|
|
|
package codec
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/cosmos/cosmos-sdk/client/keys"
|
|
|
|
"github.com/cosmos/cosmos-sdk/codec"
|
|
|
|
"github.com/cosmos/cosmos-sdk/codec/legacy"
|
|
|
|
cryptocodec "github.com/cosmos/cosmos-sdk/crypto/codec"
|
|
|
|
"github.com/cosmos/cosmos-sdk/crypto/keyring"
|
|
|
|
|
2022-06-19 09:43:41 +00:00
|
|
|
"github.com/evmos/ethermint/crypto/ethsecp256k1"
|
2021-04-17 10:00:07 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// RegisterCrypto registers all crypto dependency types with the provided Amino
|
|
|
|
// codec.
|
|
|
|
func RegisterCrypto(cdc *codec.LegacyAmino) {
|
|
|
|
cdc.RegisterConcrete(ðsecp256k1.PubKey{},
|
|
|
|
ethsecp256k1.PubKeyName, nil)
|
|
|
|
cdc.RegisterConcrete(ðsecp256k1.PrivKey{},
|
|
|
|
ethsecp256k1.PrivKeyName, nil)
|
|
|
|
|
|
|
|
keyring.RegisterLegacyAminoCodec(cdc)
|
|
|
|
cryptocodec.RegisterCrypto(cdc)
|
|
|
|
|
|
|
|
// NOTE: update SDK's amino codec to include the ethsecp256k1 keys.
|
|
|
|
// DO NOT REMOVE unless deprecated on the SDK.
|
|
|
|
legacy.Cdc = cdc
|
|
|
|
keys.KeysCdc = cdc
|
|
|
|
}
|