Documentation ¶
Overview ¶
Package params defines the simulation parameters in the gaia.
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 given operation.
You can replace 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 ( DefaultWeightMsgSend int = 100 DefaultWeightMsgMultiSend int = 10 DefaultWeightMsgSetWithdrawAddress int = 50 DefaultWeightMsgWithdrawDelegationReward int = 50 DefaultWeightMsgWithdrawValidatorCommission int = 50 DefaultWeightMsgFundCommunityPool int = 50 DefaultWeightMsgDeposit int = 100 DefaultWeightMsgVote int = 67 DefaultWeightMsgUnjail int = 100 DefaultWeightMsgCreateValidator int = 100 DefaultWeightMsgEditValidator int = 5 DefaultWeightMsgDelegate int = 100 DefaultWeightMsgUndelegate int = 100 DefaultWeightMsgBeginRedelegate int = 100 DefaultWeightMsgCancelUnbondingDelegation int = 100 DefaultWeightCommunitySpendProposal int = 5 DefaultWeightTextProposal int = 5 DefaultWeightParamChangeProposal int = 5 )
Default simulation operation weights for messages and gov proposals
Variables ¶
var ( // BypassMinFeeMsgTypesKey defines the configuration key for the // BypassMinFeeMsgTypes value. //nolint: gosec BypassMinFeeMsgTypesKey = "bypass-min-fee-msg-types" )
Functions ¶
func CustomConfigTemplate ¶
func CustomConfigTemplate() string
CustomConfigTemplate defines Gaia's custom application configuration TOML template. It extends the core SDK template.
Types ¶
type CustomAppConfig ¶
type CustomAppConfig struct { serverconfig.Config // BypassMinFeeMsgTypes defines custom message types the operator may set that // will bypass minimum fee checks during CheckTx. // NOTE: // bypass-min-fee-msg-types = [] will deactivate the bypass - no messages will be allowed to bypass the minimum fee check // bypass-min-fee-msg-types = [<some_msg_type>] will allow messages of specified type to bypass the minimum fee check // omitting bypass-min-fee-msg-types from the config file will use the default values: ["/ibc.core.channel.v1.MsgRecvPacket", "/ibc.core.channel.v1.MsgAcknowledgement", "/ibc.core.client.v1.MsgUpdateClient"] BypassMinFeeMsgTypes []string `mapstructure:"bypass-min-fee-msg-types"` }
CustomAppConfig defines Gaia's custom application configuration.
type EncodingConfig ¶
type EncodingConfig struct { InterfaceRegistry types.InterfaceRegistry Codec 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 an amino based test configuration.