6000ab2098
* chore: un-fork from cosmos * rm LoC
25 lines
808 B
Go
25 lines
808 B
Go
package codec
|
|
|
|
import (
|
|
"github.com/cosmos/cosmos-sdk/codec"
|
|
codectypes "github.com/cosmos/cosmos-sdk/codec/types"
|
|
"github.com/cosmos/cosmos-sdk/std"
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
|
|
cryptocodec "github.com/tharsis/ethermint/crypto/codec"
|
|
ethermint "github.com/tharsis/ethermint/types"
|
|
)
|
|
|
|
// RegisterLegacyAminoCodec registers Interfaces from types, crypto, and SDK std.
|
|
func RegisterLegacyAminoCodec(cdc *codec.LegacyAmino) {
|
|
sdk.RegisterLegacyAminoCodec(cdc)
|
|
cryptocodec.RegisterCrypto(cdc)
|
|
}
|
|
|
|
// RegisterInterfaces registers Interfaces from types, crypto, and SDK std.
|
|
func RegisterInterfaces(interfaceRegistry codectypes.InterfaceRegistry) {
|
|
std.RegisterInterfaces(interfaceRegistry)
|
|
cryptocodec.RegisterInterfaces(interfaceRegistry)
|
|
ethermint.RegisterInterfaces(interfaceRegistry)
|
|
}
|