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.47.0
GetAccountsCmd returns a query command that will display a list of accounts
func GetBroadcastCommand ¶ added in v0.31.0
GetBroadcastCommand returns the tx broadcast command.
func GetDecodeCommand ¶ added in v0.47.0
GetDecodeCommand returns the decode command to take serialized bytes and turn it into a JSON-encoded transaction.
func GetEncodeCommand ¶ added in v0.31.0
GetEncodeCommand returns the encode command to take a JSONified transaction and turn it into Amino-serialized bytes
func GetMultiSignBatchCmd ¶ added in v0.47.0
func GetMultiSignCommand ¶ added in v0.30.0
GetSignCommand returns the sign command
func GetQueryCmd ¶ added in v0.47.0
GetQueryCmd returns the transaction commands for this module
func GetSignBatchCommand ¶ added in v0.47.0
GetSignBatchCommand returns the transaction sign-batch command.
func GetSignCommand ¶ added in v0.25.0
GetSignCommand returns the transaction sign command.
func GetValidateSignaturesCommand ¶ added in v0.47.0
func QueryModuleAccountByNameCmd ¶ added in v0.47.0
QueryModuleAccountByNameCmd returns a command to
func QueryParamsCmd ¶ added in v0.47.0
QueryParamsCmd returns the command handler for evidence parameter querying.
func QueryTxCmd ¶ added in v0.47.0
QueryTxCmd implements the default command for a tx query.
func QueryTxsByEventsCmd ¶ added in v0.47.0
QueryTxsByEventsCmd returns a command to search through transactions by events.
Types ¶
type BroadcastReq ¶ added in v0.47.0
type BroadcastReq struct { Tx legacytx.StdTx `json:"tx" yaml:"tx"` Mode string `json:"mode" yaml:"mode"` }
BroadcastReq defines a tx broadcasting request.