-
Notifications
You must be signed in to change notification settings - Fork 30
/
codec.go
80 lines (65 loc) · 2.25 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
68
69
70
71
72
73
74
75
76
77
78
79
80
package types
// DONTCOVER
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"
"github.com/irisnet/irismod/modules/nft/exported"
)
var (
amino = codec.NewLegacyAmino()
ModuleCdc = codec.NewAminoCodec(amino)
)
func init() {
RegisterLegacyAminoCodec(amino)
cryptocodec.RegisterCrypto(amino)
amino.Seal()
}
// RegisterLegacyAminoCodec concrete types on codec
func RegisterLegacyAminoCodec(cdc *codec.LegacyAmino) {
cdc.RegisterConcrete(&MsgIssueDenom{}, "irismod/nft/MsgIssueDenom", nil)
cdc.RegisterConcrete(&MsgTransferNFT{}, "irismod/nft/MsgTransferNFT", nil)
cdc.RegisterConcrete(&MsgEditNFT{}, "irismod/nft/MsgEditNFT", nil)
cdc.RegisterConcrete(&MsgMintNFT{}, "irismod/nft/MsgMintNFT", nil)
cdc.RegisterConcrete(&MsgBurnNFT{}, "irismod/nft/MsgBurnNFT", nil)
cdc.RegisterInterface((*exported.NFT)(nil), nil)
cdc.RegisterConcrete(&BaseNFT{}, "irismod/nft/BaseNFT", nil)
}
func RegisterInterfaces(registry types.InterfaceRegistry) {
registry.RegisterImplementations((*sdk.Msg)(nil),
&MsgIssueDenom{},
&MsgTransferNFT{},
&MsgEditNFT{},
&MsgMintNFT{},
&MsgBurnNFT{},
)
registry.RegisterImplementations((*exported.NFT)(nil),
&BaseNFT{},
)
msgservice.RegisterMsgServiceDesc(registry, &_Msg_serviceDesc)
}
// return supply protobuf code
func MustMarshalSupply(cdc codec.Marshaler, supply uint64) []byte {
supplyWrap := gogotypes.UInt64Value{Value: supply}
return cdc.MustMarshalBinaryBare(&supplyWrap)
}
// return th supply
func MustUnMarshalSupply(cdc codec.Marshaler, value []byte) uint64 {
var supplyWrap gogotypes.UInt64Value
cdc.MustUnmarshalBinaryBare(value, &supplyWrap)
return supplyWrap.Value
}
// return the tokenID protobuf code
func MustMarshalTokenID(cdc codec.Marshaler, tokenID string) []byte {
tokenIDWrap := gogotypes.StringValue{Value: tokenID}
return cdc.MustMarshalBinaryBare(&tokenIDWrap)
}
// return th tokenID
func MustUnMarshalTokenID(cdc codec.Marshaler, value []byte) string {
var tokenIDWrap gogotypes.StringValue
cdc.MustUnmarshalBinaryBare(value, &tokenIDWrap)
return tokenIDWrap.Value
}