-
Notifications
You must be signed in to change notification settings - Fork 1
/
query_confirmation.go
73 lines (55 loc) · 1.51 KB
/
query_confirmation.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
package cli
import (
"context"
"github.com/cosmos/cosmos-sdk/client"
"github.com/cosmos/cosmos-sdk/client/flags"
"github.com/rarimo/rarimo-core/x/rarimocore/types"
"github.com/spf13/cobra"
)
func CmdListConfirmation() *cobra.Command {
cmd := &cobra.Command{
Use: "list-confirmation",
Short: "list all confirmation",
RunE: func(cmd *cobra.Command, args []string) error {
clientCtx := client.GetClientContextFromCmd(cmd)
pageReq, err := client.ReadPageRequest(cmd.Flags())
if err != nil {
return err
}
queryClient := types.NewQueryClient(clientCtx)
params := &types.QueryAllConfirmationRequest{
Pagination: pageReq,
}
res, err := queryClient.ConfirmationAll(context.Background(), params)
if err != nil {
return err
}
return clientCtx.PrintProto(res)
},
}
flags.AddPaginationFlagsToCmd(cmd, cmd.Use)
flags.AddQueryFlagsToCmd(cmd)
return cmd
}
func CmdShowConfirmation() *cobra.Command {
cmd := &cobra.Command{
Use: "show-confirmation [root]",
Short: "shows a confirmation",
Args: cobra.ExactArgs(1),
RunE: func(cmd *cobra.Command, args []string) (err error) {
clientCtx := client.GetClientContextFromCmd(cmd)
queryClient := types.NewQueryClient(clientCtx)
argRoot := args[0]
params := &types.QueryGetConfirmationRequest{
Root: argRoot,
}
res, err := queryClient.Confirmation(context.Background(), params)
if err != nil {
return err
}
return clientCtx.PrintProto(res)
},
}
flags.AddQueryFlagsToCmd(cmd)
return cmd
}