mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 10:05:18 +00:00
ffef832d45
- Upgrade cosmos-sdk to v0.44.5 from v0.39.2 - Add Legacy Tx Endpoint for backwards compatibility - Add IBC v1.2.3 Support Co-authored-by: DracoLi <draco@dracoli.com> Co-authored-by: drklee3 <derrick@dlee.dev> Co-authored-by: denalimarsh <denalimarsh@gmail.com> Co-authored-by: Draco Li <draco@kava.io> Co-authored-by: Nick DeLuca <nickdeluca08@gmail.com> Co-authored-by: Kevin Davis <karzak@users.noreply.github.com> Co-authored-by: Denali Marsh <denali@kava.io>
88 lines
2.7 KiB
Go
88 lines
2.7 KiB
Go
package simulation
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"math/rand"
|
|
"time"
|
|
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
"github.com/cosmos/cosmos-sdk/types/module"
|
|
"github.com/cosmos/cosmos-sdk/types/simulation"
|
|
|
|
"github.com/kava-labs/kava/x/kavadist/types"
|
|
)
|
|
|
|
// SecondsPerYear is the number of seconds in a year
|
|
const (
|
|
SecondsPerYear = 31536000
|
|
// BaseAprPadding sets the minimum inflation to the calculated SPR inflation rate from being 0.0
|
|
BaseAprPadding = "0.000000003022265980"
|
|
)
|
|
|
|
// RandomizedGenState generates a random GenesisState for kavadist module
|
|
func RandomizedGenState(simState *module.SimulationState) {
|
|
params := genRandomParams(simState)
|
|
if err := params.Validate(); err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
kavadistGenesis := types.NewGenesisState(params, types.DefaultPreviousBlockTime)
|
|
if err := kavadistGenesis.Validate(); err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
bz, err := json.MarshalIndent(&kavadistGenesis, "", " ")
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
fmt.Printf("Selected randomly generated %s parameters:\n%s\n", types.ModuleName, bz)
|
|
simState.GenState[types.ModuleName] = simState.Cdc.MustMarshalJSON(kavadistGenesis)
|
|
}
|
|
|
|
func genRandomParams(simState *module.SimulationState) types.Params {
|
|
periods := genRandomPeriods(simState.Rand, simState.GenTimestamp)
|
|
params := types.NewParams(true, periods)
|
|
return params
|
|
}
|
|
|
|
func genRandomPeriods(r *rand.Rand, timestamp time.Time) []types.Period {
|
|
var periods []types.Period
|
|
numPeriods := simulation.RandIntBetween(r, 1, 10)
|
|
periodStart := timestamp
|
|
for i := 0; i < numPeriods; i++ {
|
|
// set periods to be between 1-3 days
|
|
durationMultiplier := simulation.RandIntBetween(r, 1, 3)
|
|
duration := time.Duration(int64(24*durationMultiplier)) * time.Hour
|
|
periodEnd := periodStart.Add(duration)
|
|
inflation := genRandomInflation(r)
|
|
period := types.NewPeriod(periodStart, periodEnd, inflation)
|
|
periods = append(periods, period)
|
|
periodStart = periodEnd
|
|
}
|
|
return periods
|
|
}
|
|
|
|
func genRandomInflation(r *rand.Rand) sdk.Dec {
|
|
// If sim.RandomDecAmount is less than base apr padding, add base apr padding
|
|
aprPadding, _ := sdk.NewDecFromStr(BaseAprPadding)
|
|
extraAprInflation := simulation.RandomDecAmount(r, sdk.MustNewDecFromStr("0.25"))
|
|
for extraAprInflation.LT(aprPadding) {
|
|
extraAprInflation = extraAprInflation.Add(aprPadding)
|
|
}
|
|
aprInflation := sdk.OneDec().Add(extraAprInflation)
|
|
|
|
// convert APR inflation to SPR (inflation per second)
|
|
inflationSpr, err := aprInflation.ApproxRoot(uint64(SecondsPerYear))
|
|
if err != nil {
|
|
panic(fmt.Sprintf("error generating random inflation %v", err))
|
|
}
|
|
return inflationSpr
|
|
}
|
|
|
|
func genRandomActive(r *rand.Rand) bool {
|
|
threshold := 50
|
|
value := simulation.RandIntBetween(r, 1, 100)
|
|
return value > threshold
|
|
}
|