Documentation
¶
Overview ¶
Package params defines the simulation parameters for the Fury app.
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 ( DefaultWeightMsgPlaceBid int = 20 DefaultWeightMsgCreateAtomicSwap int = 20 DefaultWeightMsgUpdatePrices int = 20 DefaultWeightMsgCdp int = 20 DefaultWeightMsgClaimReward int = 20 DefaultWeightMsgDeposit int = 20 DefaultWeightMsgWithdraw int = 20 DefaultWeightMsgSwapExactForTokens int = 20 DefaultWeightMsgSwapForExactTokens int = 20 DefaultWeightMsgIssue int = 20 DefaultWeightMsgRedeem int = 20 DefaultWeightMsgBlock int = 20 DefaultWeightMsgPause int = 20 OpWeightSubmitCommitteeChangeProposal int = 20 )
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
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 MakeEncodingConfig ¶
func MakeEncodingConfig() EncodingConfig
MakeEncodingConfig creates a new EncodingConfig.