forked from cosmos/ibc-go
-
Notifications
You must be signed in to change notification settings - Fork 9
/
cli.go
53 lines (45 loc) · 1.3 KB
/
cli.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
package cli
import (
"github.com/Finschia/finschia-sdk/client"
"github.com/spf13/cobra"
"github.com/Finschia/ibc-go/v3/modules/core/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(),
GetCmdQueryClientStatus(),
GetCmdQueryConsensusStates(),
GetCmdQueryConsensusStateHeights(),
GetCmdQueryConsensusState(),
GetCmdQueryHeader(),
GetCmdSelfConsensusState(),
GetCmdParams(),
)
return queryCmd
}
// NewTxCmd returns the command to create and handle IBC clients
func NewTxCmd() *cobra.Command {
txCmd := &cobra.Command{
Use: types.SubModuleName,
Short: "IBC client transaction subcommands",
DisableFlagParsing: true,
SuggestionsMinimumDistance: 2,
RunE: client.ValidateCmd,
}
txCmd.AddCommand(
NewCreateClientCmd(),
NewUpdateClientCmd(),
NewSubmitMisbehaviourCmd(),
NewUpgradeClientCmd(),
)
return txCmd
}