Documentation ¶
Index ¶
- Constants
- func GenMaxMemoChars(r *rand.Rand) uint64
- func GenSigVerifyCostED25519(r *rand.Rand) uint64
- func GenSigVerifyCostSECP256K1(r *rand.Rand) uint64
- func GenTxSigLimit(r *rand.Rand) uint64
- func GenTxSizeCostPerByte(r *rand.Rand) uint64
- func NewDecodeStore(ak AuthUnmarshaler) func(kvA, kvB kv.Pair) string
- func ParamChanges(r *rand.Rand) []simtypes.ParamChange
- func RandomGenesisAccounts(simState *module.SimulationState) types.GenesisAccounts
- func RandomizedGenState(simState *module.SimulationState, ...)
- type AuthUnmarshaler
Constants ¶
const ( MaxMemoChars = "max_memo_characters" TxSigLimit = "tx_sig_limit" TxSizeCostPerByte = "tx_size_cost_per_byte" SigVerifyCostED25519 = "sig_verify_cost_ed25519" SigVerifyCostSECP256K1 = "sig_verify_cost_secp256k1" )
Simulation parameter constants
Variables ¶
This section is empty.
Functions ¶
func GenMaxMemoChars ¶ added in v0.41.4
GenMaxMemoChars randomized MaxMemoChars
func GenSigVerifyCostED25519 ¶ added in v0.41.4
GenSigVerifyCostED25519 randomized SigVerifyCostED25519
func GenSigVerifyCostSECP256K1 ¶ added in v0.41.4
GenSigVerifyCostSECP256K1 randomized SigVerifyCostSECP256K1
func GenTxSigLimit ¶ added in v0.41.4
GenTxSigLimit randomized TxSigLimit make sure that sigLimit is always high so that arbitrarily simulated messages from other modules can still create valid transactions
func GenTxSizeCostPerByte ¶ added in v0.41.4
GenTxSizeCostPerByte randomized TxSizeCostPerByte
func NewDecodeStore ¶ added in v0.41.4
func NewDecodeStore(ak AuthUnmarshaler) func(kvA, kvB kv.Pair) string
NewDecodeStore returns a decoder function closure that unmarshals the KVPair's Value to the corresponding auth type.
func ParamChanges ¶ added in v0.41.4
func ParamChanges(r *rand.Rand) []simtypes.ParamChange
ParamChanges defines the parameters that can be modified by param change proposals on the simulation
func RandomGenesisAccounts ¶ added in v0.41.4
func RandomGenesisAccounts(simState *module.SimulationState) types.GenesisAccounts
RandomGenesisAccounts defines the default RandomGenesisAccountsFn used on the SDK. It creates a slice of BaseAccount, ContinuousVestingAccount and DelayedVestingAccount.
func RandomizedGenState ¶ added in v0.41.4
func RandomizedGenState(simState *module.SimulationState, randGenAccountsFn types.RandomGenesisAccountsFn)
RandomizedGenState generates a random GenesisState for auth