Documentation ¶
Index ¶
- Variables
- type Keeper
- func (k Keeper) BurnAndDistribute(ctx sdk.Context)
- func (k Keeper) FundCommunityPool(ctx sdk.Context, amount sdk.Coins, sender sdk.AccAddress) error
- func (k Keeper) GetParams(ctx sdk.Context) (params types.Params)
- func (k Keeper) GetTotalBurnedFuryasAmount(ctx sdk.Context) types.TotalBurnedFuryasAmount
- 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) RecordBurnedFees(ctx sdk.Context, amount sdk.Coin)
- func (k Keeper) SetParams(ctx sdk.Context, params types.Params)
- func (k Keeper) TotalBurnedFuryasAmount(goCtx context.Context, _ *types.QueryTotalBurnedFuryasAmountRequest) (*types.QueryTotalBurnedFuryasAmountResponse, error)
Constants ¶
This section is empty.
Variables ¶
var KeyBurnedFees = []byte("BurnedFees")
Functions ¶
This section is empty.
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) BurnAndDistribute ¶
BurnAndDistribute is an important part of tokenomics. It does few things: 1. Burns FURY fee coins distributed to consumertypes.ConsumerRedistributeName in ICS (https://github.com/cosmos/interchain-security/blob/v0.2.0/x/ccv/consumer/keeper/distribution.go#L17) 2. Updates total amount of burned FURY coins 3. Sends non-FURY fee tokens to reserve contract address Panics if no `consumertypes.ConsumerRedistributeName` module found OR could not burn FURY tokens
func (Keeper) FundCommunityPool ¶
FundCommunityPool is method to satisfy DistributionKeeper interface for packet-forward-middleware Keeper. The original method sends coins to a community pool of a chain. The current method sends coins to a Fee Collector module which collects fee on consumer chain.
func (Keeper) GetTotalBurnedFuryasAmount ¶
func (k Keeper) GetTotalBurnedFuryasAmount(ctx sdk.Context) types.TotalBurnedFuryasAmount
GetTotalBurnedFuryasAmount gets the total burned amount of FURY tokens
func (Keeper) Params ¶
func (k Keeper) Params(c context.Context, req *types.QueryParamsRequest) (*types.QueryParamsResponse, error)
func (Keeper) RecordBurnedFees ¶
RecordBurnedFees adds `amount` to the total amount of burned FURY tokens
func (Keeper) TotalBurnedFuryasAmount ¶
func (k Keeper) TotalBurnedFuryasAmount(goCtx context.Context, _ *types.QueryTotalBurnedFuryasAmountRequest) (*types.QueryTotalBurnedFuryasAmountResponse, error)