Documentation ¶
Index ¶
- Constants
- func GetStateKey(state types.State) string
- func NewMsgServerImpl(keeper Keeper) types.MsgServer
- type Keeper
- func (k Keeper) BurnCoinsForSpecifiedModuleAccount(ctx sdk.Context, coins sdk.Coins, moduleAccountName string) error
- func (k Keeper) GetAccountAddressModuleAccount(ctx sdk.Context, accountName string) sdk.AccAddress
- func (k Keeper) GetAccountCoins(ctx sdk.Context, account sdk.AccAddress) sdk.Coins
- func (k Keeper) GetAccountCoinsForModuleAccount(ctx sdk.Context, accountName string) sdk.Coins
- func (k Keeper) GetAllStates(ctx sdk.Context) (list []types.State)
- func (k Keeper) GetBurnState(ctx sdk.Context) (remains types.State, found bool)
- func (k Keeper) GetParams(ctx sdk.Context) types.Params
- func (k Keeper) GetState(ctx sdk.Context, stateKey string) (remains types.State, found bool)
- func (k Keeper) Logger(ctx sdk.Context) log.Logger
- func (k Keeper) Params(c context.Context, req *types.QueryParamsRequest) (*types.QueryParamsResponse, error)
- func (k Keeper) SendCoinsFromModuleAccount(ctx sdk.Context, coins sdk.Coins, moduleFrom string, account sdk.AccAddress) error
- func (k Keeper) SendCoinsFromModuleToModule(ctx sdk.Context, coins sdk.Coins, moduleFrom string, moduleTo string) error
- func (k Keeper) SendCoinsToModuleAccount(ctx sdk.Context, coins sdk.Coins, account sdk.AccAddress, moduleTo string) error
- func (k Keeper) SetParams(ctx sdk.Context, params types.Params)
- func (k Keeper) SetState(ctx sdk.Context, state types.State)
- func (k Keeper) States(goCtx context.Context, req *types.QueryStatesRequest) (*types.QueryStatesResponse, error)
- func (k Keeper) SubDistributors(ctx sdk.Context) (res []types.SubDistributor)
Constants ¶
View Source
const BurnStateKey = "burn_state_key"
Variables ¶
This section is empty.
Functions ¶
func GetStateKey ¶
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 sdk.StoreKey, ps paramtypes.Subspace, bankKeeper types.BankKeeper, accountKeeper types.AccountKeeper, ) *Keeper
func (Keeper) BurnCoinsForSpecifiedModuleAccount ¶
func (Keeper) GetAccountAddressModuleAccount ¶
func (Keeper) GetAccountCoins ¶
func (Keeper) GetAccountCoinsForModuleAccount ¶
func (Keeper) GetAllStates ¶
GetAllStates returns all States
func (Keeper) GetBurnState ¶
func (Keeper) Params ¶
func (k Keeper) Params(c context.Context, req *types.QueryParamsRequest) (*types.QueryParamsResponse, error)
func (Keeper) SendCoinsFromModuleAccount ¶
func (Keeper) SendCoinsFromModuleToModule ¶
func (Keeper) SendCoinsToModuleAccount ¶
func (Keeper) States ¶
func (k Keeper) States(goCtx context.Context, req *types.QueryStatesRequest) (*types.QueryStatesResponse, error)
func (Keeper) SubDistributors ¶
func (k Keeper) SubDistributors(ctx sdk.Context) (res []types.SubDistributor)
SubDistributors returns the SubDistributors param
Click to show internal directories.
Click to hide internal directories.