mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 10:05:18 +00:00
8744d3210c
* panic on export if prev accrual time not set * on export if interest factor not set, set to 1.0 * fix prev accrual time in cdp export * panic on export if prev accrual time not set * export hard reward denom accumulation times * init genesis starts usdx reward indexes at 0.0 * update incentive migration * update incentive tests
192 lines
6.8 KiB
Go
192 lines
6.8 KiB
Go
package incentive
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
|
|
"github.com/kava-labs/kava/x/incentive/keeper"
|
|
"github.com/kava-labs/kava/x/incentive/types"
|
|
)
|
|
|
|
// InitGenesis initializes the store state from a genesis state.
|
|
func InitGenesis(ctx sdk.Context, k keeper.Keeper, supplyKeeper types.SupplyKeeper, cdpKeeper types.CdpKeeper, gs types.GenesisState) {
|
|
|
|
// check if the module account exists
|
|
moduleAcc := supplyKeeper.GetModuleAccount(ctx, types.IncentiveMacc)
|
|
if moduleAcc == nil {
|
|
panic(fmt.Sprintf("%s module account has not been set", types.IncentiveMacc))
|
|
}
|
|
|
|
if err := gs.Validate(); err != nil {
|
|
panic(fmt.Sprintf("failed to validate %s genesis state: %s", types.ModuleName, err))
|
|
}
|
|
|
|
for _, rp := range gs.Params.USDXMintingRewardPeriods {
|
|
_, found := cdpKeeper.GetCollateral(ctx, rp.CollateralType)
|
|
if !found {
|
|
panic(fmt.Sprintf("usdx minting collateral type %s not found in cdp collateral types", rp.CollateralType))
|
|
}
|
|
k.SetUSDXMintingRewardFactor(ctx, rp.CollateralType, sdk.ZeroDec())
|
|
}
|
|
|
|
for _, mrp := range gs.Params.HardSupplyRewardPeriods {
|
|
newRewardIndexes := types.RewardIndexes{}
|
|
for _, rc := range mrp.RewardsPerSecond {
|
|
ri := types.NewRewardIndex(rc.Denom, sdk.ZeroDec())
|
|
newRewardIndexes = append(newRewardIndexes, ri)
|
|
}
|
|
k.SetHardSupplyRewardIndexes(ctx, mrp.CollateralType, newRewardIndexes)
|
|
}
|
|
|
|
for _, mrp := range gs.Params.HardBorrowRewardPeriods {
|
|
newRewardIndexes := types.RewardIndexes{}
|
|
for _, rc := range mrp.RewardsPerSecond {
|
|
ri := types.NewRewardIndex(rc.Denom, sdk.ZeroDec())
|
|
newRewardIndexes = append(newRewardIndexes, ri)
|
|
}
|
|
k.SetHardBorrowRewardIndexes(ctx, mrp.CollateralType, newRewardIndexes)
|
|
}
|
|
|
|
for _, rp := range gs.Params.HardDelegatorRewardPeriods {
|
|
k.SetHardDelegatorRewardFactor(ctx, rp.CollateralType, sdk.ZeroDec())
|
|
}
|
|
|
|
k.SetParams(ctx, gs.Params)
|
|
|
|
for _, gat := range gs.USDXAccumulationTimes {
|
|
k.SetPreviousUSDXMintingAccrualTime(ctx, gat.CollateralType, gat.PreviousAccumulationTime)
|
|
}
|
|
|
|
for _, gat := range gs.HardSupplyAccumulationTimes {
|
|
k.SetPreviousHardSupplyRewardAccrualTime(ctx, gat.CollateralType, gat.PreviousAccumulationTime)
|
|
}
|
|
|
|
for _, gat := range gs.HardBorrowAccumulationTimes {
|
|
k.SetPreviousHardBorrowRewardAccrualTime(ctx, gat.CollateralType, gat.PreviousAccumulationTime)
|
|
}
|
|
|
|
for _, gat := range gs.HardDelegatorAccumulationTimes {
|
|
k.SetPreviousHardDelegatorRewardAccrualTime(ctx, gat.CollateralType, gat.PreviousAccumulationTime)
|
|
}
|
|
|
|
for i, claim := range gs.USDXMintingClaims {
|
|
for j, ri := range claim.RewardIndexes {
|
|
if ri.RewardFactor != sdk.ZeroDec() {
|
|
gs.USDXMintingClaims[i].RewardIndexes[j].RewardFactor = sdk.ZeroDec()
|
|
}
|
|
}
|
|
k.SetUSDXMintingClaim(ctx, claim)
|
|
}
|
|
|
|
for i, claim := range gs.HardLiquidityProviderClaims {
|
|
for j, mri := range claim.SupplyRewardIndexes {
|
|
for k, ri := range mri.RewardIndexes {
|
|
if ri.RewardFactor != sdk.ZeroDec() {
|
|
gs.HardLiquidityProviderClaims[i].SupplyRewardIndexes[j].RewardIndexes[k].RewardFactor = sdk.ZeroDec()
|
|
}
|
|
}
|
|
}
|
|
for j, mri := range claim.BorrowRewardIndexes {
|
|
for k, ri := range mri.RewardIndexes {
|
|
if ri.RewardFactor != sdk.ZeroDec() {
|
|
gs.HardLiquidityProviderClaims[i].BorrowRewardIndexes[j].RewardIndexes[k].RewardFactor = sdk.ZeroDec()
|
|
}
|
|
}
|
|
}
|
|
for j, ri := range claim.DelegatorRewardIndexes {
|
|
if ri.RewardFactor != sdk.ZeroDec() {
|
|
gs.HardLiquidityProviderClaims[i].DelegatorRewardIndexes[j].RewardFactor = sdk.ZeroDec()
|
|
}
|
|
}
|
|
k.SetHardLiquidityProviderClaim(ctx, claim)
|
|
}
|
|
}
|
|
|
|
// ExportGenesis export genesis state for incentive module
|
|
func ExportGenesis(ctx sdk.Context, k keeper.Keeper) types.GenesisState {
|
|
params := k.GetParams(ctx)
|
|
|
|
usdxClaims := k.GetAllUSDXMintingClaims(ctx)
|
|
hardClaims := k.GetAllHardLiquidityProviderClaims(ctx)
|
|
|
|
synchronizedUsdxClaims := types.USDXMintingClaims{}
|
|
synchronizedHardClaims := types.HardLiquidityProviderClaims{}
|
|
|
|
for _, usdxClaim := range usdxClaims {
|
|
claim, err := k.SynchronizeUSDXMintingClaim(ctx, usdxClaim)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
for i := range claim.RewardIndexes {
|
|
claim.RewardIndexes[i].RewardFactor = sdk.ZeroDec()
|
|
}
|
|
synchronizedUsdxClaims = append(synchronizedUsdxClaims, claim)
|
|
}
|
|
|
|
for _, hardClaim := range hardClaims {
|
|
k.SynchronizeHardLiquidityProviderClaim(ctx, hardClaim.Owner)
|
|
claim, found := k.GetHardLiquidityProviderClaim(ctx, hardClaim.Owner)
|
|
if !found {
|
|
panic("hard liquidity provider claim should always be found after synchronization")
|
|
}
|
|
for i, bri := range claim.BorrowRewardIndexes {
|
|
for j := range bri.RewardIndexes {
|
|
claim.BorrowRewardIndexes[i].RewardIndexes[j].RewardFactor = sdk.ZeroDec()
|
|
}
|
|
}
|
|
for i, sri := range claim.SupplyRewardIndexes {
|
|
for j := range sri.RewardIndexes {
|
|
claim.SupplyRewardIndexes[i].RewardIndexes[j].RewardFactor = sdk.ZeroDec()
|
|
}
|
|
}
|
|
for i := range claim.DelegatorRewardIndexes {
|
|
claim.DelegatorRewardIndexes[i].RewardFactor = sdk.ZeroDec()
|
|
}
|
|
synchronizedHardClaims = append(synchronizedHardClaims, claim)
|
|
}
|
|
|
|
var usdxMintingGats GenesisAccumulationTimes
|
|
for _, rp := range params.USDXMintingRewardPeriods {
|
|
pat, found := k.GetPreviousUSDXMintingAccrualTime(ctx, rp.CollateralType)
|
|
if !found {
|
|
panic(fmt.Sprintf("expected previous usdx minting reward accrual time to be set in state for %s", rp.CollateralType))
|
|
}
|
|
gat := types.NewGenesisAccumulationTime(rp.CollateralType, pat)
|
|
usdxMintingGats = append(usdxMintingGats, gat)
|
|
}
|
|
|
|
var hardSupplyGats GenesisAccumulationTimes
|
|
for _, rp := range params.HardSupplyRewardPeriods {
|
|
pat, found := k.GetPreviousHardSupplyRewardAccrualTime(ctx, rp.CollateralType)
|
|
if !found {
|
|
panic(fmt.Sprintf("expected previous hard supply reward accrual time to be set in state for %s", rp.CollateralType))
|
|
}
|
|
gat := types.NewGenesisAccumulationTime(rp.CollateralType, pat)
|
|
hardSupplyGats = append(hardSupplyGats, gat)
|
|
}
|
|
|
|
var hardBorrowGats GenesisAccumulationTimes
|
|
for _, rp := range params.HardBorrowRewardPeriods {
|
|
pat, found := k.GetPreviousHardBorrowRewardAccrualTime(ctx, rp.CollateralType)
|
|
if !found {
|
|
panic(fmt.Sprintf("expected previous hard borrow reward accrual time to be set in state for %s", rp.CollateralType))
|
|
}
|
|
gat := types.NewGenesisAccumulationTime(rp.CollateralType, pat)
|
|
hardBorrowGats = append(hardBorrowGats, gat)
|
|
}
|
|
|
|
var hardDelegatorGats GenesisAccumulationTimes
|
|
for _, rp := range params.HardDelegatorRewardPeriods {
|
|
pat, found := k.GetPreviousHardDelegatorRewardAccrualTime(ctx, rp.CollateralType)
|
|
if !found {
|
|
panic(fmt.Sprintf("expected previous hard delegator reward accrual time to be set in state for %s", rp.CollateralType))
|
|
}
|
|
gat := types.NewGenesisAccumulationTime(rp.CollateralType, pat)
|
|
hardDelegatorGats = append(hardDelegatorGats, gat)
|
|
}
|
|
|
|
return types.NewGenesisState(params, usdxMintingGats, hardSupplyGats,
|
|
hardBorrowGats, hardDelegatorGats, synchronizedUsdxClaims, synchronizedHardClaims)
|
|
}
|