github.com/fibonacci-chain/fbc@v0.0.0-20231124064014-c7636198c1e9/libs/ibc-go/testing/simapp/params/weights.go (about) 1 package params 2 3 // Default simulation operation weights for messages and gov proposals 4 const ( 5 DefaultWeightMsgSend int = 100 6 DefaultWeightMsgMultiSend int = 10 7 DefaultWeightMsgSetWithdrawAddress int = 50 8 DefaultWeightMsgWithdrawDelegationReward int = 50 9 DefaultWeightMsgWithdrawValidatorCommission int = 50 10 DefaultWeightMsgFundCommunityPool int = 50 11 DefaultWeightMsgDeposit int = 100 12 DefaultWeightMsgVote int = 67 13 DefaultWeightMsgVoteWeighted int = 33 14 DefaultWeightMsgUnjail int = 100 15 DefaultWeightMsgCreateValidator int = 100 16 DefaultWeightMsgEditValidator int = 5 17 DefaultWeightMsgDelegate int = 100 18 DefaultWeightMsgUndelegate int = 100 19 DefaultWeightMsgBeginRedelegate int = 100 20 21 DefaultWeightCommunitySpendProposal int = 5 22 DefaultWeightTextProposal int = 5 23 DefaultWeightParamChangeProposal int = 5 24 25 DefaultWeightMsgStoreCode int = 50 26 DefaultWeightMsgInstantiateContract int = 100 27 DefaultWeightMsgExecuteContract int = 100 28 29 // feegrant 30 DefaultWeightGrantFeeAllowance int = 100 31 DefaultWeightRevokeFeeAllowance int = 100 32 )