2024-05-01 04:26:39 +00:00
|
|
|
package main
|
2022-01-08 00:39:27 +00:00
|
|
|
|
|
|
|
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"
|
|
|
|
|
2024-05-01 03:17:24 +00:00
|
|
|
"github.com/0glabs/0g-chain/app"
|
2022-01-08 00:39:27 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// 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
|
|
|
|
}
|