forked from CosmWasm/wasmd
-
Notifications
You must be signed in to change notification settings - Fork 9
/
codec.go
54 lines (45 loc) · 1.84 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
package types
import (
"github.com/Finschia/finschia-sdk/codec"
"github.com/Finschia/finschia-sdk/codec/legacy"
"github.com/Finschia/finschia-sdk/codec/types"
cryptocodec "github.com/Finschia/finschia-sdk/crypto/codec"
sdk "github.com/Finschia/finschia-sdk/types"
"github.com/Finschia/finschia-sdk/types/msgservice"
authzcodec "github.com/Finschia/finschia-sdk/x/authz/codec"
govcodec "github.com/Finschia/finschia-sdk/x/gov/codec"
govtypes "github.com/Finschia/finschia-sdk/x/gov/types"
wasmTypes "github.com/Finschia/wasmd/x/wasm/types"
)
// RegisterLegacyAminoCodec registers the account types and interface
func RegisterLegacyAminoCodec(cdc *codec.LegacyAmino) { //nolint:staticcheck
legacy.RegisterAminoMsg(cdc, &MsgStoreCodeAndInstantiateContract{}, "wasm/MsgStoreCodeAndInstantiateContract")
cdc.RegisterConcrete(&DeactivateContractProposal{}, "wasm/DeactivateContractProposal", nil)
cdc.RegisterConcrete(&ActivateContractProposal{}, "wasm/ActivateContractProposal", nil)
}
func RegisterInterfaces(registry types.InterfaceRegistry) {
wasmTypes.RegisterInterfaces(registry)
registry.RegisterImplementations(
(*sdk.Msg)(nil),
&MsgStoreCodeAndInstantiateContract{},
)
registry.RegisterImplementations(
(*govtypes.Content)(nil),
&DeactivateContractProposal{},
&ActivateContractProposal{},
)
msgservice.RegisterMsgServiceDesc(registry, &_Msg_serviceDesc)
}
var (
amino = codec.NewLegacyAmino()
ModuleCdc = codec.NewAminoCodec(amino)
)
func init() {
RegisterLegacyAminoCodec(amino)
cryptocodec.RegisterCrypto(amino)
sdk.RegisterLegacyAminoCodec(amino)
// Register all Amino interfaces and concrete types on the authz and gov Amino codec so that this can later be
// used to properly serialize MsgGrant, MsgExec and MsgSubmitProposal instances
RegisterLegacyAminoCodec(authzcodec.Amino)
RegisterLegacyAminoCodec(govcodec.Amino)
}