Documentation ¶
Index ¶
- Constants
- Variables
- func GetCmdQueryDeposit() *cobra.Command
- func GetCmdQueryDeposits() *cobra.Command
- func GetCmdQueryParam() *cobra.Command
- func GetCmdQueryParams() *cobra.Command
- func GetCmdQueryProposal() *cobra.Command
- func GetCmdQueryProposals() *cobra.Command
- func GetCmdQueryProposer() *cobra.Command
- func GetCmdQueryTally() *cobra.Command
- func GetCmdQueryVote() *cobra.Command
- func GetCmdQueryVotes() *cobra.Command
- func GetQueryCmd() *cobra.Command
- func NewCmdDeposit() *cobra.Command
- func NewCmdSubmitLegacyProposal() *cobra.Command
- func NewCmdSubmitProposal() *cobra.Command
- func NewCmdVote() *cobra.Command
- func NewCmdWeightedVote() *cobra.Command
- func NewTxCmd(legacyPropCmds []*cobra.Command) *cobra.Command
Constants ¶
const ( // Deprecated: only used for v1beta1 legacy proposals. FlagTitle = "title" // Deprecated: only used for v1beta1 legacy proposals. FlagDescription = "description" // Deprecated: only used for v1beta1 legacy proposals. FlagProposalType = "type" FlagDeposit = "deposit" // Deprecated: only used for v1beta1 legacy proposals. FlagProposal = "proposal" )
Proposal flags
Variables ¶
var ProposalFlags = []string{ FlagTitle, FlagDescription, FlagProposalType, FlagDeposit, }
ProposalFlags defines the core required fields of a legacy proposal. It is used to verify that these values are not provided in conjunction with a JSON proposal file.
Functions ¶
func GetCmdQueryDeposit ¶ added in v0.25.0
GetCmdQueryDeposit implements the query proposal deposit command. Command to get a specific Deposit Information.
func GetCmdQueryDeposits ¶ added in v0.25.0
GetCmdQueryDeposits implements the command to query for proposal deposits.
func GetCmdQueryParam ¶ added in v0.30.0
GetCmdQueryParam implements the query param command.
func GetCmdQueryParams ¶ added in v0.27.0
GetCmdQueryParams implements the query params command.
func GetCmdQueryProposal ¶
GetCmdQueryProposal implements the query proposal command.
func GetCmdQueryProposals ¶ added in v0.24.0
GetCmdQueryProposals implements a query proposals command. Command to Get Proposals Information.
func GetCmdQueryProposer ¶ added in v0.30.0
GetCmdQueryProposer implements the query proposer command.
func GetCmdQueryTally ¶ added in v0.25.0
GetCmdQueryTally implements the command to query for proposal tally result.
func GetCmdQueryVote ¶
GetCmdQueryVote implements the query proposal vote command. Command to Get a Vote Information.
func GetCmdQueryVotes ¶ added in v0.23.0
GetCmdQueryVotes implements the command to query for proposal votes.
func GetQueryCmd ¶ added in v0.47.0
GetQueryCmd returns the cli query commands for this module
func NewCmdDeposit ¶ added in v0.47.0
NewCmdDeposit implements depositing tokens for an active proposal.
func NewCmdSubmitLegacyProposal ¶ added in v0.47.0
NewCmdSubmitLegacyProposal implements submitting a proposal transaction command. Deprecated: please use NewCmdSubmitProposal instead.
func NewCmdSubmitProposal ¶ added in v0.47.0
NewCmdSubmitProposal implements submitting a proposal transaction command.
func NewCmdVote ¶ added in v0.47.0
NewCmdVote implements creating a new vote command.
func NewCmdWeightedVote ¶ added in v0.47.0
NewCmdWeightedVote implements creating a new weighted vote command.
func NewTxCmd ¶ added in v0.47.0
NewTxCmd returns the transaction commands for this module governance ModuleClient is slightly different from other ModuleClients in that it contains a slice of legacy "proposal" child commands. These commands are respective to the proposal type handlers that are implemented in other modules but are mounted under the governance CLI (eg. parameter change proposals).
Types ¶
This section is empty.