Documentation ¶
Index ¶
- func NewMsgServerImpl(keeper Keeper) types.MsgServer
- type Keeper
- func (k Keeper) GetMintDenom(ctx sdk.Context) (val types.MintDenom, found bool)
- func (k Keeper) GetMintedPool(ctx sdk.Context) (val types.MintedPool, found bool)
- func (k Keeper) GetParams(ctx sdk.Context) types.Params
- func (k Keeper) GetStartBlock(ctx sdk.Context) (val types.StartBlock, found bool)
- func (k Keeper) Logger(ctx sdk.Context) log.Logger
- func (k Keeper) MintDenom(c context.Context, req *types.QueryGetMintDenomRequest) (*types.QueryGetMintDenomResponse, error)
- func (k Keeper) MintedPool(c context.Context, req *types.QueryGetMintedPoolRequest) (*types.QueryGetMintedPoolResponse, error)
- func (k Keeper) Params(c context.Context, req *types.QueryParamsRequest) (*types.QueryParamsResponse, error)
- func (k Keeper) RemoveMintDenom(ctx sdk.Context)
- func (k Keeper) RemoveMintedPool(ctx sdk.Context)
- func (k Keeper) RemoveStartBlock(ctx sdk.Context)
- func (k Keeper) SetMintDenom(ctx sdk.Context, mintDenom types.MintDenom)
- func (k Keeper) SetMintedPool(ctx sdk.Context, mintedPool types.MintedPool)
- func (k Keeper) SetParams(ctx sdk.Context, params types.Params)
- func (k Keeper) SetStartBlock(ctx sdk.Context, startBlock types.StartBlock)
- func (k Keeper) StartBlock(c context.Context, req *types.QueryGetStartBlockRequest) (*types.QueryGetStartBlockResponse, error)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewMsgServerImpl ¶
NewMsgServerImpl returns an implementation of the MsgServer interface for the provided Keeper.
Types ¶
type Keeper ¶
type Keeper struct {
// contains filtered or unexported fields
}
func NewKeeper ¶
func NewKeeper( cdc codec.BinaryCodec, storeKey, memKey storetypes.StoreKey, ps paramtypes.Subspace, accountKeeper types.AccountKeeper, bankKeeper types.BankKeeper, ) *Keeper
func (Keeper) GetMintDenom ¶
GetMintDenom returns mintDenom
func (Keeper) GetMintedPool ¶
GetMintedPool returns mintedPool
func (Keeper) GetStartBlock ¶
GetStartBlock returns startBlock
func (Keeper) MintDenom ¶
func (k Keeper) MintDenom(c context.Context, req *types.QueryGetMintDenomRequest) (*types.QueryGetMintDenomResponse, error)
func (Keeper) MintedPool ¶
func (k Keeper) MintedPool(c context.Context, req *types.QueryGetMintedPoolRequest) (*types.QueryGetMintedPoolResponse, error)
func (Keeper) Params ¶
func (k Keeper) Params(c context.Context, req *types.QueryParamsRequest) (*types.QueryParamsResponse, error)
func (Keeper) RemoveMintDenom ¶
RemoveMintDenom removes mintDenom from the store
func (Keeper) RemoveMintedPool ¶
RemoveMintedPool removes mintedPool from the store
func (Keeper) RemoveStartBlock ¶
RemoveStartBlock removes startBlock from the store
func (Keeper) SetMintDenom ¶
SetMintDenom set mintDenom in the store
func (Keeper) SetMintedPool ¶
func (k Keeper) SetMintedPool(ctx sdk.Context, mintedPool types.MintedPool)
SetMintedPool set mintedPool in the store
func (Keeper) SetStartBlock ¶
func (k Keeper) SetStartBlock(ctx sdk.Context, startBlock types.StartBlock)
SetStartBlock set startBlock in the store
func (Keeper) StartBlock ¶
func (k Keeper) StartBlock(c context.Context, req *types.QueryGetStartBlockRequest) (*types.QueryGetStartBlockResponse, error)
Click to show internal directories.
Click to hide internal directories.