update inflation rate

This commit is contained in:
0xsatoshi 2024-06-14 22:27:23 +08:00
parent 35a9c8376e
commit 26b1f594fc
4 changed files with 58 additions and 22 deletions

View File

@ -588,7 +588,7 @@ func NewApp(
committee.NewAppModule(app.committeeKeeper, app.accountKeeper), committee.NewAppModule(app.committeeKeeper, app.accountKeeper),
evmutil.NewAppModule(app.evmutilKeeper, app.bankKeeper, app.accountKeeper), evmutil.NewAppModule(app.evmutilKeeper, app.bankKeeper, app.accountKeeper),
// nil InflationCalculationFn, use SDK's default inflation function // nil InflationCalculationFn, use SDK's default inflation function
mint.NewAppModule(appCodec, app.mintKeeper, app.accountKeeper, chaincfg.CustomInflationCalculateFn), mint.NewAppModule(appCodec, app.mintKeeper, app.accountKeeper, chaincfg.InflationCalculateFn),
council.NewAppModule(app.CouncilKeeper, app.stakingKeeper), council.NewAppModule(app.CouncilKeeper, app.stakingKeeper),
das.NewAppModule(app.DasKeeper), das.NewAppModule(app.DasKeeper),
) )

View File

@ -1,45 +1,78 @@
package chaincfg package chaincfg
import ( import (
"github.com/shopspring/decimal"
"github.com/tendermint/tendermint/libs/log" "github.com/tendermint/tendermint/libs/log"
sdk "github.com/cosmos/cosmos-sdk/types" sdk "github.com/cosmos/cosmos-sdk/types"
minttypes "github.com/cosmos/cosmos-sdk/x/mint/types" minttypes "github.com/cosmos/cosmos-sdk/x/mint/types"
) )
func CustomInflationCalculateFn(ctx sdk.Context, minter minttypes.Minter, params minttypes.Params, bondedRatio sdk.Dec) sdk.Dec { var (
maxBondedRatio, _ = sdk.NewDecFromStr("1.0")
yMin, _ = sdk.NewDecFromStr("0.05")
minBondedRatio, _ = sdk.NewDecFromStr("0.2")
yMax, _ = sdk.NewDecFromStr("0.15") // 15% at min bonded ratio
decayRate, _ = sdk.NewDecFromStr("10")
)
func InflationCalculateFn(ctx sdk.Context, minter minttypes.Minter, params minttypes.Params, bondedRatio sdk.Dec) sdk.Dec {
logger := ctx.Logger() logger := ctx.Logger()
if logger == nil { if logger == nil {
panic("logger is nil") panic("logger is nil")
} }
return customInflationCalculateFn(logger, minter, params, bondedRatio) return inflationCalculateFn(logger, minter, params, bondedRatio)
} }
func customInflationCalculateFn(logger log.Logger, minter minttypes.Minter, params minttypes.Params, bondedRatio sdk.Dec) sdk.Dec { func decExp(x sdk.Dec) sdk.Dec {
// The target annual inflation rate is recalculated for each previsions cycle. The xDec := decimal.NewFromBigInt(x.BigInt(), -18)
// inflation is also subject to a rate change (positive or negative) depending on expDec, _ := xDec.ExpTaylor(18)
// the distance from the desired ratio (67%). The maximum rate change possible is expInt := expDec.Shift(18).BigInt()
// defined to be 13% per year, however the annual inflation is capped as between return sdk.NewDecFromBigIntWithPrec(expInt, 18)
// 7% and 20%. }
// (1 - bondedRatio/GoalBonded) * InflationRateChange func inflationCalculateFn(logger log.Logger, minter minttypes.Minter, params minttypes.Params, bondedRatio sdk.Dec) sdk.Dec {
inflationRateChangePerYear := sdk.OneDec(). var apy sdk.Dec
Sub(bondedRatio.Quo(params.GoalBonded)). if bondedRatio.LT(minBondedRatio) {
Mul(params.InflationRateChange) apy = yMax
inflationRateChange := inflationRateChangePerYear.Quo(sdk.NewDec(int64(params.BlocksPerYear))) } else {
exp := decayRate.Neg().Mul(maxBondedRatio.Sub(minBondedRatio))
c := decExp(exp)
d := yMin.Sub(yMax.Mul(c)).Quo(sdk.OneDec().Sub(c))
expBonded := decayRate.Neg().Mul(bondedRatio.Sub(minBondedRatio))
cBonded := decExp(expBonded)
e := yMax.Sub(d).Mul(cBonded)
apy = d.Add(e)
}
inflation := apy.Mul(bondedRatio)
// adjust the new annual inflation for this next cycle // // The target annual inflation rate is recalculated for each previsions cycle. The
inflation := minter.Inflation.Add(inflationRateChange) // note inflationRateChange may be negative // // inflation is also subject to a rate change (positive or negative) depending on
if inflation.GT(params.InflationMax) { // // the distance from the desired ratio (67%). The maximum rate change possible is
inflation = params.InflationMax // // defined to be 13% per year, however the annual inflation is capped as between
} // // 7% and 20%.
if inflation.LT(params.InflationMin) {
inflation = params.InflationMin // // (1 - bondedRatio/GoalBonded) * InflationRateChange
} // inflationRateChangePerYear := sdk.OneDec().
// Sub(bondedRatio.Quo(params.GoalBonded)).
// Mul(params.InflationRateChange)
// inflationRateChange := inflationRateChangePerYear.Quo(sdk.NewDec(int64(params.BlocksPerYear)))
// // adjust the new annual inflation for this next cycle
// inflation := minter.Inflation.Add(inflationRateChange) // note inflationRateChange may be negative
// if inflation.GT(params.InflationMax) {
// inflation = params.InflationMax
// }
// if inflation.LT(params.InflationMin) {
// inflation = params.InflationMin
// }
logger.Info( logger.Info(
"calculated new annual inflation", "calculated new annual inflation",
"bondedRatio", bondedRatio, "bondedRatio", bondedRatio,
"apy", apy,
"inflation", inflation, "inflation", inflation,
"params", params, "params", params,
"minter", minter, "minter", minter,

1
go.mod
View File

@ -165,6 +165,7 @@ require (
github.com/rs/zerolog v1.32.0 // indirect github.com/rs/zerolog v1.32.0 // indirect
github.com/sasha-s/go-deadlock v0.3.1 // indirect github.com/sasha-s/go-deadlock v0.3.1 // indirect
github.com/shirou/gopsutil v3.21.4-0.20210419000835-c7a38de76ee5+incompatible // indirect github.com/shirou/gopsutil v3.21.4-0.20210419000835-c7a38de76ee5+incompatible // indirect
github.com/shopspring/decimal v1.4.0 // indirect
github.com/spf13/afero v1.9.3 // indirect github.com/spf13/afero v1.9.3 // indirect
github.com/spf13/jwalterweatherman v1.1.0 // indirect github.com/spf13/jwalterweatherman v1.1.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect github.com/spf13/pflag v1.0.5 // indirect

2
go.sum
View File

@ -1083,6 +1083,8 @@ github.com/segmentio/kafka-go v0.2.0/go.mod h1:X6itGqS9L4jDletMsxZ7Dz+JFWxM6JHfP
github.com/sergi/go-diff v1.0.0/go.mod h1:0CfEIISq7TuYL3j771MWULgwwjU+GofnZX9QAmXWZgo= github.com/sergi/go-diff v1.0.0/go.mod h1:0CfEIISq7TuYL3j771MWULgwwjU+GofnZX9QAmXWZgo=
github.com/shirou/gopsutil v3.21.4-0.20210419000835-c7a38de76ee5+incompatible h1:Bn1aCHHRnjv4Bl16T8rcaFjYSrGrIZvpiGO6P3Q4GpU= github.com/shirou/gopsutil v3.21.4-0.20210419000835-c7a38de76ee5+incompatible h1:Bn1aCHHRnjv4Bl16T8rcaFjYSrGrIZvpiGO6P3Q4GpU=
github.com/shirou/gopsutil v3.21.4-0.20210419000835-c7a38de76ee5+incompatible/go.mod h1:5b4v6he4MtMOwMlS0TUMTu2PcXUg8+E1lC7eC3UO/RA= github.com/shirou/gopsutil v3.21.4-0.20210419000835-c7a38de76ee5+incompatible/go.mod h1:5b4v6he4MtMOwMlS0TUMTu2PcXUg8+E1lC7eC3UO/RA=
github.com/shopspring/decimal v1.4.0 h1:bxl37RwXBklmTi0C79JfXCEBD1cqqHt0bbgBAGFp81k=
github.com/shopspring/decimal v1.4.0/go.mod h1:gawqmDU56v4yIKSwfBSFip1HdCCXN8/+DMd9qYNcwME=
github.com/shurcooL/sanitized_anchor_name v1.0.0/go.mod h1:1NzhyTcUVG4SuEtjjoZeVRXNmyL/1OwPU0+IJeTBvfc= github.com/shurcooL/sanitized_anchor_name v1.0.0/go.mod h1:1NzhyTcUVG4SuEtjjoZeVRXNmyL/1OwPU0+IJeTBvfc=
github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo=
github.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6MwdIuYE2rE= github.com/sirupsen/logrus v1.4.2/go.mod h1:tLMulIdttU9McNUspp0xgXVQah82FyeX6MwdIuYE2rE=