2020-03-05 06:32:43 -08:00
|
|
|
package std
|
2020-02-18 04:50:13 -08:00
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/cosmos/cosmos-sdk/codec"
|
2020-05-05 07:28:20 -07:00
|
|
|
"github.com/cosmos/cosmos-sdk/codec/types"
|
2020-06-04 03:38:24 -07:00
|
|
|
cryptocodec "github.com/cosmos/cosmos-sdk/crypto/codec"
|
2020-02-18 04:50:13 -08:00
|
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
2020-07-02 06:08:44 -07:00
|
|
|
vesting "github.com/cosmos/cosmos-sdk/x/auth/vesting/types"
|
2020-02-18 04:50:13 -08:00
|
|
|
)
|
|
|
|
|
2020-08-10 12:41:21 -07:00
|
|
|
func RegisterCodec(cdc *codec.LegacyAmino) {
|
2020-02-18 04:50:13 -08:00
|
|
|
vesting.RegisterCodec(cdc)
|
|
|
|
sdk.RegisterCodec(cdc)
|
2020-06-04 03:38:24 -07:00
|
|
|
cryptocodec.RegisterCrypto(cdc)
|
2020-02-18 04:50:13 -08:00
|
|
|
}
|
2020-05-20 12:21:00 -07:00
|
|
|
|
|
|
|
// RegisterInterfaces registers Interfaces from sdk/types and vesting
|
|
|
|
func RegisterInterfaces(interfaceRegistry types.InterfaceRegistry) {
|
|
|
|
sdk.RegisterInterfaces(interfaceRegistry)
|
|
|
|
vesting.RegisterInterfaces(interfaceRegistry)
|
|
|
|
}
|