-
Notifications
You must be signed in to change notification settings - Fork 4
/
codec.go
40 lines (35 loc) · 1.22 KB
/
codec.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package types
import (
"github.com/cosmos/cosmos-sdk/codec"
cdctypes "github.com/cosmos/cosmos-sdk/codec/types"
govtypes "github.com/cosmos/cosmos-sdk/x/gov/types"
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/cosmos/cosmos-sdk/types/msgservice"
)
var (
amino = codec.NewLegacyAmino()
ModuleCdc = codec.NewAminoCodec(amino)
)
func RegisterCodec(cdc *codec.LegacyAmino) {
cdc.RegisterConcrete(MsgRegisterZone{}, "icacontrol/MsgRegisterZone", nil)
cdc.RegisterConcrete(MsgIcaDelegate{}, "icacontrol/MsgIcaDelegate", nil)
cdc.RegisterConcrete(MsgIcaUndelegate{}, "icacontrol/MsgIcaUndelegate", nil)
cdc.RegisterConcrete(MsgIcaTransfer{}, "icacontrol/MsgIcaTransfer", nil)
cdc.RegisterConcrete(MsgIcaAutoStaking{}, "icacontrol/MsgIcaAutoStaking", nil)
cdc.RegisterConcrete(ZoneRegisterProposal{}, "icacontrol/ZoneRegisterProposal", nil)
}
func RegisterInterfaces(registry cdctypes.InterfaceRegistry) {
msgservice.RegisterMsgServiceDesc(registry, &_Msg_serviceDesc)
registry.RegisterImplementations(
(*sdk.Msg)(nil),
&MsgRegisterZone{},
&MsgIcaDelegate{},
&MsgIcaUndelegate{},
&MsgIcaTransfer{},
&MsgIcaAutoStaking{},
)
registry.RegisterImplementations(
(*govtypes.Content)(nil),
&ZoneRegisterProposal{},
)
}