Documentation ¶
Index ¶
- func NewMsgServerImpl(keeper Keeper) types.MsgServer
- type Keeper
- func (k Keeper) DistributeInflation(ctx sdk.Context) error
- func (k Keeper) DistributeWeightedRewards(ctx sdk.Context, feeCollectorAddress sdk.AccAddress, totalAllocation sdk.Coin, ...) error
- func (k Keeper) FundCommunityPool(ctx sdk.Context) error
- func (k Keeper) GetModuleAccount(ctx sdk.Context, moduleName string) authtypes.AccountI
- func (k Keeper) GetModuleAccountAddress(_ sdk.Context) sdk.AccAddress
- func (k Keeper) GetParams(ctx sdk.Context) (params types.Params)
- func (k Keeper) GetProportions(_ sdk.Context, mintedCoin sdk.Coin, ratio sdk.Dec) sdk.Coin
- func (k Keeper) Logger(ctx sdk.Context) log.Logger
- func (k Keeper) Params(c context.Context, _ *types.QueryParamsRequest) (*types.QueryParamsResponse, error)
- func (k Keeper) SetParams(ctx sdk.Context, params types.Params) error
- type Migrator
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, accountKeeper types.AccountKeeper, bankKeeper types.BankKeeper, stakingKeeper types.StakingKeeper, distrKeeper types.DistrKeeper, ps paramtypes.Subspace, ) *Keeper
func (Keeper) DistributeInflation ¶
DistributeInflation distributes module-specific inflation
func (Keeper) DistributeWeightedRewards ¶
func (k Keeper) DistributeWeightedRewards(ctx sdk.Context, feeCollectorAddress sdk.AccAddress, totalAllocation sdk.Coin, accounts []types.WeightedAddress) error
func (Keeper) GetModuleAccount ¶
GetModuleAccountBalance gets the airdrop coin balance of module account
func (Keeper) GetModuleAccountAddress ¶
func (k Keeper) GetModuleAccountAddress(_ sdk.Context) sdk.AccAddress
GetModuleAccountBalance gets the airdrop coin balance of module account
func (Keeper) GetProportions ¶
GetProportions gets the balance of the `MintedDenom` from minted coins and returns coins according to the `AllocationRatio`
func (Keeper) Params ¶
func (k Keeper) Params(c context.Context, _ *types.QueryParamsRequest) (*types.QueryParamsResponse, error)
Params returns params of the alloc module.
type Migrator ¶
type Migrator struct {
// contains filtered or unexported fields
}
Migrator is a struct for handling in-place store migrations.
func (Migrator) Migrate1to2 ¶
Migrate1to2 migrates x/alloc state from consensus version 1 to 2.
func (Migrator) Migrate2to3 ¶
Migrate2to3 migrates x/alloc state from consensus version 2 to 3.
func (Migrator) Migrate3to4 ¶
Migrate3to4 migrates the x/alloc module state from the consensus version 3 to version 4. Specifically, it takes the parameters that are currently stored and managed by the x/params module and stores them directly into the x/alloc module state.