Documentation ¶
Index ¶
- func GetAccountCmd() *cobra.Command
- func GetAccountsCmd() *cobra.Command
- func GetBroadcastCommand() *cobra.Command
- func GetDecodeCommand() *cobra.Command
- func GetEncodeCommand() *cobra.Command
- func GetMultiSignBatchCmd() *cobra.Command
- func GetMultiSignCommand() *cobra.Command
- func GetQueryCmd() *cobra.Command
- func GetSignBatchCommand() *cobra.Command
- func GetSignCommand() *cobra.Command
- func GetValidateSignaturesCommand() *cobra.Command
- func QueryModuleAccountByNameCmd() *cobra.Command
- func QueryParamsCmd() *cobra.Command
- func QueryTxCmd() *cobra.Command
- func QueryTxsByEventsCmd() *cobra.Command
- type BroadcastReq
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func GetAccountCmd ¶
GetAccountCmd returns a query account that will display the state of the account at a given address.
func GetAccountsCmd ¶ added in v0.43.0
GetAccountsCmd returns a query command that will display a list of accounts
func GetBroadcastCommand ¶
GetBroadcastCommand returns the tx broadcast command.
func GetDecodeCommand ¶
GetDecodeCommand returns the decode command to take serialized bytes and turn it into a JSON-encoded transaction.
func GetEncodeCommand ¶
GetEncodeCommand returns the encode command to take a JSONified transaction and turn it into Amino-serialized bytes
func GetMultiSignBatchCmd ¶ added in v0.41.4
func GetMultiSignCommand ¶
GetSignCommand returns the sign command
func GetQueryCmd ¶
GetQueryCmd returns the transaction commands for this module
func GetSignBatchCommand ¶ added in v0.40.0
GetSignBatchCommand returns the transaction sign-batch command.
func GetSignCommand ¶
GetSignCommand returns the transaction sign command.
func QueryModuleAccountByNameCmd ¶ added in v0.45.10
QueryModuleAccountByNameCmd returns a command to
func QueryParamsCmd ¶
QueryParamsCmd returns the command handler for evidence parameter querying.
func QueryTxCmd ¶
QueryTxCmd implements the default command for a tx query.
func QueryTxsByEventsCmd ¶
QueryTxsByEventsCmd returns a command to search through transactions by events.
Types ¶
type BroadcastReq ¶ added in v0.44.0
type BroadcastReq struct { Tx legacytx.StdTx `json:"tx" yaml:"tx"` Mode string `json:"mode" yaml:"mode"` }
BroadcastReq defines a tx broadcasting request.