-
Notifications
You must be signed in to change notification settings - Fork 49
/
query.go
419 lines (348 loc) · 9.81 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
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
package cli
import (
"context"
"strings"
"github.com/spf13/cobra"
"github.com/classic-terra/core/v3/x/oracle/types"
"github.com/cosmos/cosmos-sdk/client"
"github.com/cosmos/cosmos-sdk/client/flags"
sdk "github.com/cosmos/cosmos-sdk/types"
)
// GetQueryCmd returns the cli query commands for this module
func GetQueryCmd() *cobra.Command {
oracleQueryCmd := &cobra.Command{
Use: types.ModuleName,
Short: "Querying commands for the oracle module",
DisableFlagParsing: true,
SuggestionsMinimumDistance: 2,
RunE: client.ValidateCmd,
}
oracleQueryCmd.AddCommand(
GetCmdQueryExchangeRates(),
GetCmdQueryActives(),
GetCmdQueryParams(),
GetCmdQueryFeederDelegation(),
GetCmdQueryMissCounter(),
GetCmdQueryAggregatePrevote(),
GetCmdQueryAggregateVote(),
GetCmdQueryVoteTargets(),
GetCmdQueryTobinTaxes(),
)
return oracleQueryCmd
}
// GetCmdQueryExchangeRates implements the query rate command.
func GetCmdQueryExchangeRates() *cobra.Command {
cmd := &cobra.Command{
Use: "exchange-rates [denom]",
Args: cobra.RangeArgs(0, 1),
Short: "Query the current Luna exchange rate w.r.t an asset",
Long: strings.TrimSpace(`
Query the current exchange rate of Luna with an asset.
You can find the current list of active denoms by running
$ terrad query oracle exchange-rates
Or, can filter with denom
$ terrad query oracle exchange-rates ukrw
`),
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 {
res, err := queryClient.ExchangeRates(context.Background(), &types.QueryExchangeRatesRequest{})
if err != nil {
return err
}
return clientCtx.PrintProto(res)
}
denom := args[0]
res, err := queryClient.ExchangeRate(
context.Background(),
&types.QueryExchangeRateRequest{Denom: denom},
)
if err != nil {
return err
}
return clientCtx.PrintProto(res)
},
}
flags.AddQueryFlagsToCmd(cmd)
return cmd
}
// GetCmdQueryActives implements the query actives command.
func GetCmdQueryActives() *cobra.Command {
cmd := &cobra.Command{
Use: "actives",
Args: cobra.NoArgs,
Short: "Query the active list of Terra assets recognized by the oracle",
Long: strings.TrimSpace(`
Query the active list of Terra assets recognized by the types.
$ terrad query oracle actives
`),
RunE: func(cmd *cobra.Command, args []string) error {
clientCtx, err := client.GetClientQueryContext(cmd)
if err != nil {
return err
}
queryClient := types.NewQueryClient(clientCtx)
res, err := queryClient.Actives(context.Background(), &types.QueryActivesRequest{})
if err != nil {
return err
}
return clientCtx.PrintProto(res)
},
}
flags.AddQueryFlagsToCmd(cmd)
return cmd
}
// GetCmdQueryParams implements the query params command.
func GetCmdQueryParams() *cobra.Command {
cmd := &cobra.Command{
Use: "params",
Args: cobra.NoArgs,
Short: "Query the current Oracle params",
RunE: func(cmd *cobra.Command, args []string) error {
clientCtx, err := client.GetClientQueryContext(cmd)
if err != nil {
return err
}
queryClient := types.NewQueryClient(clientCtx)
res, err := queryClient.Params(context.Background(), &types.QueryParamsRequest{})
if err != nil {
return err
}
return clientCtx.PrintProto(res)
},
}
flags.AddQueryFlagsToCmd(cmd)
return cmd
}
// GetCmdQueryFeederDelegation implements the query feeder delegation command
func GetCmdQueryFeederDelegation() *cobra.Command {
cmd := &cobra.Command{
Use: "feeder [validator]",
Args: cobra.ExactArgs(1),
Short: "Query the oracle feeder delegate account",
Long: strings.TrimSpace(`
Query the account the validator's oracle voting right is delegated to.
$ terrad query oracle feeder terravaloper...
`),
RunE: func(cmd *cobra.Command, args []string) error {
clientCtx, err := client.GetClientQueryContext(cmd)
if err != nil {
return err
}
queryClient := types.NewQueryClient(clientCtx)
valString := args[0]
validator, err := sdk.ValAddressFromBech32(valString)
if err != nil {
return err
}
res, err := queryClient.FeederDelegation(
context.Background(),
&types.QueryFeederDelegationRequest{ValidatorAddr: validator.String()},
)
if err != nil {
return err
}
return clientCtx.PrintProto(res)
},
}
flags.AddQueryFlagsToCmd(cmd)
return cmd
}
// GetCmdQueryMissCounter implements the query miss counter of the validator command
func GetCmdQueryMissCounter() *cobra.Command {
cmd := &cobra.Command{
Use: "miss [validator]",
Args: cobra.ExactArgs(1),
Short: "Query the # of the miss count",
Long: strings.TrimSpace(`
Query the # of vote periods missed in this oracle slash window.
$ terrad query oracle miss terravaloper...
`),
RunE: func(cmd *cobra.Command, args []string) error {
clientCtx, err := client.GetClientQueryContext(cmd)
if err != nil {
return err
}
queryClient := types.NewQueryClient(clientCtx)
valString := args[0]
validator, err := sdk.ValAddressFromBech32(valString)
if err != nil {
return err
}
res, err := queryClient.MissCounter(
context.Background(),
&types.QueryMissCounterRequest{ValidatorAddr: validator.String()},
)
if err != nil {
return err
}
return clientCtx.PrintProto(res)
},
}
flags.AddQueryFlagsToCmd(cmd)
return cmd
}
// GetCmdQueryAggregatePrevote implements the query aggregate prevote of the validator command
func GetCmdQueryAggregatePrevote() *cobra.Command {
cmd := &cobra.Command{
Use: "aggregate-prevotes [validator]",
Args: cobra.RangeArgs(0, 1),
Short: "Query outstanding oracle aggregate prevotes.",
Long: strings.TrimSpace(`
Query outstanding oracle aggregate prevotes.
$ terrad query oracle aggregate-prevotes
Or, can filter with voter address
$ terrad query oracle aggregate-prevotes terravaloper...
`),
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 {
res, err := queryClient.AggregatePrevotes(
context.Background(),
&types.QueryAggregatePrevotesRequest{},
)
if err != nil {
return err
}
return clientCtx.PrintProto(res)
}
valString := args[0]
validator, err := sdk.ValAddressFromBech32(valString)
if err != nil {
return err
}
res, err := queryClient.AggregatePrevote(
context.Background(),
&types.QueryAggregatePrevoteRequest{ValidatorAddr: validator.String()},
)
if err != nil {
return err
}
return clientCtx.PrintProto(res)
},
}
flags.AddQueryFlagsToCmd(cmd)
return cmd
}
// GetCmdQueryAggregateVote implements the query aggregate prevote of the validator command
func GetCmdQueryAggregateVote() *cobra.Command {
cmd := &cobra.Command{
Use: "aggregate-votes [validator]",
Args: cobra.RangeArgs(0, 1),
Short: "Query outstanding oracle aggregate votes.",
Long: strings.TrimSpace(`
Query outstanding oracle aggregate vote.
$ terrad query oracle aggregate-votes
Or, can filter with voter address
$ terrad query oracle aggregate-votes terravaloper...
`),
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 {
res, err := queryClient.AggregateVotes(
context.Background(),
&types.QueryAggregateVotesRequest{},
)
if err != nil {
return err
}
return clientCtx.PrintProto(res)
}
valString := args[0]
validator, err := sdk.ValAddressFromBech32(valString)
if err != nil {
return err
}
res, err := queryClient.AggregateVote(
context.Background(),
&types.QueryAggregateVoteRequest{ValidatorAddr: validator.String()},
)
if err != nil {
return err
}
return clientCtx.PrintProto(res)
},
}
flags.AddQueryFlagsToCmd(cmd)
return cmd
}
// GetCmdQueryVoteTargets implements the query params command.
func GetCmdQueryVoteTargets() *cobra.Command {
cmd := &cobra.Command{
Use: "vote-targets",
Args: cobra.NoArgs,
Short: "Query the current Oracle vote targets",
RunE: func(cmd *cobra.Command, args []string) error {
clientCtx, err := client.GetClientQueryContext(cmd)
if err != nil {
return err
}
queryClient := types.NewQueryClient(clientCtx)
res, err := queryClient.VoteTargets(
context.Background(),
&types.QueryVoteTargetsRequest{},
)
if err != nil {
return err
}
return clientCtx.PrintProto(res)
},
}
flags.AddQueryFlagsToCmd(cmd)
return cmd
}
// GetCmdQueryTobinTaxes implements the query params command.
func GetCmdQueryTobinTaxes() *cobra.Command {
cmd := &cobra.Command{
Use: "tobin-taxes [denom]",
Args: cobra.RangeArgs(0, 1),
Short: "Query the current Oracle tobin taxes.",
Long: strings.TrimSpace(`
Query the current Oracle tobin taxes.
$ terrad query oracle tobin-taxes
Or, can filter with denom
$ terrad query oracle tobin-taxes ukrw
Or, can
`),
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 {
res, err := queryClient.TobinTaxes(
context.Background(),
&types.QueryTobinTaxesRequest{},
)
if err != nil {
return err
}
return clientCtx.PrintProto(res)
}
denom := args[0]
res, err := queryClient.TobinTax(
context.Background(),
&types.QueryTobinTaxRequest{Denom: denom},
)
if err != nil {
return err
}
return clientCtx.PrintProto(res)
},
}
flags.AddQueryFlagsToCmd(cmd)
return cmd
}