Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewMsgServerImpl ¶
NewMsgServerImpl returns an implementation of the mint MsgServer interface for the provided Keeper.
Types ¶
type Keeper ¶
type Keeper struct { AuthKeeper authtypes.AccountKeeper Schema collections.Schema NFTClassID collections.Sequence ClassOwners collections.Map[string, []byte] // contains filtered or unexported fields }
func NewKeeper ¶
func NewKeeper( cdc codec.BinaryCodec, storeService storetypes.KVStoreService, authKeeper authtypes.AccountKeeper, nftKeeper nftkeeper.Keeper, authority string, ) Keeper
func (Keeper) GetAuthority ¶
GetAuthority returns the x/oracle module's authority.
type MessageHandlerFunc ¶
type MessageHandlerFunc func(ctx sdk.Context, contractAddr sdk.AccAddress, contractIBCPortID string, msg wasmvmtypes.CosmosMsg) (events []sdk.Event, data [][]byte, msgResponses [][]*codectypes.Any, err error)
MessageHandlerFunc is a helper to construct a function based message handler.
func NewMintNFTMessageHandler ¶
func NewMintNFTMessageHandler(onftKeeper Keeper) MessageHandlerFunc
func (MessageHandlerFunc) DispatchMsg ¶
func (m MessageHandlerFunc) DispatchMsg(ctx sdk.Context, contractAddr sdk.AccAddress, contractIBCPortID string, msg wasmvmtypes.CosmosMsg) (events []sdk.Event, data [][]byte, msgResponses [][]*codectypes.Any, err error)
DispatchMsg delegates dispatching of provided message into the MessageHandlerFunc.
Click to show internal directories.
Click to hide internal directories.