2024-02-15 07:08:32 +00:00
|
|
|
package registry
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/cosmos/cosmos-sdk/codec/types"
|
|
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
|
|
"github.com/cosmos/cosmos-sdk/types/msgservice"
|
|
|
|
)
|
|
|
|
|
|
|
|
func RegisterInterfaces(registry types.InterfaceRegistry) {
|
2024-02-16 06:40:42 +00:00
|
|
|
registry.RegisterImplementations((*sdk.Msg)(nil),
|
|
|
|
&MsgSetName{},
|
|
|
|
&MsgReserveAuthority{},
|
2024-03-07 11:25:15 +00:00
|
|
|
&MsgDeleteName{},
|
2024-02-16 06:40:42 +00:00
|
|
|
&MsgSetAuthorityBond{},
|
2024-02-15 07:08:32 +00:00
|
|
|
|
2024-02-16 06:40:42 +00:00
|
|
|
&MsgSetRecord{},
|
|
|
|
&MsgRenewRecord{},
|
|
|
|
&MsgAssociateBond{},
|
|
|
|
&MsgDissociateBond{},
|
|
|
|
&MsgDissociateRecords{},
|
2024-02-26 12:56:11 +00:00
|
|
|
&MsgReassociateRecords{},
|
2024-02-16 06:40:42 +00:00
|
|
|
)
|
2024-02-15 07:08:32 +00:00
|
|
|
|
|
|
|
msgservice.RegisterMsgServiceDesc(registry, &_Msg_serviceDesc)
|
|
|
|
}
|