Documentation ¶
Index ¶
- Constants
- Variables
- func InitGenesis(ctx sdk.Context, keeper Keeper, data GenesisState)
- func ValidateGenesis(data GenesisState) error
- type AppModule
- func (AppModule) BeginBlock(_ sdk.Context, _ abci.RequestBeginBlock)
- func (AppModule) EndBlock(_ sdk.Context, _ abci.RequestEndBlock) []abci.ValidatorUpdate
- func (am AppModule) ExportGenesis(ctx sdk.Context) json.RawMessage
- func (AppModule) GenerateGenesisState(simState *module.SimulationState)
- func (am AppModule) InitGenesis(ctx sdk.Context, data json.RawMessage) []abci.ValidatorUpdate
- func (AppModule) Name() string
- func (am AppModule) NewHandler() sdk.Handler
- func (am AppModule) NewQuerierHandler() sdk.Querier
- func (AppModule) ProposalContents(module.SimulationState) []simulation.WeightedProposalContent
- func (AppModule) QuerierRoute() string
- func (AppModule) RandomizedParams(*rand.Rand) []simulation.ParamChange
- func (am AppModule) RegisterInvariants(_ sdk.InvariantRegistry)
- func (AppModule) RegisterStoreDecoder(sdk.StoreDecoderRegistry)
- func (AppModule) Route() string
- func (AppModule) WeightedOperations(module.SimulationState) []simulation.WeightedOperation
- type AppModuleBasic
- func (AppModuleBasic) DefaultGenesis() json.RawMessage
- func (AppModuleBasic) GetQueryCmd(cdc *codec.Codec) *cobra.Command
- func (AppModuleBasic) GetTxCmd(cdc *codec.Codec) *cobra.Command
- func (AppModuleBasic) GetUpgradeHandler(version string) upgrade.UpgradeHandler
- func (AppModuleBasic) Name() string
- func (AppModuleBasic) RegisterCodec(cdc *codec.Codec)
- func (AppModuleBasic) RegisterRESTRoutes(ctx context.CLIContext, rtr *mux.Router)
- func (AppModuleBasic) ValidateGenesis(bz json.RawMessage) error
- type Coins
- type Collection
- type FT
- type GenesisState
- type Keeper
- type MintNFTParam
- type MsgApproveCollection
- type MsgAttach
- type MsgAttachFrom
- type MsgBurnFT
- type MsgBurnFTFrom
- type MsgBurnNFT
- type MsgBurnNFTFrom
- type MsgCreateCollection
- type MsgDetach
- type MsgDetachFrom
- type MsgDisapproveCollection
- type MsgGrantPermission
- type MsgIssueFT
- type MsgIssueNFT
- type MsgMintFT
- type MsgMintNFT
- type MsgModify
- type MsgRevokePermission
- type MsgTransferFT
- type MsgTransferFTFrom
- type MsgTransferNFT
- type MsgTransferNFTFrom
- type NFT
- type Permission
- type Permissions
- type Token
- type TokenType
- type Tokens
Constants ¶
View Source
const ( ModuleName = types.ModuleName StoreKey = types.StoreKey RouterKey = types.RouterKey DefaultParamspace = types.DefaultParamspace EncodeRouterKey = types.EncodeRouterKey )
Variables ¶
View Source
var ( NewMsgCreateCollection = types.NewMsgCreateCollection NewMsgIssueFT = types.NewMsgIssueFT NewMsgIssueNFT = types.NewMsgIssueNFT NewMsgMintNFT = types.NewMsgMintNFT NewMsgBurnNFT = types.NewMsgBurnNFT NewMsgBurnNFTFrom = types.NewMsgBurnNFTFrom NewMsgBurnFTFrom = types.NewMsgBurnFTFrom NewMsgMintFT = types.NewMsgMintFT NewMsgBurnFT = types.NewMsgBurnFT NewMsgGrantPermission = types.NewMsgGrantPermission NewMsgRevokePermission = types.NewMsgRevokePermission NewMsgModify = types.NewMsgModify NewChangesWithMap = types.NewChangesWithMap NewMsgTransferFT = types.NewMsgTransferFT NewMsgTransferNFT = types.NewMsgTransferNFT NewMsgTransferFTFrom = types.NewMsgTransferFTFrom NewMsgTransferNFTFrom = types.NewMsgTransferNFTFrom NewMsgAttach = types.NewMsgAttach NewMsgDetach = types.NewMsgDetach NewMsgAttachFrom = types.NewMsgAttachFrom NewMsgDetachFrom = types.NewMsgDetachFrom NewMsgApprove = types.NewMsgApprove NewMsgDisapprove = types.NewMsgDisapprove NewMintNFTParam = types.NewMintNFTParam NewCoin = types.NewCoin NewPermissions = types.NewPermissions NewMintPermission = types.NewMintPermission NewBurnPermission = types.NewBurnPermission NewIssuePermission = types.NewIssuePermission NewModifyPermission = types.NewModifyPermission ModuleCdc = types.ModuleCdc RegisterCodec = types.RegisterCodec NewKeeper = keeper.NewKeeper NewQuerier = querier.NewQuerier )
Functions ¶
func InitGenesis ¶
func InitGenesis(ctx sdk.Context, keeper Keeper, data GenesisState)
func ValidateGenesis ¶
func ValidateGenesis(data GenesisState) error
Types ¶
type AppModule ¶
type AppModule struct { AppModuleBasic // contains filtered or unexported fields }
___________________________ app module
func NewAppModule ¶
NewAppModule creates a new AppModule object
func (AppModule) BeginBlock ¶
func (AppModule) BeginBlock(_ sdk.Context, _ abci.RequestBeginBlock)
module begin-block
func (AppModule) EndBlock ¶
func (AppModule) EndBlock(_ sdk.Context, _ abci.RequestEndBlock) []abci.ValidatorUpdate
module end-block
func (AppModule) ExportGenesis ¶
func (am AppModule) ExportGenesis(ctx sdk.Context) json.RawMessage
module export genesis
func (AppModule) GenerateGenesisState ¶
func (AppModule) GenerateGenesisState(simState *module.SimulationState)
func (AppModule) InitGenesis ¶
func (am AppModule) InitGenesis(ctx sdk.Context, data json.RawMessage) []abci.ValidatorUpdate
module init-genesis
func (AppModule) NewQuerierHandler ¶
module querier
func (AppModule) ProposalContents ¶
func (AppModule) ProposalContents(module.SimulationState) []simulation.WeightedProposalContent
func (AppModule) RandomizedParams ¶
func (AppModule) RandomizedParams(*rand.Rand) []simulation.ParamChange
func (AppModule) RegisterInvariants ¶
func (am AppModule) RegisterInvariants(_ sdk.InvariantRegistry)
register invariants TODO: should this module need invariants?
func (AppModule) RegisterStoreDecoder ¶
func (AppModule) RegisterStoreDecoder(sdk.StoreDecoderRegistry)
func (AppModule) WeightedOperations ¶
func (AppModule) WeightedOperations(module.SimulationState) []simulation.WeightedOperation
type AppModuleBasic ¶
type AppModuleBasic struct{}
app module basics object
func (AppModuleBasic) DefaultGenesis ¶
func (AppModuleBasic) DefaultGenesis() json.RawMessage
default genesis state
func (AppModuleBasic) GetQueryCmd ¶
func (AppModuleBasic) GetQueryCmd(cdc *codec.Codec) *cobra.Command
get the root query command of this module
func (AppModuleBasic) GetTxCmd ¶
func (AppModuleBasic) GetTxCmd(cdc *codec.Codec) *cobra.Command
get the root tx command of this module
func (AppModuleBasic) GetUpgradeHandler ¶
func (AppModuleBasic) GetUpgradeHandler(version string) upgrade.UpgradeHandler
func (AppModuleBasic) RegisterCodec ¶
func (AppModuleBasic) RegisterCodec(cdc *codec.Codec)
register module codec
func (AppModuleBasic) RegisterRESTRoutes ¶
func (AppModuleBasic) RegisterRESTRoutes(ctx context.CLIContext, rtr *mux.Router)
register rest routes
func (AppModuleBasic) ValidateGenesis ¶
func (AppModuleBasic) ValidateGenesis(bz json.RawMessage) error
module validate genesis
type Collection ¶
type Collection = types.BaseCollection
type GenesisState ¶
func DefaultGenesisState ¶
func DefaultGenesisState() GenesisState
func ExportGenesis ¶
func ExportGenesis(ctx sdk.Context, keeper Keeper) GenesisState
func NewGenesisState ¶
func NewGenesisState(params types.Params, tokens []Token) GenesisState
type MintNFTParam ¶
type MintNFTParam = types.MintNFTParam
type MsgApproveCollection ¶
type MsgApproveCollection = types.MsgApprove
type MsgAttachFrom ¶
type MsgAttachFrom = types.MsgAttachFrom
type MsgBurnFTFrom ¶
type MsgBurnFTFrom = types.MsgBurnFTFrom
type MsgBurnNFT ¶
type MsgBurnNFT = types.MsgBurnNFT
type MsgBurnNFTFrom ¶
type MsgBurnNFTFrom = types.MsgBurnNFTFrom
type MsgCreateCollection ¶
type MsgCreateCollection = types.MsgCreateCollection
type MsgDetachFrom ¶
type MsgDetachFrom = types.MsgDetachFrom
type MsgDisapproveCollection ¶
type MsgDisapproveCollection = types.MsgDisapprove
type MsgGrantPermission ¶
type MsgGrantPermission = types.MsgGrantPermission
type MsgIssueFT ¶
type MsgIssueFT = types.MsgIssueFT
type MsgIssueNFT ¶
type MsgIssueNFT = types.MsgIssueNFT
type MsgMintNFT ¶
type MsgMintNFT = types.MsgMintNFT
type MsgRevokePermission ¶
type MsgRevokePermission = types.MsgRevokePermission
type MsgTransferFT ¶
type MsgTransferFT = types.MsgTransferFT
type MsgTransferFTFrom ¶
type MsgTransferFTFrom = types.MsgTransferFTFrom
type MsgTransferNFT ¶
type MsgTransferNFT = types.MsgTransferNFT
type MsgTransferNFTFrom ¶
type MsgTransferNFTFrom = types.MsgTransferNFTFrom
type Permission ¶
type Permission = types.Permission
type Permissions ¶
type Permissions = types.Permissions
Click to show internal directories.
Click to hide internal directories.