package nft import ( "cosmossdk.io/core/registry" coretransaction "cosmossdk.io/core/transaction" "github.com/cosmos/cosmos-sdk/types/msgservice" ) // RegisterInterfaces registers the interfaces types with the interface registry. func RegisterInterfaces(registrar registry.InterfaceRegistrar) { registrar.RegisterImplementations((*coretransaction.Msg)(nil), &MsgSend{}, ) msgservice.RegisterMsgServiceDesc(registrar, &_Msg_serviceDesc) }