mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 18:15:19 +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>
74 lines
2.5 KiB
Go
74 lines
2.5 KiB
Go
package simulation
|
|
|
|
// import (
|
|
// "fmt"
|
|
// "time"
|
|
|
|
// "github.com/cosmos/cosmos-sdk/codec"
|
|
// sdk "github.com/cosmos/cosmos-sdk/types"
|
|
// "github.com/cosmos/cosmos-sdk/types/module"
|
|
// "github.com/cosmos/cosmos-sdk/x/simulation"
|
|
|
|
// "github.com/kava-labs/kava/x/pricefeed/types"
|
|
// pricefeed "github.com/kava-labs/kava/x/pricefeed/types"
|
|
// )
|
|
|
|
// var (
|
|
// // BaseAssets is a list of collateral asset denoms
|
|
// BaseAssets = [3]string{"bnb", "xrp", "btc"}
|
|
// QuoteAsset = "usd"
|
|
// )
|
|
|
|
// // RandomizedGenState generates a random GenesisState for pricefeed
|
|
// func RandomizedGenState(simState *module.SimulationState) {
|
|
// pricefeedGenesis := loadPricefeedGenState(simState)
|
|
// fmt.Printf("Selected randomly generated %s parameters:\n%s\n", types.ModuleName, codec.MustMarshalJSONIndent(simState.Cdc, pricefeedGenesis))
|
|
// simState.GenState[types.ModuleName] = simState.Cdc.MustMarshalJSON(pricefeedGenesis)
|
|
// }
|
|
|
|
// // loadPricefeedGenState loads a valid pricefeed gen state
|
|
// func loadPricefeedGenState(simState *module.SimulationState) pricefeed.GenesisState {
|
|
// var markets []pricefeed.Market
|
|
// var postedPrices []pricefeed.PostedPrice
|
|
// for _, denom := range BaseAssets {
|
|
// // Select an account to be the oracle
|
|
// oracle, _ := simulation.RandomAcc(simState.Rand, simState.Accounts)
|
|
|
|
// marketID := fmt.Sprintf("%s:%s", denom, QuoteAsset)
|
|
// // Construct market for asset
|
|
// market := pricefeed.Market{
|
|
// MarketID: marketID,
|
|
// BaseAsset: denom,
|
|
// QuoteAsset: QuoteAsset,
|
|
// Oracles: []sdk.AccAddress{oracle.Address},
|
|
// Active: true,
|
|
// }
|
|
|
|
// // Construct posted price for asset
|
|
// postedPrice := pricefeed.PostedPrice{
|
|
// MarketID: market.MarketId,
|
|
// OracleAddress: oracle.Address,
|
|
// Price: getInitialPrice(marketID),
|
|
// Expiry: simState.GenTimestamp.Add(time.Hour * 24),
|
|
// }
|
|
// markets = append(markets, market)
|
|
// postedPrices = append(postedPrices, postedPrice)
|
|
// }
|
|
// params := pricefeed.NewParams(markets)
|
|
// return pricefeed.NewGenesisState(params, postedPrices)
|
|
// }
|
|
|
|
// // getInitialPrice gets the starting price for each of the base assets
|
|
// func getInitialPrice(marketID string) (price sdk.Dec) {
|
|
// switch marketID {
|
|
// case "btc:usd":
|
|
// return sdk.MustNewDecFromStr("7000")
|
|
// case "bnb:usd":
|
|
// return sdk.MustNewDecFromStr("14")
|
|
// case "xrp:usd":
|
|
// return sdk.MustNewDecFromStr("0.2")
|
|
// default:
|
|
// return sdk.MustNewDecFromStr("20") // Catch future additional assets
|
|
// }
|
|
// }
|