Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> Co-authored-by: Hieu Vu <72878483+hieuvubk@users.noreply.github.com>
17 lines
449 B
Go
17 lines
449 B
Go
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)
|
|
}
|