forked from cerc-io/laconicd-deprecated
conflicts
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
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"
|
||||
|
||||
"github.com/cosmos/ethermint/crypto/ethsecp256k1"
|
||||
)
|
||||
|
||||
// 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
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
package codec
|
||||
|
||||
import (
|
||||
codectypes "github.com/cosmos/cosmos-sdk/codec/types"
|
||||
cryptotypes "github.com/cosmos/cosmos-sdk/crypto/types"
|
||||
|
||||
"github.com/cosmos/ethermint/crypto/ethsecp256k1"
|
||||
)
|
||||
|
||||
// RegisterInterfaces register the Ethermint key concrete types.
|
||||
func RegisterInterfaces(registry codectypes.InterfaceRegistry) {
|
||||
registry.RegisterImplementations((*cryptotypes.PubKey)(nil), ðsecp256k1.PubKey{})
|
||||
}
|
||||
Reference in New Issue
Block a user