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-06-04 13:45:37 +00:00
|
|
|
package codec
|
2020-04-22 19:26:01 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/cosmos/cosmos-sdk/codec"
|
2021-04-17 10:00:07 +00:00
|
|
|
codectypes "github.com/cosmos/cosmos-sdk/codec/types"
|
|
|
|
"github.com/cosmos/cosmos-sdk/std"
|
2020-04-22 19:26:01 +00:00
|
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
|
|
|
2022-06-19 09:43:41 +00:00
|
|
|
cryptocodec "github.com/evmos/ethermint/crypto/codec"
|
|
|
|
ethermint "github.com/evmos/ethermint/types"
|
2020-04-22 19:26:01 +00:00
|
|
|
)
|
|
|
|
|
2021-04-17 10:00:07 +00:00
|
|
|
// RegisterLegacyAminoCodec registers Interfaces from types, crypto, and SDK std.
|
|
|
|
func RegisterLegacyAminoCodec(cdc *codec.LegacyAmino) {
|
|
|
|
sdk.RegisterLegacyAminoCodec(cdc)
|
|
|
|
cryptocodec.RegisterCrypto(cdc)
|
2021-08-23 12:51:24 +00:00
|
|
|
codec.RegisterEvidences(cdc)
|
2021-04-17 10:00:07 +00:00
|
|
|
}
|
2020-05-07 15:58:13 +00:00
|
|
|
|
2021-04-17 10:00:07 +00:00
|
|
|
// RegisterInterfaces registers Interfaces from types, crypto, and SDK std.
|
|
|
|
func RegisterInterfaces(interfaceRegistry codectypes.InterfaceRegistry) {
|
|
|
|
std.RegisterInterfaces(interfaceRegistry)
|
|
|
|
cryptocodec.RegisterInterfaces(interfaceRegistry)
|
|
|
|
ethermint.RegisterInterfaces(interfaceRegistry)
|
2020-04-22 19:26:01 +00:00
|
|
|
}
|