2020-04-23 16:35:58 +00:00
|
|
|
package params
|
|
|
|
|
2022-01-08 00:39:27 +00:00
|
|
|
// TODO this has not been updated for v0.44
|
|
|
|
|
2020-04-23 16:35:58 +00:00
|
|
|
// Simulation parameter constants
|
|
|
|
const (
|
|
|
|
StakePerAccount = "stake_per_account"
|
|
|
|
InitiallyBondedValidators = "initially_bonded_validators"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Default simulation operation weights for messages and gov proposals
|
|
|
|
const (
|
2020-08-17 15:06:59 +00:00
|
|
|
DefaultWeightMsgPlaceBid int = 20
|
|
|
|
DefaultWeightMsgCreateAtomicSwap int = 20
|
|
|
|
DefaultWeightMsgUpdatePrices int = 20
|
|
|
|
DefaultWeightMsgCdp int = 20
|
|
|
|
DefaultWeightMsgClaimReward int = 20
|
2021-07-15 15:35:24 +00:00
|
|
|
DefaultWeightMsgDeposit int = 20
|
|
|
|
DefaultWeightMsgWithdraw int = 20
|
2021-07-27 10:57:23 +00:00
|
|
|
DefaultWeightMsgSwapExactForTokens int = 20
|
|
|
|
DefaultWeightMsgSwapForExactTokens int = 20
|
2020-08-17 17:09:02 +00:00
|
|
|
DefaultWeightMsgIssue int = 20
|
|
|
|
DefaultWeightMsgRedeem int = 20
|
|
|
|
DefaultWeightMsgBlock int = 20
|
|
|
|
DefaultWeightMsgPause int = 20
|
2020-08-17 15:06:59 +00:00
|
|
|
OpWeightSubmitCommitteeChangeProposal int = 20
|
2020-04-23 16:35:58 +00:00
|
|
|
)
|