2020-04-24 15:20:34 +00:00
|
|
|
package keeper
|
|
|
|
|
|
|
|
import (
|
2021-01-18 19:12:37 +00:00
|
|
|
"math"
|
2020-04-24 15:20:34 +00:00
|
|
|
"time"
|
|
|
|
|
|
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
2020-04-30 14:13:31 +00:00
|
|
|
|
2020-04-24 15:20:34 +00:00
|
|
|
cdptypes "github.com/kava-labs/kava/x/cdp/types"
|
|
|
|
"github.com/kava-labs/kava/x/incentive/types"
|
|
|
|
)
|
|
|
|
|
2021-01-18 19:12:37 +00:00
|
|
|
// AccumulateRewards updates the rewards accumulated for the input reward period
|
|
|
|
func (k Keeper) AccumulateRewards(ctx sdk.Context, rewardPeriod types.RewardPeriod) error {
|
|
|
|
if !rewardPeriod.Active {
|
|
|
|
k.SetPreviousAccrualTime(ctx, rewardPeriod.CollateralType, ctx.BlockTime())
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
previousAccrualTime, found := k.GetPreviousAccrualTime(ctx, rewardPeriod.CollateralType)
|
|
|
|
if !found {
|
|
|
|
k.SetPreviousAccrualTime(ctx, rewardPeriod.CollateralType, ctx.BlockTime())
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
timeElapsed := CalculateTimeElapsed(rewardPeriod, ctx.BlockTime(), previousAccrualTime)
|
|
|
|
if timeElapsed.IsZero() {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
if rewardPeriod.RewardsPerSecond.Amount.IsZero() {
|
|
|
|
k.SetPreviousAccrualTime(ctx, rewardPeriod.CollateralType, ctx.BlockTime())
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
totalPrincipal := k.cdpKeeper.GetTotalPrincipal(ctx, rewardPeriod.CollateralType, types.PrincipalDenom).ToDec()
|
|
|
|
if totalPrincipal.IsZero() {
|
|
|
|
k.SetPreviousAccrualTime(ctx, rewardPeriod.CollateralType, ctx.BlockTime())
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
newRewards := timeElapsed.Mul(rewardPeriod.RewardsPerSecond.Amount)
|
|
|
|
cdpFactor, found := k.cdpKeeper.GetInterestFactor(ctx, rewardPeriod.CollateralType)
|
|
|
|
if !found {
|
|
|
|
k.SetPreviousAccrualTime(ctx, rewardPeriod.CollateralType, ctx.BlockTime())
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
rewardFactor := newRewards.ToDec().Mul(cdpFactor).Quo(totalPrincipal)
|
2020-05-07 17:46:40 +00:00
|
|
|
|
2021-01-18 19:12:37 +00:00
|
|
|
previousRewardFactor, found := k.GetRewardFactor(ctx, rewardPeriod.CollateralType)
|
|
|
|
if !found {
|
|
|
|
previousRewardFactor = sdk.ZeroDec()
|
|
|
|
}
|
|
|
|
newRewardFactor := previousRewardFactor.Add(rewardFactor)
|
|
|
|
k.SetRewardFactor(ctx, rewardPeriod.CollateralType, newRewardFactor)
|
|
|
|
k.SetPreviousAccrualTime(ctx, rewardPeriod.CollateralType, ctx.BlockTime())
|
|
|
|
return nil
|
2020-04-24 15:20:34 +00:00
|
|
|
}
|
|
|
|
|
2021-01-18 19:12:37 +00:00
|
|
|
// InitializeClaim creates or updates a claim such that no new rewards are accrued, but any existing rewards are not lost.
|
|
|
|
// this function should be called after a cdp is created. If a user previously had a cdp, then closed it, they shouldn't
|
|
|
|
// accrue rewards during the period the cdp was closed. By setting the reward factor to the current global reward factor,
|
|
|
|
// any unclaimed rewards are preserved, but no new rewards are added.
|
|
|
|
func (k Keeper) InitializeClaim(ctx sdk.Context, cdp cdptypes.CDP) {
|
|
|
|
_, found := k.GetRewardPeriod(ctx, cdp.Type)
|
|
|
|
if !found {
|
|
|
|
// this collateral type is not incentivized, do nothing
|
|
|
|
return
|
2020-04-24 15:20:34 +00:00
|
|
|
}
|
2021-01-18 19:12:37 +00:00
|
|
|
rewardFactor, found := k.GetRewardFactor(ctx, cdp.Type)
|
|
|
|
if !found {
|
|
|
|
rewardFactor = sdk.ZeroDec()
|
|
|
|
}
|
|
|
|
claim, found := k.GetClaim(ctx, cdp.Owner)
|
|
|
|
if !found { // this is the owner's first usdx minting reward claim
|
|
|
|
claim = types.NewUSDXMintingClaim(cdp.Owner, sdk.NewCoin(types.USDXMintingRewardDenom, sdk.ZeroInt()), types.RewardIndexes{types.NewRewardIndex(cdp.Type, rewardFactor)})
|
|
|
|
k.SetClaim(ctx, claim)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
// the owner has an existing usdx minting reward claim
|
|
|
|
index, hasRewardIndex := claim.HasRewardIndex(cdp.Type)
|
|
|
|
if !hasRewardIndex { // this is the owner's first usdx minting reward for this collateral type
|
|
|
|
claim.RewardIndexes = append(claim.RewardIndexes, types.NewRewardIndex(cdp.Type, rewardFactor))
|
|
|
|
} else { // the owner has a previous usdx minting reward for this collateral type
|
|
|
|
claim.RewardIndexes[index] = types.NewRewardIndex(cdp.Type, rewardFactor)
|
|
|
|
}
|
|
|
|
k.SetClaim(ctx, claim)
|
2020-04-24 15:20:34 +00:00
|
|
|
}
|
|
|
|
|
2021-01-18 19:12:37 +00:00
|
|
|
// SynchronizeReward updates the claim object by adding any accumulated rewards and updating the reward index value.
|
|
|
|
// this should be called before a cdp is modified, immediately after the 'SynchronizeInterest' method is called in the cdp module
|
|
|
|
func (k Keeper) SynchronizeReward(ctx sdk.Context, cdp cdptypes.CDP) {
|
|
|
|
_, found := k.GetRewardPeriod(ctx, cdp.Type)
|
2020-04-24 15:20:34 +00:00
|
|
|
if !found {
|
2021-01-18 19:12:37 +00:00
|
|
|
// this collateral type is not incentivized, do nothing
|
2020-04-24 15:20:34 +00:00
|
|
|
return
|
|
|
|
}
|
2020-06-17 09:09:44 +00:00
|
|
|
|
2021-01-18 19:12:37 +00:00
|
|
|
globalRewardFactor, found := k.GetRewardFactor(ctx, cdp.Type)
|
|
|
|
if !found {
|
|
|
|
globalRewardFactor = sdk.ZeroDec()
|
|
|
|
}
|
|
|
|
claim, found := k.GetClaim(ctx, cdp.Owner)
|
|
|
|
if !found {
|
|
|
|
claim = types.NewUSDXMintingClaim(cdp.Owner, sdk.NewCoin(types.USDXMintingRewardDenom, sdk.ZeroInt()), types.RewardIndexes{types.NewRewardIndex(cdp.Type, globalRewardFactor)})
|
|
|
|
k.SetClaim(ctx, claim)
|
|
|
|
return
|
|
|
|
}
|
2020-06-17 09:09:44 +00:00
|
|
|
|
2021-01-18 19:12:37 +00:00
|
|
|
// the owner has an existing usdx minting reward claim
|
|
|
|
index, hasRewardIndex := claim.HasRewardIndex(cdp.Type)
|
|
|
|
if !hasRewardIndex { // this is the owner's first usdx minting reward for this collateral type
|
|
|
|
claim.RewardIndexes = append(claim.RewardIndexes, types.NewRewardIndex(cdp.Type, globalRewardFactor))
|
|
|
|
k.SetClaim(ctx, claim)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
userRewardFactor := claim.RewardIndexes[index].RewardFactor
|
|
|
|
rewardsAccumulatedFactor := globalRewardFactor.Sub(userRewardFactor)
|
|
|
|
if rewardsAccumulatedFactor.IsZero() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
claim.RewardIndexes[index].RewardFactor = globalRewardFactor
|
|
|
|
newRewardsAmount := cdp.GetTotalPrincipal().Amount.ToDec().Quo(cdp.InterestFactor).Mul(rewardsAccumulatedFactor).RoundInt()
|
|
|
|
if newRewardsAmount.IsZero() {
|
|
|
|
k.SetClaim(ctx, claim)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
newRewardsCoin := sdk.NewCoin(types.USDXMintingRewardDenom, newRewardsAmount)
|
|
|
|
claim.Reward = claim.Reward.Add(newRewardsCoin)
|
|
|
|
k.SetClaim(ctx, claim)
|
|
|
|
return
|
|
|
|
}
|
2020-06-17 09:09:44 +00:00
|
|
|
|
2021-01-18 19:12:37 +00:00
|
|
|
// ZeroClaim zeroes out the claim object's rewards and returns the updated claim object
|
|
|
|
func (k Keeper) ZeroClaim(ctx sdk.Context, claim types.USDXMintingClaim) types.USDXMintingClaim {
|
|
|
|
claim.Reward = sdk.NewCoin(claim.Reward.Denom, sdk.ZeroInt())
|
|
|
|
k.SetClaim(ctx, claim)
|
|
|
|
return claim
|
2020-04-24 15:20:34 +00:00
|
|
|
}
|
|
|
|
|
2021-01-18 19:12:37 +00:00
|
|
|
// SynchronizeClaim updates the claim object by adding any rewards that have accumulated.
|
|
|
|
// Returns the updated claim object
|
|
|
|
func (k Keeper) SynchronizeClaim(ctx sdk.Context, claim types.USDXMintingClaim) (types.USDXMintingClaim, error) {
|
|
|
|
for _, ri := range claim.RewardIndexes {
|
|
|
|
cdp, found := k.cdpKeeper.GetCdpByOwnerAndCollateralType(ctx, claim.Owner, ri.CollateralType)
|
|
|
|
if !found {
|
|
|
|
// if the cdp for this collateral type has been closed, no updates are needed
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
claim = k.synchronizeRewardAndReturnClaim(ctx, cdp)
|
|
|
|
}
|
|
|
|
return claim, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// this function assumes a claim already exists, so don't call it if that's not the case
|
|
|
|
func (k Keeper) synchronizeRewardAndReturnClaim(ctx sdk.Context, cdp cdptypes.CDP) types.USDXMintingClaim {
|
|
|
|
k.SynchronizeReward(ctx, cdp)
|
|
|
|
claim, _ := k.GetClaim(ctx, cdp.Owner)
|
|
|
|
return claim
|
2020-04-24 15:20:34 +00:00
|
|
|
}
|
|
|
|
|
2021-01-18 19:12:37 +00:00
|
|
|
// CalculateTimeElapsed calculates the number of reward-eligible seconds that have passed since the previous
|
|
|
|
// time rewards were accrued, taking into account the end time of the reward period
|
|
|
|
func CalculateTimeElapsed(rewardPeriod types.RewardPeriod, blockTime time.Time, previousAccrualTime time.Time) sdk.Int {
|
|
|
|
if rewardPeriod.End.Before(blockTime) &&
|
|
|
|
(rewardPeriod.End.Before(previousAccrualTime) || rewardPeriod.End.Equal(previousAccrualTime)) {
|
|
|
|
return sdk.ZeroInt()
|
2020-04-24 15:20:34 +00:00
|
|
|
}
|
2021-01-18 19:12:37 +00:00
|
|
|
if rewardPeriod.End.Before(blockTime) {
|
|
|
|
return sdk.NewInt(int64(math.RoundToEven(
|
|
|
|
rewardPeriod.End.Sub(previousAccrualTime).Seconds(),
|
|
|
|
)))
|
|
|
|
}
|
|
|
|
return sdk.NewInt(int64(math.RoundToEven(
|
|
|
|
blockTime.Sub(previousAccrualTime).Seconds(),
|
|
|
|
)))
|
2020-04-24 15:20:34 +00:00
|
|
|
}
|