Documentation ¶
Overview ¶
Package params defines the simulation parameters in the simapp.
It contains the default weights used for each transaction used on the module's simulation. These weights define the chance for a transaction to be simulated at any gived operation.
You can repace the default values for the weights by providing a params.json file with the weights defined for each of the transaction operations:
{ "op_weight_msg_send": 60, "op_weight_msg_delegate": 100, }
In the example above, the `MsgSend` has 60% chance to be simulated, while the `MsgDelegate` will always be simulated.
Index ¶
Constants ¶
const ( StakePerAccount = "stake_per_account" InitiallyBondedValidators = "initially_bonded_validators" )
Simulation parameter constants
const ( DefaultWeightMsgCreateFixedAmountPlan int = 10 DefaultWeightMsgCreateRatioPlan int = 10 DefaultWeightMsgStake int = 85 DefaultWeightMsgUnstake int = 20 DefaultWeightMsgHarvest int = 30 DefaultWeightMsgRemovePlan int = 10 DefaultWeightMsgCreatePair int = 10 DefaultWeightMsgCreatePool int = 10 DefaultWeightMsgCreateRangedPool int = 15 DefaultWeightMsgDeposit int = 20 DefaultWeightMsgWithdraw int = 20 DefaultWeightMsgLimitOrder int = 80 DefaultWeightMsgMarketOrder int = 60 DefaultWeightMsgMMOrder int = 40 DefaultWeightMsgCancelOrder int = 20 DefaultWeightMsgCancelAllOrders int = 20 DefaultWeightMsgCancelMMOrder int = 20 DefaultWeightAddPublicPlanProposal int = 5 DefaultWeightUpdatePublicPlanProposal int = 5 DefaultWeightDeletePublicPlanProposal int = 5 DefaultWeightMsgLiquidStake int = 80 DefaultWeightMsgLiquidUnstake int = 30 DefaultWeightAddWhitelistValidatorsProposal int = 50 DefaultWeightUpdateWhitelistValidatorsProposal int = 5 DefaultWeightDeleteWhitelistValidatorsProposal int = 5 DefaultWeightCompleteRedelegationUnbonding int = 30 DefaultWeightTallyWithLiquidStaking int = 30 DefaultWeightMsgClaim int = 50 DefaultWeightMsgLiquidFarm int = 50 DefaultWeightMsgLiquidUnfarm int = 10 DefaultWeightMsgPlaceBid int = 20 DefaultWeightMsgRefundBid int = 5 DefaultWeightMsgApplyMarketMaker int = 20 DefaultWeightMsgClaimIncentives int = 10 DefaultWeightMarketMakerProposal int = 20 DefaultWeightChangeIncentivePairs int = 5 DefaultWeightChangeDepositAmount int = 2 )
Default simulation operation weights for messages and gov proposals.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type EncodingConfig ¶
type EncodingConfig struct { InterfaceRegistry types.InterfaceRegistry // NOTE: this field will be renamed to Codec Marshaler codec.Codec TxConfig client.TxConfig Amino *codec.LegacyAmino }
EncodingConfig specifies the concrete encoding types to use for a given app. This is provided for compatibility between protobuf and amino implementations.
func MakeTestEncodingConfig ¶
func MakeTestEncodingConfig() EncodingConfig
MakeTestEncodingConfig creates an EncodingConfig for a non-amino based test configuration. This function should be used only internally (in the SDK). App user shouldn't create new codecs - use the app.AppCodec instead. [DEPRECATED]