Documentation ¶
Index ¶
- func NewTFDenomStore(storeKey storetypes.StoreKey, cdc sdkcodec.BinaryCodec) collections.IndexedMap[storePKType, storeVType, IndexesTokenFactory]
- type IndexesTokenFactory
- type Keeper
- func (k Keeper) Burn(goCtx context.Context, txMsg *types.MsgBurn) (resp *types.MsgBurnResponse, err error)
- func (k Keeper) BurnNative(goCtx context.Context, msg *types.MsgBurnNative) (resp *types.MsgBurnNativeResponse, err error)
- func (k Keeper) ChangeAdmin(goCtx context.Context, txMsg *types.MsgChangeAdmin) (resp *types.MsgChangeAdminResponse, err error)
- func (k Keeper) CreateDenom(goCtx context.Context, txMsg *types.MsgCreateDenom) (resp *types.MsgCreateDenomResponse, err error)
- func (k Keeper) CreateModuleAccount(ctx sdk.Context)
- func (k Keeper) ExportGenesis(ctx sdk.Context) *types.GenesisState
- func (k Keeper) GetAuthority() string
- func (k Keeper) InitGenesis(ctx sdk.Context, genState types.GenesisState)
- func (k Keeper) Logger(ctx sdk.Context) log.Logger
- func (k Keeper) Mint(goCtx context.Context, txMsg *types.MsgMint) (resp *types.MsgMintResponse, err error)
- func (k Keeper) Querier() Querier
- func (k Keeper) QueryDenomInfo(ctx sdk.Context, denom string) (resp *types.QueryDenomInfoResponse, err error)
- func (k Keeper) QueryDenoms(ctx sdk.Context, creator string) []string
- func (k Keeper) SetDenomMetadata(goCtx context.Context, txMsg *types.MsgSetDenomMetadata) (resp *types.MsgSetDenomMetadataResponse, err error)
- func (k Keeper) UpdateModuleParams(goCtx context.Context, txMsg *types.MsgUpdateModuleParams) (resp *types.MsgUpdateModuleParamsResponse, err error)
- type Querier
- func (q Querier) DenomInfo(goCtx context.Context, req *types.QueryDenomInfoRequest) (resp *types.QueryDenomInfoResponse, err error)
- func (q Querier) Denoms(goCtx context.Context, req *types.QueryDenomsRequest) (resp *types.QueryDenomsResponse, err error)
- func (q Querier) Params(goCtx context.Context, _ *types.QueryParamsRequest) (*types.QueryParamsResponse, error)
- type StoreAPI
- func (api StoreAPI) GetAdmin(ctx sdk.Context, denom string) (string, error)
- func (api StoreAPI) GetDenomAuthorityMetadata(ctx sdk.Context, denom string) (tftypes.DenomAuthorityMetadata, error)
- func (api StoreAPI) HasCreator(ctx sdk.Context, creator string) bool
- func (api StoreAPI) HasDenom(ctx sdk.Context, denom tftypes.TFDenom) bool
- func (api StoreAPI) InsertDenom(ctx sdk.Context, denom tftypes.TFDenom) error
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewTFDenomStore ¶
func NewTFDenomStore( storeKey storetypes.StoreKey, cdc sdkcodec.BinaryCodec, ) collections.IndexedMap[storePKType, storeVType, IndexesTokenFactory]
NewTFDenomStore: Creates an indexed map over token facotry denoms indexed by creator address.
Types ¶
type IndexesTokenFactory ¶
type IndexesTokenFactory struct { // Creator MultiIndex: // - indexing key (IK): bech32 address of the creator of TF denom. // - primary key (PK): full TF denom of the form 'factory/{creator}/{subdenom}' // - value (V): struct version of TF denom with validate function Creator collections.MultiIndex[string, string, storeVType] }
IndexesTokenFactory: Abstraction for indexing over the TF denom store.
func (IndexesTokenFactory) IndexerList ¶
func (idxs IndexesTokenFactory) IndexerList() []collections.Indexer[string, storeVType]
type Keeper ¶
type Keeper struct { Store StoreAPI // contains filtered or unexported fields }
Keeper of this module maintains collections of feeshares for contracts registered to receive Nibiru Chain gas fees.
func NewKeeper ¶
func NewKeeper( storeKey storetypes.StoreKey, cdc codec.BinaryCodec, bk tftypes.BankKeeper, ak tftypes.AccountKeeper, communityPoolKeeper tftypes.CommunityPoolKeeper, authority string, ) Keeper
NewKeeper: creates a Keeper instance for the module.
func (Keeper) Burn ¶
func (k Keeper) Burn( goCtx context.Context, txMsg *types.MsgBurn, ) (resp *types.MsgBurnResponse, err error)
Burn: Message handler for the abci.Msg: MsgBurn
func (Keeper) BurnNative ¶
func (k Keeper) BurnNative( goCtx context.Context, msg *types.MsgBurnNative, ) (resp *types.MsgBurnNativeResponse, err error)
func (Keeper) ChangeAdmin ¶
func (k Keeper) ChangeAdmin( goCtx context.Context, txMsg *types.MsgChangeAdmin, ) (resp *types.MsgChangeAdminResponse, err error)
func (Keeper) CreateDenom ¶
func (k Keeper) CreateDenom( goCtx context.Context, txMsg *types.MsgCreateDenom, ) (resp *types.MsgCreateDenomResponse, err error)
func (Keeper) CreateModuleAccount ¶
CreateModuleAccount creates a module account with minting and burning capabilities This account isn't intended to store any coins, it purely mints and burns them on behalf of the admin of respective denoms, and sends to the relevant address.
func (Keeper) ExportGenesis ¶
func (k Keeper) ExportGenesis(ctx sdk.Context) *types.GenesisState
ExportGenesis returns the tokenfactory module's exported genesis.
func (Keeper) GetAuthority ¶
GetAuthority returns the x/feeshare module's authority.
func (Keeper) InitGenesis ¶
func (k Keeper) InitGenesis(ctx sdk.Context, genState types.GenesisState)
InitGenesis initializes the tokenfactory module's state from a provided genesis state.
func (Keeper) Mint ¶
func (k Keeper) Mint( goCtx context.Context, txMsg *types.MsgMint, ) (resp *types.MsgMintResponse, err error)
Mint: Message handler for the abci.Msg: MsgMint
func (Keeper) QueryDenomInfo ¶
func (k Keeper) QueryDenomInfo( ctx sdk.Context, denom string, ) (resp *types.QueryDenomInfoResponse, err error)
QueryDenomInfo: Returns bank and tokenfactory metadata for a registered denom.
func (Keeper) QueryDenoms ¶
QueryDenoms: Returns all registered denoms for a given creator.
func (Keeper) SetDenomMetadata ¶
func (k Keeper) SetDenomMetadata( goCtx context.Context, txMsg *types.MsgSetDenomMetadata, ) (resp *types.MsgSetDenomMetadataResponse, err error)
SetDenomMetadata: Message handler for the abci.Msg: MsgSetDenomMetadata
func (Keeper) UpdateModuleParams ¶
func (k Keeper) UpdateModuleParams( goCtx context.Context, txMsg *types.MsgUpdateModuleParams, ) (resp *types.MsgUpdateModuleParamsResponse, err error)
UpdateModuleParams: Message handler for the abci.Msg: MsgUpdateModuleParams
type Querier ¶
type Querier struct {
Keeper
}
Querier defines a wrapper around the keeper with functions for gRPC queries.
func (Querier) DenomInfo ¶
func (q Querier) DenomInfo( goCtx context.Context, req *types.QueryDenomInfoRequest, ) (resp *types.QueryDenomInfoResponse, err error)
DenomInfo: Returns bank and tokenfactory metadata for a registered denom.
func (Querier) Denoms ¶
func (q Querier) Denoms( goCtx context.Context, req *types.QueryDenomsRequest, ) (resp *types.QueryDenomsResponse, err error)
Denoms: Returns all registered denoms for a given creator.
func (Querier) Params ¶
func (q Querier) Params( goCtx context.Context, _ *types.QueryParamsRequest, ) (*types.QueryParamsResponse, error)
Params: Returns the module parameters.
type StoreAPI ¶
type StoreAPI struct { // Denoms: IndexedMap // - primary key (PK): Token factory denom (TFDenom) as a string // - value (V): TFDenom payload with validation // - indexers (I): Indexed by creator for easy querying Denoms collections.IndexedMap[storePKType, storeVType, IndexesTokenFactory] ModuleParams collections.Item[tftypes.ModuleParams] // contains filtered or unexported fields }
StoreAPI isolates the collections for the x/tokenfactory module. Ultimately, the denoms are registered in the x/bank module if valid. Because of this, a denom cannot be deleted once it exists.
The StoreAPI hides private methods to make the developer experience less error-prone when working on the module.
func (StoreAPI) GetDenomAuthorityMetadata ¶
func (api StoreAPI) GetDenomAuthorityMetadata( ctx sdk.Context, denom string, ) (tftypes.DenomAuthorityMetadata, error)
GetDenomAuthorityMetadata returns the admin (authority metadata) for a specific denom. This differs from the x/bank metadata.