-
Notifications
You must be signed in to change notification settings - Fork 30
/
codec.go
67 lines (57 loc) · 2 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
package types
import (
gogotypes "github.com/gogo/protobuf/types"
"github.com/cosmos/cosmos-sdk/codec"
"github.com/cosmos/cosmos-sdk/codec/types"
cryptocodec "github.com/cosmos/cosmos-sdk/crypto/codec"
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/cosmos/cosmos-sdk/types/msgservice"
govv1beta1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1beta1"
)
var (
amino = codec.NewLegacyAmino()
ModuleCdc = codec.NewAminoCodec(amino)
)
func init() {
RegisterLegacyAminoCodec(amino)
cryptocodec.RegisterCrypto(amino)
amino.Seal()
}
func RegisterLegacyAminoCodec(cdc *codec.LegacyAmino) {
cdc.RegisterConcrete(&MsgCreatePool{}, "irismod/farm/MsgCreatePool", nil)
cdc.RegisterConcrete(&MsgCreatePoolWithCommunityPool{}, "irismod/farm/MsgCreatePoolWithCommunityPool", nil)
cdc.RegisterConcrete(&MsgDestroyPool{}, "irismod/farm/MsgDestroyPool", nil)
cdc.RegisterConcrete(&MsgAdjustPool{}, "irismod/farm/MsgAdjustPool", nil)
cdc.RegisterConcrete(&MsgStake{}, "irismod/farm/MsgStake", nil)
cdc.RegisterConcrete(&MsgUnstake{}, "irismod/farm/MsgUnstake", nil)
cdc.RegisterConcrete(&MsgHarvest{}, "irismod/farm/MsgHarvest", nil)
}
// RegisterInterfaces registers the interface
func RegisterInterfaces(registry types.InterfaceRegistry) {
registry.RegisterImplementations(
(*sdk.Msg)(nil),
&MsgCreatePool{},
&MsgCreatePoolWithCommunityPool{},
&MsgDestroyPool{},
&MsgAdjustPool{},
&MsgStake{},
&MsgUnstake{},
&MsgHarvest{},
)
registry.RegisterImplementations(
(*govv1beta1.Content)(nil),
&CommunityPoolCreateFarmProposal{},
)
msgservice.RegisterMsgServiceDesc(registry, &_Msg_serviceDesc)
}
// MustMarshalPoolId return the poolId protobuf code
func MustMarshalPoolId(cdc codec.Codec, poolId string) []byte {
poolIdWrap := gogotypes.StringValue{Value: poolId}
return cdc.MustMarshal(&poolIdWrap)
}
// MustUnMarshalPoolId return the poolId
func MustUnMarshalPoolId(cdc codec.Codec, poolId []byte) string {
var poolIdWrap gogotypes.StringValue
cdc.MustUnmarshal(poolId, &poolIdWrap)
return poolIdWrap.Value
}