mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 18:15:19 +00:00
3fc2a63556
* update claim attribute type to MultiRewardIndexes * update param attribute type to MultiRewardPeriods * keeper: update params to match types * keeper: update delegator core keeper methods * keeper: update InitializeHardDelegatorReward * keeper: update SynchronizeHardDelegatorRewards * remove reward factor in favor of reward indexes * update querier * fix test: delegator init test * fix test: delegator sync test * implement delegator reward accumulation * fix test: delegator general tests * add legact types, update v0_11 -> v0_14 migration * remove duplicate import form v0_15 migration * implement v0_15incentive migration * test data and migration test * add multiple reward denoms to init/sync tests * update delegator test with multiple reward coins * clean up simulation sync * types: introduce DelegatorClaim, refactor HardClaim * add core DelegateClaim store methods * refactor delegator reward init, accumulation, sync * update hooks * update params and genesis logic * update abci * update types tests * update querier types/keeper for compile * update supply rewards tests * update borrow reward tests * update delegator reward tests * update handler/genesis test for compile * add new msg type * implement delegator claim payouts * submission + handling of new msg * implement new querier types/keeper logic * add new queries to cli/rest * update migration * register new msgs/types on codec * remove delegator syncing from hard sync method
83 lines
2.6 KiB
Go
83 lines
2.6 KiB
Go
package keeper
|
|
|
|
import (
|
|
"time"
|
|
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
|
|
"github.com/kava-labs/kava/x/incentive/types"
|
|
)
|
|
|
|
// GetParams returns the params from the store
|
|
func (k Keeper) GetParams(ctx sdk.Context) types.Params {
|
|
var p types.Params
|
|
k.paramSubspace.GetParamSet(ctx, &p)
|
|
return p
|
|
}
|
|
|
|
// SetParams sets params on the store
|
|
func (k Keeper) SetParams(ctx sdk.Context, params types.Params) {
|
|
k.paramSubspace.SetParamSet(ctx, ¶ms)
|
|
}
|
|
|
|
// GetUSDXMintingRewardPeriod returns the reward period with the specified collateral type if it's found in the params
|
|
func (k Keeper) GetUSDXMintingRewardPeriod(ctx sdk.Context, collateralType string) (types.RewardPeriod, bool) {
|
|
params := k.GetParams(ctx)
|
|
for _, rp := range params.USDXMintingRewardPeriods {
|
|
if rp.CollateralType == collateralType {
|
|
return rp, true
|
|
}
|
|
}
|
|
return types.RewardPeriod{}, false
|
|
}
|
|
|
|
// GetHardSupplyRewardPeriods returns the reward period with the specified collateral type if it's found in the params
|
|
func (k Keeper) GetHardSupplyRewardPeriods(ctx sdk.Context, denom string) (types.MultiRewardPeriod, bool) {
|
|
params := k.GetParams(ctx)
|
|
for _, rp := range params.HardSupplyRewardPeriods {
|
|
if rp.CollateralType == denom {
|
|
return rp, true
|
|
}
|
|
}
|
|
return types.MultiRewardPeriod{}, false
|
|
}
|
|
|
|
// GetHardBorrowRewardPeriods returns the reward period with the specified collateral type if it's found in the params
|
|
func (k Keeper) GetHardBorrowRewardPeriods(ctx sdk.Context, denom string) (types.MultiRewardPeriod, bool) {
|
|
params := k.GetParams(ctx)
|
|
for _, rp := range params.HardBorrowRewardPeriods {
|
|
if rp.CollateralType == denom {
|
|
return rp, true
|
|
}
|
|
}
|
|
return types.MultiRewardPeriod{}, false
|
|
}
|
|
|
|
// GetDelegatorRewardPeriods returns the reward period with the specified collateral type if it's found in the params
|
|
func (k Keeper) GetDelegatorRewardPeriods(ctx sdk.Context, denom string) (types.MultiRewardPeriod, bool) {
|
|
params := k.GetParams(ctx)
|
|
for _, rp := range params.DelegatorRewardPeriods {
|
|
if rp.CollateralType == denom {
|
|
return rp, true
|
|
}
|
|
}
|
|
return types.MultiRewardPeriod{}, false
|
|
}
|
|
|
|
// GetMultiplier returns the multiplier with the specified name if it's found in the params
|
|
func (k Keeper) GetMultiplier(ctx sdk.Context, name types.MultiplierName) (types.Multiplier, bool) {
|
|
params := k.GetParams(ctx)
|
|
for _, m := range params.ClaimMultipliers {
|
|
if m.Name == name {
|
|
return m, true
|
|
}
|
|
}
|
|
return types.Multiplier{}, false
|
|
}
|
|
|
|
// GetClaimEnd returns the claim end time for the params
|
|
func (k Keeper) GetClaimEnd(ctx sdk.Context) time.Time {
|
|
params := k.GetParams(ctx)
|
|
return params.ClaimEnd
|
|
}
|