- makefile clean up - replace cosmos-sdk - upgrade cosmos-sdk to v1.0.0 - replace cometbft refactor cli + app init - rm crisis module - use custom address codec - app setup, depinject fixes - improve errors
26 lines
568 B
Go
26 lines
568 B
Go
package registry
|
|
|
|
import (
|
|
"cosmossdk.io/core/registry"
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
"github.com/cosmos/cosmos-sdk/types/msgservice"
|
|
)
|
|
|
|
func RegisterInterfaces(registry registry.InterfaceRegistrar) {
|
|
registry.RegisterImplementations((*sdk.Msg)(nil),
|
|
&MsgSetName{},
|
|
&MsgReserveAuthority{},
|
|
&MsgDeleteName{},
|
|
&MsgSetAuthorityBond{},
|
|
|
|
&MsgSetRecord{},
|
|
&MsgRenewRecord{},
|
|
&MsgAssociateBond{},
|
|
&MsgDissociateBond{},
|
|
&MsgDissociateRecords{},
|
|
&MsgReassociateRecords{},
|
|
)
|
|
|
|
msgservice.RegisterMsgServiceDesc(registry, &_Msg_serviceDesc)
|
|
}
|