-
Notifications
You must be signed in to change notification settings - Fork 173
Expand file tree
/
Copy pathquery.go
More file actions
80 lines (67 loc) · 2.17 KB
/
query.go
File metadata and controls
80 lines (67 loc) · 2.17 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
package cli
import (
"fmt"
"github.com/cosmos/cosmos-sdk/client"
"github.com/cosmos/cosmos-sdk/client/flags"
"github.com/spf13/cobra"
"github.com/umee-network/umee/v3/util/cli"
"github.com/umee-network/umee/v3/x/ibctransfer/types"
)
// GetQueryCmd returns the CLI query commands for the x/ibc-rate-limit module.
func GetQueryCmd(queryRoute string) *cobra.Command {
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(
GetCmdQueryParams(),
GetRateLimitsForIBCDenoms(),
)
return cmd
}
// GetCmdQueryParams creates a Cobra command to query for the x/ibc-rate-limit
// module parameters.
func GetCmdQueryParams() *cobra.Command {
cmd := &cobra.Command{
Use: "params",
Args: cobra.NoArgs,
Short: "Query the x/ibc-rate-limit module parameters",
RunE: func(cmd *cobra.Command, args []string) error {
clientCtx, err := client.GetClientQueryContext(cmd)
if err != nil {
return err
}
queryClient := types.NewQueryClient(clientCtx)
resp, err := queryClient.Params(cmd.Context(), &types.QueryParams{})
return cli.PrintOrErr(resp, err, clientCtx)
},
}
flags.AddQueryFlagsToCmd(cmd)
return cmd
}
// GetRateLimitsForIBCDenoms
func GetRateLimitsForIBCDenoms() *cobra.Command {
cmd := &cobra.Command{
Use: "rate-limits [ibc-denom]",
Args: cobra.MaximumNArgs(1),
Short: "Get the rate limits for ibc denoms",
RunE: func(cmd *cobra.Command, args []string) error {
clientCtx, err := client.GetClientQueryContext(cmd)
if err != nil {
return err
}
queryClient := types.NewQueryClient(clientCtx)
if len(args) > 0 {
resp, err := queryClient.RateLimitsOfIBCDenom(cmd.Context(), &types.QueryRateLimitsOfIBCDenom{IbcDenom: args[0]})
return cli.PrintOrErr(resp, err, clientCtx)
}
resp, err := queryClient.RateLimitsOfIBCDenoms(cmd.Context(), &types.QueryRateLimitsOfIBCDenoms{})
return cli.PrintOrErr(resp, err, clientCtx)
},
}
flags.AddQueryFlagsToCmd(cmd)
return cmd
}