mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-12-26 16:25:21 +00:00
37 lines
947 B
Go
37 lines
947 B
Go
|
package cmd
|
||
|
|
||
|
import (
|
||
|
"github.com/cosmos/cosmos-sdk/client"
|
||
|
"github.com/cosmos/cosmos-sdk/client/flags"
|
||
|
"github.com/cosmos/cosmos-sdk/client/rpc"
|
||
|
authcmd "github.com/cosmos/cosmos-sdk/x/auth/client/cli"
|
||
|
"github.com/spf13/cobra"
|
||
|
|
||
|
"github.com/kava-labs/kava/app"
|
||
|
)
|
||
|
|
||
|
// newQueryCmd creates all the commands for querying blockchain state.
|
||
|
func newQueryCmd() *cobra.Command {
|
||
|
cmd := &cobra.Command{
|
||
|
Use: "query",
|
||
|
Aliases: []string{"q"},
|
||
|
Short: "Querying subcommands",
|
||
|
DisableFlagParsing: true,
|
||
|
SuggestionsMinimumDistance: 2,
|
||
|
RunE: client.ValidateCmd,
|
||
|
}
|
||
|
|
||
|
cmd.AddCommand(
|
||
|
authcmd.GetAccountCmd(),
|
||
|
rpc.ValidatorCommand(),
|
||
|
rpc.BlockCommand(),
|
||
|
authcmd.QueryTxsByEventsCmd(),
|
||
|
authcmd.QueryTxCmd(),
|
||
|
)
|
||
|
|
||
|
app.ModuleBasics.AddQueryCommands(cmd)
|
||
|
cmd.PersistentFlags().String(flags.FlagChainID, "", "The network chain ID")
|
||
|
|
||
|
return cmd
|
||
|
}
|