github.com/Finschia/finschia-sdk@v0.48.1/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 // feegrant 26 DefaultWeightGrantAllowance int = 100 27 DefaultWeightRevokeAllowance int = 100 28 DefaultWeightMsgStoreCode int = 100 29 DefaultWeightMsgInstantiateContract int = 100 30 )