* x/ibc: final gRPC migration * grpc test * query client consensus states * remove dup type * query constructors * CLI queries * missing cmd * latest consensus state * parser test * register query service * Update x/ibc/02-client/client/cli/query.go Co-authored-by: colin axnér <25233464+colin-axner@users.noreply.github.com> * Update x/ibc/module.go Co-authored-by: colin axnér <25233464+colin-axner@users.noreply.github.com> * few grpc tests * fix tests * final gRPC tests * rm comment * address @colin-axner comment Co-authored-by: colin axnér <25233464+colin-axner@users.noreply.github.com>
31 lines
722 B
Go
31 lines
722 B
Go
package cli
|
|
|
|
import (
|
|
"github.com/spf13/cobra"
|
|
|
|
"github.com/cosmos/cosmos-sdk/client"
|
|
"github.com/cosmos/cosmos-sdk/x/ibc/02-client/types"
|
|
)
|
|
|
|
// GetQueryCmd returns the query commands for IBC clients
|
|
func GetQueryCmd() *cobra.Command {
|
|
queryCmd := &cobra.Command{
|
|
Use: types.SubModuleName,
|
|
Short: "IBC client query subcommands",
|
|
DisableFlagParsing: true,
|
|
SuggestionsMinimumDistance: 2,
|
|
RunE: client.ValidateCmd,
|
|
}
|
|
|
|
queryCmd.AddCommand(
|
|
GetCmdQueryClientStates(),
|
|
GetCmdQueryClientState(),
|
|
GetCmdQueryConsensusStates(),
|
|
GetCmdQueryConsensusState(),
|
|
GetCmdQueryHeader(),
|
|
GetCmdNodeConsensusState(),
|
|
)
|
|
|
|
return queryCmd
|
|
}
|