2020-04-24 15:20:34 +00:00
|
|
|
package keeper
|
|
|
|
|
|
|
|
import (
|
2021-01-18 19:12:37 +00:00
|
|
|
"time"
|
|
|
|
|
2020-04-24 15:20:34 +00:00
|
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
2020-04-30 14:13:31 +00:00
|
|
|
|
2020-04-24 15:20:34 +00:00
|
|
|
"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)
|
|
|
|
}
|
2021-01-18 19:12:37 +00:00
|
|
|
|
2021-01-21 13:52:09 +00:00
|
|
|
// 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) {
|
2021-01-18 19:12:37 +00:00
|
|
|
params := k.GetParams(ctx)
|
2021-01-21 13:52:09 +00:00
|
|
|
for _, rp := range params.USDXMintingRewardPeriods {
|
2021-01-18 19:12:37 +00:00
|
|
|
if rp.CollateralType == collateralType {
|
|
|
|
return rp, true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return types.RewardPeriod{}, false
|
|
|
|
}
|
|
|
|
|
2021-02-02 16:17:46 +00:00
|
|
|
// 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) {
|
2021-01-21 13:52:09 +00:00
|
|
|
params := k.GetParams(ctx)
|
|
|
|
for _, rp := range params.HardSupplyRewardPeriods {
|
|
|
|
if rp.CollateralType == denom {
|
|
|
|
return rp, true
|
|
|
|
}
|
|
|
|
}
|
2021-02-02 16:17:46 +00:00
|
|
|
return types.MultiRewardPeriod{}, false
|
2021-01-21 13:52:09 +00:00
|
|
|
}
|
|
|
|
|
2021-02-02 16:17:46 +00:00
|
|
|
// 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) {
|
2021-01-21 13:52:09 +00:00
|
|
|
params := k.GetParams(ctx)
|
|
|
|
for _, rp := range params.HardBorrowRewardPeriods {
|
|
|
|
if rp.CollateralType == denom {
|
|
|
|
return rp, true
|
|
|
|
}
|
|
|
|
}
|
2021-02-02 16:17:46 +00:00
|
|
|
return types.MultiRewardPeriod{}, false
|
2021-01-21 13:52:09 +00:00
|
|
|
}
|
|
|
|
|
2021-07-07 16:50:14 +00:00
|
|
|
// 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) {
|
2021-01-25 12:58:12 +00:00
|
|
|
params := k.GetParams(ctx)
|
2021-07-07 16:50:14 +00:00
|
|
|
for _, rp := range params.DelegatorRewardPeriods {
|
2021-01-25 12:58:12 +00:00
|
|
|
if rp.CollateralType == denom {
|
|
|
|
return rp, true
|
|
|
|
}
|
|
|
|
}
|
2021-07-05 22:01:25 +00:00
|
|
|
return types.MultiRewardPeriod{}, false
|
2021-01-25 12:58:12 +00:00
|
|
|
}
|
|
|
|
|
2021-08-04 14:55:29 +00:00
|
|
|
// GetMultiplierByDenom fetches a multiplier from the params matching the denom and name.
|
2022-01-08 00:39:27 +00:00
|
|
|
func (k Keeper) GetMultiplierByDenom(ctx sdk.Context, denom string, name string) (types.Multiplier, bool) {
|
2021-01-18 19:12:37 +00:00
|
|
|
params := k.GetParams(ctx)
|
2021-08-04 14:55:29 +00:00
|
|
|
|
|
|
|
for _, dm := range params.ClaimMultipliers {
|
|
|
|
if dm.Denom == denom {
|
|
|
|
m, found := dm.Multipliers.Get(name)
|
|
|
|
return m, found
|
2021-01-18 19:12:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
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
|
|
|
|
}
|