mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 18:15:19 +00:00
4e6f6d1e9c
* spike: incentive/types * spike: incentive/types tests * spike: incentive/types/expected_keepers.go * spike: incentive/keeper * spike: incentive/keeper tests * spike: incentive/sims and incentive/sims tests * spike: incentive/module * spike: incentive/module tests * spike: hard/types * spike: hard/types hooks * spike: hard/types * spike: hard/keeper basics * spike: hard/keeper hooks * integrate hard/keeper/borrow.go * integrate hard/keeper/deposit.go * integrate hard/keeper/liquidation.go * integrate hard/keeper/withdraw.go * integrate hard/keeper/repay.go * spike: hard/sims * spike: hard/sims tests * spike: hard/client * spike: hard/module * integrate app.go * spike: x/hard/keeper compile tests * incentive/keeper test clean up * validate usdx incentive types in genesis * refactoring & fix deposit test * fix liquidaton tests * fix incentive tests for hard supply rewards * fix hard genesis tests * update incentive genesis state and params * update cdp rewards accumulation * update app init order and begin blocker order Co-authored-by: karzak <kjydavis3@gmail.com>
72 lines
2.1 KiB
Go
72 lines
2.1 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
|
|
}
|
|
|
|
// 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
|
|
}
|