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) GetAuthority() string
- func (k Keeper) GetModuleAccount(ctx sdk.Context, moduleName string) sdk.AccountI
- func (k Keeper) GetModuleAccountAddress(_ sdk.Context) sdk.AccAddress
- func (k Keeper) GetParams(ctx sdk.Context) (params types.Params, err error)
- func (k Keeper) GetProportions(_ sdk.Context, mintedCoin sdk.Coin, ratio sdkmath.LegacyDec) sdk.Coin
- func (k Keeper) Logger(ctx sdk.Context) log.Logger
- func (k Keeper) SetParams(ctx sdk.Context, params types.Params) error
- type Migrator
- type QueryServer
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 { Schema collections.Schema Params collections.Item[types.Params] // contains filtered or unexported fields }
func NewKeeper ¶
func NewKeeper( cdc codec.BinaryCodec, storeService corestoretypes.KVStoreService, accountKeeper types.AccountKeeper, bankKeeper types.BankKeeper, stakingKeeper types.StakingKeeper, distrKeeper types.DistrKeeper, authority string, ) 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) GetAuthority ¶
GetAuthority returns the x/alloc module's authority.
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
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.
type QueryServer ¶
type QueryServer struct {
// contains filtered or unexported fields
}
QueryServer implements the module gRPC query service.
func NewQueryServer ¶
func NewQueryServer(keeper Keeper) *QueryServer
NewQueryServer creates a new gRPC query server.
func (QueryServer) Params ¶
func (q QueryServer) Params(c context.Context, _ *types.QueryParamsRequest) (*types.QueryParamsResponse, error)
Params returns params of the alloc module.