mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 18:15:19 +00:00
72a6df17fd
* add staking keeper to incentive module * update hard with delegator methods * add delegator methods to incentive * implement delegator hook scaffolds * implement hard delegator reward accumulation * update claim names to delegator * stakingKeeper expected keeper methods * accumulate delegator rewards * initialize delegator reward * synchronize delegator reward * add TODO comments to rewards * implement staking hooks interface * initial revisions * remove outdated TODO * update methods for test compatibility * update method names for test compatibility * implement initial accumulate delegator reward test * attempt validator set up in staking module * initial synchronize delegator reward test * delegator accumulation test passing * synchronize delegator rewards test (not passing) * synchronize delegator rewards passing * revisions
83 lines
2.5 KiB
Go
83 lines
2.5 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
|
|
}
|
|
|
|
// GetHardSupplyRewardPeriod returns the reward period with the specified collateral type if it's found in the params
|
|
func (k Keeper) GetHardSupplyRewardPeriod(ctx sdk.Context, denom string) (types.RewardPeriod, bool) {
|
|
params := k.GetParams(ctx)
|
|
for _, rp := range params.HardSupplyRewardPeriods {
|
|
if rp.CollateralType == denom {
|
|
return rp, true
|
|
}
|
|
}
|
|
return types.RewardPeriod{}, false
|
|
}
|
|
|
|
// GetHardBorrowRewardPeriod returns the reward period with the specified collateral type if it's found in the params
|
|
func (k Keeper) GetHardBorrowRewardPeriod(ctx sdk.Context, denom string) (types.RewardPeriod, bool) {
|
|
params := k.GetParams(ctx)
|
|
for _, rp := range params.HardBorrowRewardPeriods {
|
|
if rp.CollateralType == denom {
|
|
return rp, true
|
|
}
|
|
}
|
|
return types.RewardPeriod{}, false
|
|
}
|
|
|
|
// GetHardDelegatorRewardPeriod returns the reward period with the specified collateral type if it's found in the params
|
|
func (k Keeper) GetHardDelegatorRewardPeriod(ctx sdk.Context, denom string) (types.RewardPeriod, bool) {
|
|
params := k.GetParams(ctx)
|
|
for _, rp := range params.HardDelegatorRewardPeriods {
|
|
if rp.CollateralType == denom {
|
|
return rp, true
|
|
}
|
|
}
|
|
return types.RewardPeriod{}, 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
|
|
}
|