Documentation ¶
Index ¶
- Constants
- func DecodeStore(cdc *codec.Codec, kvA, kvB tmkv.Pair) string
- func GenBaseProposerReward(r *rand.Rand) sdk.Dec
- func GenBonusProposerReward(r *rand.Rand) sdk.Dec
- func GenCommunityTax(r *rand.Rand) sdk.Dec
- func GenWithdrawEnabled(r *rand.Rand) bool
- func ParamChanges(r *rand.Rand) []simulation.ParamChange
- func ProposalContents(k keeper.Keeper) []simulation.WeightedProposalContent
- func RandomizedGenState(simState *module.SimulationState)
- func SimulateCommunityPoolSpendProposalContent(k keeper.Keeper) simulation.ContentSimulatorFn
- func SimulateMsgFundCommunityPool(ak types.AccountKeeper, k keeper.Keeper, sk stakingkeeper.Keeper) simulation.Operation
- func SimulateMsgSetWithdrawAddress(ak types.AccountKeeper, k keeper.Keeper) simulation.Operation
- func SimulateMsgWithdrawDelegatorReward(ak types.AccountKeeper, k keeper.Keeper, sk stakingkeeper.Keeper) simulation.Operation
- func SimulateMsgWithdrawValidatorCommission(ak types.AccountKeeper, k keeper.Keeper, sk stakingkeeper.Keeper) simulation.Operation
- func WeightedOperations(appParams simulation.AppParams, cdc *codec.Codec, ak types.AccountKeeper, ...) simulation.WeightedOperations
Constants ¶
const ( CommunityTax = "community_tax" BaseProposerReward = "base_proposer_reward" BonusProposerReward = "bonus_proposer_reward" WithdrawEnabled = "withdraw_enabled" )
Simulation parameter constants
const ( OpWeightMsgSetWithdrawAddress = "op_weight_msg_set_withdraw_address" OpWeightMsgWithdrawDelegationReward = "op_weight_msg_withdraw_delegation_reward" OpWeightMsgWithdrawValidatorCommission = "op_weight_msg_withdraw_validator_commission" OpWeightMsgFundCommunityPool = "op_weight_msg_fund_community_pool" )
Simulation operation weights constants
const OpWeightSubmitCommunitySpendProposal = "op_weight_submit_community_spend_proposal"
OpWeightSubmitCommunitySpendProposal app params key for community spend proposal
Variables ¶
This section is empty.
Functions ¶
func DecodeStore ¶
DecodeStore unmarshals the KVPair's Value to the corresponding distribution type
func GenBaseProposerReward ¶
GenBaseProposerReward randomized BaseProposerReward
func GenBonusProposerReward ¶
GenBonusProposerReward randomized BonusProposerReward
func GenCommunityTax ¶
GenCommunityTax randomized CommunityTax
func GenWithdrawEnabled ¶
GenWithdrawEnabled returns a randomized WithdrawEnabled parameter.
func ParamChanges ¶
func ParamChanges(r *rand.Rand) []simulation.ParamChange
ParamChanges defines the parameters that can be modified by param change proposals on the simulation
func ProposalContents ¶
func ProposalContents(k keeper.Keeper) []simulation.WeightedProposalContent
ProposalContents defines the module weighted proposals' contents
func RandomizedGenState ¶
func RandomizedGenState(simState *module.SimulationState)
RandomizedGenState generates a random GenesisState for distribution
func SimulateCommunityPoolSpendProposalContent ¶
func SimulateCommunityPoolSpendProposalContent(k keeper.Keeper) simulation.ContentSimulatorFn
SimulateCommunityPoolSpendProposalContent generates random community-pool-spend proposal content nolint: funlen
func SimulateMsgFundCommunityPool ¶
func SimulateMsgFundCommunityPool(ak types.AccountKeeper, k keeper.Keeper, sk stakingkeeper.Keeper) simulation.Operation
SimulateMsgFundCommunityPool simulates MsgFundCommunityPool execution where a random account sends a random amount of its funds to the community pool.
func SimulateMsgSetWithdrawAddress ¶
func SimulateMsgSetWithdrawAddress(ak types.AccountKeeper, k keeper.Keeper) simulation.Operation
SimulateMsgSetWithdrawAddress generates a MsgSetWithdrawAddress with random values. nolint: funlen
func SimulateMsgWithdrawDelegatorReward ¶
func SimulateMsgWithdrawDelegatorReward(ak types.AccountKeeper, k keeper.Keeper, sk stakingkeeper.Keeper) simulation.Operation
SimulateMsgWithdrawDelegatorReward generates a MsgWithdrawDelegatorReward with random values. nolint: funlen
func SimulateMsgWithdrawValidatorCommission ¶
func SimulateMsgWithdrawValidatorCommission(ak types.AccountKeeper, k keeper.Keeper, sk stakingkeeper.Keeper) simulation.Operation
SimulateMsgWithdrawValidatorCommission generates a MsgWithdrawValidatorCommission with random values. nolint: funlen
func WeightedOperations ¶
func WeightedOperations( appParams simulation.AppParams, cdc *codec.Codec, ak types.AccountKeeper, k keeper.Keeper, sk stakingkeeper.Keeper, ) simulation.WeightedOperations
WeightedOperations returns all the operations from the module with their respective weights
Types ¶
This section is empty.