-
Notifications
You must be signed in to change notification settings - Fork 204
/
query.go
39 lines (32 loc) · 1.12 KB
/
query.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
package cli
import (
"fmt"
// "strings"
"github.com/spf13/cobra"
"github.com/cosmos/cosmos-sdk/client"
// "github.com/cosmos/cosmos-sdk/client/flags"
// sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/Stride-Labs/stride/v17/x/records/types"
)
// GetQueryCmd returns the cli query commands for this module
func GetQueryCmd(queryRoute string) *cobra.Command {
// Group records queries under a subcommand
cmd := &cobra.Command{
Use: types.ModuleName,
Short: fmt.Sprintf("Querying commands for the %s module", types.ModuleName),
DisableFlagParsing: true,
SuggestionsMinimumDistance: 2,
RunE: client.ValidateCmd,
}
cmd.AddCommand(CmdQueryParams())
cmd.AddCommand(CmdListUserRedemptionRecord())
cmd.AddCommand(CmdShowUserRedemptionRecord())
cmd.AddCommand(CmdListEpochUnbondingRecord())
cmd.AddCommand(CmdShowEpochUnbondingRecord())
cmd.AddCommand(CmdListDepositRecord())
cmd.AddCommand(CmdShowDepositRecord())
cmd.AddCommand(CmdListDepositRecordByHost())
cmd.AddCommand(CmdLSMDeposit())
cmd.AddCommand(CmdLSMDeposits())
return cmd
}