mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 10:05:18 +00:00
1ab2e9965f
* fix: collateral param permission * wip: kava-5 committee updates * feat: add committee migrations * rename functions so git recognizes diffs better * rename * remove auction_size param * address review comments * add check ltv index count to collateral param perms * fix: update legacy migration * use function to define collateral param in test * use go 1.15 in circle * address review comments * fix: no nil values for collateral params
233 lines
9.1 KiB
Go
233 lines
9.1 KiB
Go
package v0_13
|
|
|
|
import (
|
|
"sort"
|
|
"time"
|
|
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
"github.com/cosmos/cosmos-sdk/x/auth"
|
|
authexported "github.com/cosmos/cosmos-sdk/x/auth/exported"
|
|
"github.com/cosmos/cosmos-sdk/x/supply"
|
|
|
|
v0_13cdp "github.com/kava-labs/kava/x/cdp"
|
|
v0_11cdp "github.com/kava-labs/kava/x/cdp/legacy/v0_11"
|
|
v0_13committee "github.com/kava-labs/kava/x/committee"
|
|
v0_11committee "github.com/kava-labs/kava/x/committee/legacy/v0_11"
|
|
)
|
|
|
|
// CDP migrates from a v0.11 cdp genesis state to a v0.13 cdp genesis state
|
|
func CDP(oldGenState v0_11cdp.GenesisState) v0_13cdp.GenesisState {
|
|
var newCDPs v0_13cdp.CDPs
|
|
var newDeposits v0_13cdp.Deposits
|
|
var newCollateralParams v0_13cdp.CollateralParams
|
|
var newGenesisAccumulationTimes v0_13cdp.GenesisAccumulationTimes
|
|
var previousAccumulationTime time.Time
|
|
var totalPrincipals v0_13cdp.GenesisTotalPrincipals
|
|
newStartingID := oldGenState.StartingCdpID
|
|
|
|
totalPrincipalMap := make(map[string]sdk.Int)
|
|
|
|
for _, cdp := range oldGenState.CDPs {
|
|
newCDP := v0_13cdp.NewCDPWithFees(cdp.ID, cdp.Owner, cdp.Collateral, cdp.Type, cdp.Principal, cdp.AccumulatedFees, cdp.FeesUpdated, sdk.OneDec())
|
|
if previousAccumulationTime.Before(cdp.FeesUpdated) {
|
|
previousAccumulationTime = cdp.FeesUpdated
|
|
}
|
|
_, found := totalPrincipalMap[cdp.Type]
|
|
if !found {
|
|
totalPrincipalMap[cdp.Type] = sdk.ZeroInt()
|
|
}
|
|
totalPrincipalMap[cdp.Type] = totalPrincipalMap[cdp.Type].Add(newCDP.GetTotalPrincipal().Amount)
|
|
|
|
newCDPs = append(newCDPs, newCDP)
|
|
}
|
|
|
|
for _, cp := range oldGenState.Params.CollateralParams {
|
|
newCollateralParam := v0_13cdp.NewCollateralParam(cp.Denom, cp.Type, cp.LiquidationRatio, cp.DebtLimit, cp.StabilityFee, cp.AuctionSize, cp.LiquidationPenalty, cp.Prefix, cp.SpotMarketID, cp.LiquidationMarketID, sdk.MustNewDecFromStr("0.01"), sdk.NewInt(10), cp.ConversionFactor)
|
|
newCollateralParams = append(newCollateralParams, newCollateralParam)
|
|
newGenesisAccumulationTime := v0_13cdp.NewGenesisAccumulationTime(cp.Type, previousAccumulationTime, sdk.OneDec())
|
|
newGenesisAccumulationTimes = append(newGenesisAccumulationTimes, newGenesisAccumulationTime)
|
|
}
|
|
|
|
for _, dep := range oldGenState.Deposits {
|
|
newDep := v0_13cdp.NewDeposit(dep.CdpID, dep.Depositor, dep.Amount)
|
|
newDeposits = append(newDeposits, newDep)
|
|
}
|
|
|
|
for ctype, tp := range totalPrincipalMap {
|
|
totalPrincipal := v0_13cdp.NewGenesisTotalPrincipal(ctype, tp)
|
|
totalPrincipals = append(totalPrincipals, totalPrincipal)
|
|
}
|
|
|
|
sort.Slice(totalPrincipals, func(i, j int) bool { return totalPrincipals[i].CollateralType < totalPrincipals[j].CollateralType })
|
|
|
|
oldDebtParam := oldGenState.Params.DebtParam
|
|
|
|
newDebtParam := v0_13cdp.NewDebtParam(oldDebtParam.Denom, oldDebtParam.ReferenceAsset, oldDebtParam.ConversionFactor, oldDebtParam.DebtFloor)
|
|
|
|
newGlobalDebtLimit := oldGenState.Params.GlobalDebtLimit
|
|
|
|
newParams := v0_13cdp.NewParams(newGlobalDebtLimit, newCollateralParams, newDebtParam, oldGenState.Params.SurplusAuctionThreshold, oldGenState.Params.SurplusAuctionLot, oldGenState.Params.DebtAuctionThreshold, oldGenState.Params.DebtAuctionLot, false)
|
|
|
|
return v0_13cdp.NewGenesisState(
|
|
newParams,
|
|
newCDPs,
|
|
newDeposits,
|
|
newStartingID,
|
|
oldGenState.DebtDenom,
|
|
oldGenState.GovDenom,
|
|
newGenesisAccumulationTimes,
|
|
totalPrincipals,
|
|
)
|
|
}
|
|
|
|
// Auth migrates from a v0.11 auth genesis state to a v0.13
|
|
func Auth(genesisState auth.GenesisState) auth.GenesisState {
|
|
savingsRateMaccCoins := sdk.NewCoins()
|
|
savingsMaccAddr := supply.NewModuleAddress(v0_11cdp.SavingsRateMacc)
|
|
savingsRateMaccIndex := 0
|
|
liquidatorMaccIndex := 0
|
|
for idx, acc := range genesisState.Accounts {
|
|
if acc.GetAddress().Equals(savingsMaccAddr) {
|
|
savingsRateMaccCoins = acc.GetCoins()
|
|
savingsRateMaccIndex = idx
|
|
err := acc.SetCoins(acc.GetCoins().Sub(acc.GetCoins()))
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
}
|
|
if acc.GetAddress().Equals(supply.NewModuleAddress(v0_13cdp.LiquidatorMacc)) {
|
|
liquidatorMaccIndex = idx
|
|
}
|
|
}
|
|
liquidatorAcc := genesisState.Accounts[liquidatorMaccIndex]
|
|
err := liquidatorAcc.SetCoins(liquidatorAcc.GetCoins().Add(savingsRateMaccCoins...))
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
genesisState.Accounts[liquidatorMaccIndex] = liquidatorAcc
|
|
|
|
genesisState.Accounts = removeIndex(genesisState.Accounts, savingsRateMaccIndex)
|
|
return genesisState
|
|
}
|
|
|
|
// Committee migrates from a v0.11 (or v0.12) committee genesis state to a v0.13 committee genesis stat
|
|
func Committee(genesisState v0_11committee.GenesisState) v0_13committee.GenesisState {
|
|
committees := []v0_13committee.Committee{}
|
|
votes := []v0_13committee.Vote{}
|
|
proposals := []v0_13committee.Proposal{}
|
|
|
|
var newStabilityCommittee v0_13committee.Committee
|
|
var newSafetyCommittee v0_13committee.Committee
|
|
|
|
for _, com := range genesisState.Committees {
|
|
if com.ID == 1 {
|
|
newStabilityCommittee.Description = com.Description
|
|
newStabilityCommittee.ID = com.ID
|
|
newStabilityCommittee.Members = com.Members
|
|
newStabilityCommittee.VoteThreshold = com.VoteThreshold
|
|
newStabilityCommittee.ProposalDuration = com.ProposalDuration
|
|
var newStabilityCommitteePermissions []v0_13committee.Permission
|
|
var newStabilitySubParamPermissions v0_13committee.SubParamChangePermission
|
|
|
|
for _, perm := range com.Permissions {
|
|
subPerm, ok := perm.(v0_11committee.SubParamChangePermission)
|
|
if ok {
|
|
// update AllowedParams
|
|
var newAllowedParams v0_13committee.AllowedParams
|
|
for _, ap := range subPerm.AllowedParams {
|
|
newAP := v0_13committee.AllowedParam(ap)
|
|
newAllowedParams = append(newAllowedParams, newAP)
|
|
}
|
|
newStabilitySubParamPermissions.AllowedParams = newAllowedParams
|
|
|
|
// update AllowedCollateralParams
|
|
var newCollateralParams v0_13committee.AllowedCollateralParams
|
|
for _, cp := range subPerm.AllowedCollateralParams {
|
|
newCP := v0_13committee.NewAllowedCollateralParam(
|
|
cp.Type,
|
|
cp.Denom,
|
|
cp.LiquidationRatio,
|
|
cp.DebtLimit,
|
|
cp.StabilityFee,
|
|
cp.AuctionSize,
|
|
cp.LiquidationPenalty,
|
|
cp.Prefix,
|
|
cp.SpotMarketID,
|
|
cp.LiquidationMarketID,
|
|
cp.ConversionFactor,
|
|
true,
|
|
true,
|
|
)
|
|
newCollateralParams = append(newCollateralParams, newCP)
|
|
}
|
|
newStabilitySubParamPermissions.AllowedCollateralParams = newCollateralParams
|
|
|
|
// update AllowedDebtParam
|
|
newDP := v0_13committee.AllowedDebtParam{
|
|
Denom: subPerm.AllowedDebtParam.Denom,
|
|
ReferenceAsset: subPerm.AllowedDebtParam.ReferenceAsset,
|
|
ConversionFactor: subPerm.AllowedDebtParam.ConversionFactor,
|
|
DebtFloor: subPerm.AllowedDebtParam.DebtFloor,
|
|
}
|
|
newStabilitySubParamPermissions.AllowedDebtParam = newDP
|
|
|
|
// update AllowedAssetParams
|
|
var newAssetParams v0_13committee.AllowedAssetParams
|
|
for _, ap := range subPerm.AllowedAssetParams {
|
|
newAP := v0_13committee.AllowedAssetParam(ap)
|
|
newAssetParams = append(newAssetParams, newAP)
|
|
}
|
|
newStabilitySubParamPermissions.AllowedAssetParams = newAssetParams
|
|
|
|
// Update Allowed Markets
|
|
var newMarketParams v0_13committee.AllowedMarkets
|
|
for _, mp := range subPerm.AllowedMarkets {
|
|
newMP := v0_13committee.AllowedMarket(mp)
|
|
newMarketParams = append(newMarketParams, newMP)
|
|
}
|
|
newStabilitySubParamPermissions.AllowedMarkets = newMarketParams
|
|
|
|
// Add hard money market committee permissions
|
|
var newMoneyMarketParams v0_13committee.AllowedMoneyMarkets
|
|
hardMMDenoms := []string{"bnb", "busd", "btcb", "xrpb", "usdx", "kava", "hard"}
|
|
for _, mmDenom := range hardMMDenoms {
|
|
newMoneyMarketParam := v0_13committee.NewAllowedMoneyMarket(mmDenom, true, false, false, true, true, true)
|
|
newMoneyMarketParams = append(newMoneyMarketParams, newMoneyMarketParam)
|
|
}
|
|
newStabilitySubParamPermissions.AllowedMoneyMarkets = newMoneyMarketParams
|
|
newStabilityCommitteePermissions = append(newStabilityCommitteePermissions, newStabilitySubParamPermissions)
|
|
}
|
|
}
|
|
newStabilityCommitteePermissions = append(newStabilityCommitteePermissions, v0_13committee.TextPermission{})
|
|
newStabilityCommittee.Permissions = newStabilityCommitteePermissions
|
|
committees = append(committees, newStabilityCommittee)
|
|
} else {
|
|
newSafetyCommittee.ID = com.ID
|
|
newSafetyCommittee.Description = com.Description
|
|
newSafetyCommittee.Members = com.Members
|
|
newSafetyCommittee.Permissions = []v0_13committee.Permission{v0_13committee.SoftwareUpgradePermission{}}
|
|
newSafetyCommittee.VoteThreshold = com.VoteThreshold
|
|
newSafetyCommittee.ProposalDuration = com.ProposalDuration
|
|
committees = append(committees, newSafetyCommittee)
|
|
}
|
|
}
|
|
|
|
for _, v := range genesisState.Votes {
|
|
votes = append(votes, v0_13committee.Vote(v))
|
|
}
|
|
|
|
for _, p := range genesisState.Proposals {
|
|
newPubProp := v0_13committee.PubProposal(p.PubProposal)
|
|
newProp := v0_13committee.NewProposal(newPubProp, p.ID, p.CommitteeID, p.Deadline)
|
|
proposals = append(proposals, newProp)
|
|
}
|
|
return v0_13committee.NewGenesisState(
|
|
genesisState.NextProposalID, committees, proposals, votes)
|
|
}
|
|
|
|
func removeIndex(accs authexported.GenesisAccounts, index int) authexported.GenesisAccounts {
|
|
ret := make(authexported.GenesisAccounts, 0)
|
|
ret = append(ret, accs[:index]...)
|
|
return append(ret, accs[index+1:]...)
|
|
}
|