-
Notifications
You must be signed in to change notification settings - Fork 1
/
codec.go
35 lines (30 loc) · 959 Bytes
/
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
package did
import ( // this line is used by starport scaffolding # 1
"github.com/cosmos/cosmos-sdk/codec"
cdctypes "github.com/cosmos/cosmos-sdk/codec/types"
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/cosmos/cosmos-sdk/types/msgservice"
)
//nolint
func RegisterCodec(cdc *codec.LegacyAmino) {
// this line is used by starport scaffolding # 2
}
func RegisterInterfaces(registry cdctypes.InterfaceRegistry) {
// this line is used by starport scaffolding # 3
registry.RegisterImplementations((*sdk.Msg)(nil),
&MsgCreateDidDocument{},
&MsgUpdateDidDocument{},
&MsgAddVerification{},
&MsgSetVerificationRelationships{},
&MsgRevokeVerification{},
&MsgAddService{},
&MsgDeleteService{},
&MsgAddController{},
&MsgDeleteController{},
)
msgservice.RegisterMsgServiceDesc(registry, &_Msg_serviceDesc)
}
var (
// ModuleCdc codec used by the module (protobuf)
ModuleCdc = codec.NewProtoCodec(cdctypes.NewInterfaceRegistry())
)