@trust-ethos/cli 0.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (104) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +1791 -0
  3. package/bin/dev.cmd +3 -0
  4. package/bin/dev.js +5 -0
  5. package/bin/run.cmd +3 -0
  6. package/bin/run.js +5 -0
  7. package/dist/commands/auction/active.d.ts +10 -0
  8. package/dist/commands/auction/active.js +39 -0
  9. package/dist/commands/auction/info.d.ts +16 -0
  10. package/dist/commands/auction/info.js +46 -0
  11. package/dist/commands/auction/list.d.ts +14 -0
  12. package/dist/commands/auction/list.js +61 -0
  13. package/dist/commands/broker/info.d.ts +16 -0
  14. package/dist/commands/broker/info.js +37 -0
  15. package/dist/commands/broker/list.d.ts +15 -0
  16. package/dist/commands/broker/list.js +62 -0
  17. package/dist/commands/config/get.d.ts +9 -0
  18. package/dist/commands/config/get.js +29 -0
  19. package/dist/commands/config/path.d.ts +6 -0
  20. package/dist/commands/config/path.js +12 -0
  21. package/dist/commands/config/set.d.ts +9 -0
  22. package/dist/commands/config/set.js +28 -0
  23. package/dist/commands/listing/info.d.ts +13 -0
  24. package/dist/commands/listing/info.js +41 -0
  25. package/dist/commands/listing/list.d.ts +13 -0
  26. package/dist/commands/listing/list.js +46 -0
  27. package/dist/commands/listing/voters.d.ts +19 -0
  28. package/dist/commands/listing/voters.js +48 -0
  29. package/dist/commands/market/featured.d.ts +10 -0
  30. package/dist/commands/market/featured.js +34 -0
  31. package/dist/commands/market/holders.d.ts +14 -0
  32. package/dist/commands/market/holders.js +46 -0
  33. package/dist/commands/market/info.d.ts +14 -0
  34. package/dist/commands/market/info.js +48 -0
  35. package/dist/commands/market/list.d.ts +16 -0
  36. package/dist/commands/market/list.js +55 -0
  37. package/dist/commands/nft/list.d.ts +15 -0
  38. package/dist/commands/nft/list.js +64 -0
  39. package/dist/commands/review/info.d.ts +17 -0
  40. package/dist/commands/review/info.js +49 -0
  41. package/dist/commands/review/list.d.ts +16 -0
  42. package/dist/commands/review/list.js +68 -0
  43. package/dist/commands/review/votes.d.ts +21 -0
  44. package/dist/commands/review/votes.js +91 -0
  45. package/dist/commands/score/status.d.ts +13 -0
  46. package/dist/commands/score/status.js +54 -0
  47. package/dist/commands/slash/info.d.ts +16 -0
  48. package/dist/commands/slash/info.js +42 -0
  49. package/dist/commands/slash/list.d.ts +15 -0
  50. package/dist/commands/slash/list.js +50 -0
  51. package/dist/commands/slash/votes.d.ts +21 -0
  52. package/dist/commands/slash/votes.js +91 -0
  53. package/dist/commands/user/activity.d.ts +15 -0
  54. package/dist/commands/user/activity.js +71 -0
  55. package/dist/commands/user/info.d.ts +14 -0
  56. package/dist/commands/user/info.js +51 -0
  57. package/dist/commands/user/invitations.d.ts +16 -0
  58. package/dist/commands/user/invitations.js +73 -0
  59. package/dist/commands/user/search.d.ts +15 -0
  60. package/dist/commands/user/search.js +59 -0
  61. package/dist/commands/user/summary.d.ts +14 -0
  62. package/dist/commands/user/summary.js +134 -0
  63. package/dist/commands/validator/info.d.ts +13 -0
  64. package/dist/commands/validator/info.js +53 -0
  65. package/dist/commands/validator/list.d.ts +13 -0
  66. package/dist/commands/validator/list.js +64 -0
  67. package/dist/commands/validator/sales.d.ts +12 -0
  68. package/dist/commands/validator/sales.js +52 -0
  69. package/dist/commands/vouch/info.d.ts +17 -0
  70. package/dist/commands/vouch/info.js +53 -0
  71. package/dist/commands/vouch/list.d.ts +18 -0
  72. package/dist/commands/vouch/list.js +89 -0
  73. package/dist/commands/vouch/mutual.d.ts +15 -0
  74. package/dist/commands/vouch/mutual.js +68 -0
  75. package/dist/commands/vouch/votes.d.ts +21 -0
  76. package/dist/commands/vouch/votes.js +91 -0
  77. package/dist/commands/xp/rank.d.ts +15 -0
  78. package/dist/commands/xp/rank.js +74 -0
  79. package/dist/commands/xp/seasons.d.ts +10 -0
  80. package/dist/commands/xp/seasons.js +42 -0
  81. package/dist/hooks/init.d.ts +3 -0
  82. package/dist/hooks/init.js +40 -0
  83. package/dist/index.d.ts +1 -0
  84. package/dist/index.js +1 -0
  85. package/dist/lib/api/echo-client.d.ts +624 -0
  86. package/dist/lib/api/echo-client.js +408 -0
  87. package/dist/lib/config/index.d.ts +6 -0
  88. package/dist/lib/config/index.js +32 -0
  89. package/dist/lib/errors/cli-error.d.ts +23 -0
  90. package/dist/lib/errors/cli-error.js +57 -0
  91. package/dist/lib/formatting/colors.d.ts +13 -0
  92. package/dist/lib/formatting/colors.js +22 -0
  93. package/dist/lib/formatting/error.d.ts +1 -0
  94. package/dist/lib/formatting/error.js +64 -0
  95. package/dist/lib/formatting/output.d.ts +45 -0
  96. package/dist/lib/formatting/output.js +753 -0
  97. package/dist/lib/help.d.ts +4 -0
  98. package/dist/lib/help.js +28 -0
  99. package/dist/lib/update/index.d.ts +37 -0
  100. package/dist/lib/update/index.js +286 -0
  101. package/dist/lib/validation/userkey.d.ts +11 -0
  102. package/dist/lib/validation/userkey.js +81 -0
  103. package/oclif.manifest.json +2224 -0
  104. package/package.json +87 -0
@@ -0,0 +1,2224 @@
1
+ {
2
+ "commands": {
3
+ "auction:active": {
4
+ "aliases": [],
5
+ "args": {},
6
+ "description": "Show the currently active auction",
7
+ "examples": [
8
+ "<%= config.bin %> <%= command.id %>",
9
+ "<%= config.bin %> <%= command.id %> --json"
10
+ ],
11
+ "flags": {
12
+ "json": {
13
+ "char": "j",
14
+ "description": "Output as JSON",
15
+ "name": "json",
16
+ "allowNo": false,
17
+ "type": "boolean"
18
+ },
19
+ "verbose": {
20
+ "char": "v",
21
+ "description": "Show detailed error information",
22
+ "name": "verbose",
23
+ "allowNo": false,
24
+ "type": "boolean"
25
+ }
26
+ },
27
+ "hasDynamicHelp": false,
28
+ "hiddenAliases": [],
29
+ "id": "auction:active",
30
+ "pluginAlias": "@trust-ethos/cli",
31
+ "pluginName": "@trust-ethos/cli",
32
+ "pluginType": "core",
33
+ "strict": true,
34
+ "enableJsonFlag": false,
35
+ "isESM": true,
36
+ "relativePath": [
37
+ "dist",
38
+ "commands",
39
+ "auction",
40
+ "active.js"
41
+ ]
42
+ },
43
+ "auction:info": {
44
+ "aliases": [],
45
+ "args": {
46
+ "id": {
47
+ "description": "Auction ID",
48
+ "name": "id",
49
+ "required": true
50
+ }
51
+ },
52
+ "description": "Get details of a specific auction",
53
+ "examples": [
54
+ "<%= config.bin %> <%= command.id %> 1",
55
+ "<%= config.bin %> <%= command.id %> 1 --json"
56
+ ],
57
+ "flags": {
58
+ "json": {
59
+ "char": "j",
60
+ "description": "Output as JSON",
61
+ "name": "json",
62
+ "allowNo": false,
63
+ "type": "boolean"
64
+ },
65
+ "verbose": {
66
+ "char": "v",
67
+ "description": "Show detailed error information",
68
+ "name": "verbose",
69
+ "allowNo": false,
70
+ "type": "boolean"
71
+ }
72
+ },
73
+ "hasDynamicHelp": false,
74
+ "hiddenAliases": [],
75
+ "id": "auction:info",
76
+ "pluginAlias": "@trust-ethos/cli",
77
+ "pluginName": "@trust-ethos/cli",
78
+ "pluginType": "core",
79
+ "strict": true,
80
+ "enableJsonFlag": false,
81
+ "isESM": true,
82
+ "relativePath": [
83
+ "dist",
84
+ "commands",
85
+ "auction",
86
+ "info.js"
87
+ ]
88
+ },
89
+ "auction:list": {
90
+ "aliases": [],
91
+ "args": {},
92
+ "description": "List validator NFT auctions",
93
+ "examples": [
94
+ "<%= config.bin %> <%= command.id %>",
95
+ "<%= config.bin %> <%= command.id %> --status active",
96
+ "<%= config.bin %> <%= command.id %> --json"
97
+ ],
98
+ "flags": {
99
+ "json": {
100
+ "char": "j",
101
+ "description": "Output as JSON",
102
+ "name": "json",
103
+ "allowNo": false,
104
+ "type": "boolean"
105
+ },
106
+ "verbose": {
107
+ "char": "v",
108
+ "description": "Show detailed error information",
109
+ "name": "verbose",
110
+ "allowNo": false,
111
+ "type": "boolean"
112
+ },
113
+ "status": {
114
+ "description": "Filter by status",
115
+ "name": "status",
116
+ "hasDynamicHelp": false,
117
+ "multiple": false,
118
+ "options": [
119
+ "pending",
120
+ "active",
121
+ "ended",
122
+ "settled"
123
+ ],
124
+ "type": "option"
125
+ },
126
+ "limit": {
127
+ "char": "l",
128
+ "description": "Max results per request",
129
+ "name": "limit",
130
+ "default": 10,
131
+ "hasDynamicHelp": false,
132
+ "multiple": false,
133
+ "type": "option"
134
+ },
135
+ "offset": {
136
+ "char": "o",
137
+ "description": "Number of results to skip",
138
+ "name": "offset",
139
+ "default": 0,
140
+ "hasDynamicHelp": false,
141
+ "multiple": false,
142
+ "type": "option"
143
+ }
144
+ },
145
+ "hasDynamicHelp": false,
146
+ "hiddenAliases": [],
147
+ "id": "auction:list",
148
+ "pluginAlias": "@trust-ethos/cli",
149
+ "pluginName": "@trust-ethos/cli",
150
+ "pluginType": "core",
151
+ "strict": true,
152
+ "enableJsonFlag": false,
153
+ "isESM": true,
154
+ "relativePath": [
155
+ "dist",
156
+ "commands",
157
+ "auction",
158
+ "list.js"
159
+ ]
160
+ },
161
+ "broker:info": {
162
+ "aliases": [],
163
+ "args": {
164
+ "id": {
165
+ "description": "Broker post ID",
166
+ "name": "id",
167
+ "required": true
168
+ }
169
+ },
170
+ "description": "Get details of a specific broker post",
171
+ "examples": [
172
+ "<%= config.bin %> <%= command.id %> 123",
173
+ "<%= config.bin %> <%= command.id %> 123 --json"
174
+ ],
175
+ "flags": {
176
+ "json": {
177
+ "char": "j",
178
+ "description": "Output as JSON",
179
+ "name": "json",
180
+ "allowNo": false,
181
+ "type": "boolean"
182
+ },
183
+ "verbose": {
184
+ "char": "v",
185
+ "description": "Show detailed error information",
186
+ "name": "verbose",
187
+ "allowNo": false,
188
+ "type": "boolean"
189
+ }
190
+ },
191
+ "hasDynamicHelp": false,
192
+ "hiddenAliases": [],
193
+ "id": "broker:info",
194
+ "pluginAlias": "@trust-ethos/cli",
195
+ "pluginName": "@trust-ethos/cli",
196
+ "pluginType": "core",
197
+ "strict": true,
198
+ "enableJsonFlag": false,
199
+ "isESM": true,
200
+ "relativePath": [
201
+ "dist",
202
+ "commands",
203
+ "broker",
204
+ "info.js"
205
+ ]
206
+ },
207
+ "broker:list": {
208
+ "aliases": [],
209
+ "args": {},
210
+ "description": "List broker posts (jobs, services, bounties)",
211
+ "examples": [
212
+ "<%= config.bin %> <%= command.id %>",
213
+ "<%= config.bin %> <%= command.id %> --type hire",
214
+ "<%= config.bin %> <%= command.id %> --search \"solidity developer\"",
215
+ "<%= config.bin %> <%= command.id %> --type sell --limit 5 --json"
216
+ ],
217
+ "flags": {
218
+ "json": {
219
+ "char": "j",
220
+ "description": "Output as JSON",
221
+ "name": "json",
222
+ "allowNo": false,
223
+ "type": "boolean"
224
+ },
225
+ "verbose": {
226
+ "char": "v",
227
+ "description": "Show detailed error information",
228
+ "name": "verbose",
229
+ "allowNo": false,
230
+ "type": "boolean"
231
+ },
232
+ "type": {
233
+ "char": "t",
234
+ "description": "Filter by post type",
235
+ "name": "type",
236
+ "hasDynamicHelp": false,
237
+ "multiple": false,
238
+ "options": [
239
+ "sell",
240
+ "buy",
241
+ "hire",
242
+ "for-hire",
243
+ "bounty"
244
+ ],
245
+ "type": "option"
246
+ },
247
+ "search": {
248
+ "char": "s",
249
+ "description": "Search in title/description",
250
+ "name": "search",
251
+ "hasDynamicHelp": false,
252
+ "multiple": false,
253
+ "type": "option"
254
+ },
255
+ "sort": {
256
+ "description": "Sort order",
257
+ "name": "sort",
258
+ "default": "hot",
259
+ "hasDynamicHelp": false,
260
+ "multiple": false,
261
+ "options": [
262
+ "newest",
263
+ "top",
264
+ "hot"
265
+ ],
266
+ "type": "option"
267
+ },
268
+ "limit": {
269
+ "char": "l",
270
+ "description": "Max results per request",
271
+ "name": "limit",
272
+ "default": 10,
273
+ "hasDynamicHelp": false,
274
+ "multiple": false,
275
+ "type": "option"
276
+ },
277
+ "offset": {
278
+ "char": "o",
279
+ "description": "Number of results to skip",
280
+ "name": "offset",
281
+ "default": 0,
282
+ "hasDynamicHelp": false,
283
+ "multiple": false,
284
+ "type": "option"
285
+ }
286
+ },
287
+ "hasDynamicHelp": false,
288
+ "hiddenAliases": [],
289
+ "id": "broker:list",
290
+ "pluginAlias": "@trust-ethos/cli",
291
+ "pluginName": "@trust-ethos/cli",
292
+ "pluginType": "core",
293
+ "strict": true,
294
+ "enableJsonFlag": false,
295
+ "isESM": true,
296
+ "relativePath": [
297
+ "dist",
298
+ "commands",
299
+ "broker",
300
+ "list.js"
301
+ ]
302
+ },
303
+ "market:featured": {
304
+ "aliases": [],
305
+ "args": {},
306
+ "description": "Show top gainers and losers",
307
+ "examples": [
308
+ "<%= config.bin %> <%= command.id %>",
309
+ "<%= config.bin %> <%= command.id %> --json"
310
+ ],
311
+ "flags": {
312
+ "json": {
313
+ "char": "j",
314
+ "description": "Output as JSON",
315
+ "name": "json",
316
+ "allowNo": false,
317
+ "type": "boolean"
318
+ },
319
+ "verbose": {
320
+ "char": "v",
321
+ "description": "Show detailed error information",
322
+ "name": "verbose",
323
+ "allowNo": false,
324
+ "type": "boolean"
325
+ }
326
+ },
327
+ "hasDynamicHelp": false,
328
+ "hiddenAliases": [],
329
+ "id": "market:featured",
330
+ "pluginAlias": "@trust-ethos/cli",
331
+ "pluginName": "@trust-ethos/cli",
332
+ "pluginType": "core",
333
+ "strict": true,
334
+ "enableJsonFlag": false,
335
+ "isESM": true,
336
+ "relativePath": [
337
+ "dist",
338
+ "commands",
339
+ "market",
340
+ "featured.js"
341
+ ]
342
+ },
343
+ "market:holders": {
344
+ "aliases": [],
345
+ "args": {
346
+ "identifier": {
347
+ "description": "Twitter username, ETH address, or ENS name",
348
+ "name": "identifier",
349
+ "required": true
350
+ }
351
+ },
352
+ "description": "Show who holds trust/distrust in a user",
353
+ "examples": [
354
+ "<%= config.bin %> <%= command.id %> sethgho",
355
+ "<%= config.bin %> <%= command.id %> 0xNowater --limit 20",
356
+ "<%= config.bin %> <%= command.id %> vitalik.eth --json"
357
+ ],
358
+ "flags": {
359
+ "json": {
360
+ "char": "j",
361
+ "description": "Output as JSON",
362
+ "name": "json",
363
+ "allowNo": false,
364
+ "type": "boolean"
365
+ },
366
+ "verbose": {
367
+ "char": "v",
368
+ "description": "Show detailed error information",
369
+ "name": "verbose",
370
+ "allowNo": false,
371
+ "type": "boolean"
372
+ },
373
+ "limit": {
374
+ "char": "l",
375
+ "description": "Max results",
376
+ "name": "limit",
377
+ "default": 10,
378
+ "hasDynamicHelp": false,
379
+ "multiple": false,
380
+ "type": "option"
381
+ }
382
+ },
383
+ "hasDynamicHelp": false,
384
+ "hiddenAliases": [],
385
+ "id": "market:holders",
386
+ "pluginAlias": "@trust-ethos/cli",
387
+ "pluginName": "@trust-ethos/cli",
388
+ "pluginType": "core",
389
+ "strict": true,
390
+ "enableJsonFlag": false,
391
+ "isESM": true,
392
+ "relativePath": [
393
+ "dist",
394
+ "commands",
395
+ "market",
396
+ "holders.js"
397
+ ]
398
+ },
399
+ "market:info": {
400
+ "aliases": [
401
+ "mi"
402
+ ],
403
+ "args": {
404
+ "identifier": {
405
+ "description": "Profile ID or Twitter username",
406
+ "name": "identifier",
407
+ "required": true
408
+ }
409
+ },
410
+ "description": "Get trust market info for a user",
411
+ "examples": [
412
+ "<%= config.bin %> <%= command.id %> 123",
413
+ "<%= config.bin %> <%= command.id %> vitalik",
414
+ "<%= config.bin %> <%= command.id %> vitalik --json"
415
+ ],
416
+ "flags": {
417
+ "json": {
418
+ "char": "j",
419
+ "description": "Output as JSON",
420
+ "name": "json",
421
+ "allowNo": false,
422
+ "type": "boolean"
423
+ },
424
+ "verbose": {
425
+ "char": "v",
426
+ "description": "Show detailed error information",
427
+ "name": "verbose",
428
+ "allowNo": false,
429
+ "type": "boolean"
430
+ }
431
+ },
432
+ "hasDynamicHelp": false,
433
+ "hiddenAliases": [],
434
+ "id": "market:info",
435
+ "pluginAlias": "@trust-ethos/cli",
436
+ "pluginName": "@trust-ethos/cli",
437
+ "pluginType": "core",
438
+ "strict": true,
439
+ "enableJsonFlag": false,
440
+ "isESM": true,
441
+ "relativePath": [
442
+ "dist",
443
+ "commands",
444
+ "market",
445
+ "info.js"
446
+ ]
447
+ },
448
+ "market:list": {
449
+ "aliases": [
450
+ "ml"
451
+ ],
452
+ "args": {},
453
+ "description": "List trust markets",
454
+ "examples": [
455
+ "<%= config.bin %> <%= command.id %>",
456
+ "<%= config.bin %> <%= command.id %> --sort priceChange24hPercent --order desc",
457
+ "<%= config.bin %> <%= command.id %> --search \"vitalik\" --json"
458
+ ],
459
+ "flags": {
460
+ "json": {
461
+ "char": "j",
462
+ "description": "Output as JSON",
463
+ "name": "json",
464
+ "allowNo": false,
465
+ "type": "boolean"
466
+ },
467
+ "verbose": {
468
+ "char": "v",
469
+ "description": "Show detailed error information",
470
+ "name": "verbose",
471
+ "allowNo": false,
472
+ "type": "boolean"
473
+ },
474
+ "sort": {
475
+ "description": "Sort by field",
476
+ "name": "sort",
477
+ "default": "marketCapWei",
478
+ "hasDynamicHelp": false,
479
+ "multiple": false,
480
+ "options": [
481
+ "marketCapWei",
482
+ "volume24hWei",
483
+ "priceChange24hPercent",
484
+ "score",
485
+ "createdAt"
486
+ ],
487
+ "type": "option"
488
+ },
489
+ "order": {
490
+ "description": "Sort direction",
491
+ "name": "order",
492
+ "default": "desc",
493
+ "hasDynamicHelp": false,
494
+ "multiple": false,
495
+ "options": [
496
+ "asc",
497
+ "desc"
498
+ ],
499
+ "type": "option"
500
+ },
501
+ "search": {
502
+ "char": "s",
503
+ "description": "Search by name/username",
504
+ "name": "search",
505
+ "hasDynamicHelp": false,
506
+ "multiple": false,
507
+ "type": "option"
508
+ },
509
+ "limit": {
510
+ "char": "l",
511
+ "description": "Max results per request",
512
+ "name": "limit",
513
+ "default": 10,
514
+ "hasDynamicHelp": false,
515
+ "multiple": false,
516
+ "type": "option"
517
+ },
518
+ "offset": {
519
+ "char": "o",
520
+ "description": "Number of results to skip",
521
+ "name": "offset",
522
+ "default": 0,
523
+ "hasDynamicHelp": false,
524
+ "multiple": false,
525
+ "type": "option"
526
+ }
527
+ },
528
+ "hasDynamicHelp": false,
529
+ "hiddenAliases": [],
530
+ "id": "market:list",
531
+ "pluginAlias": "@trust-ethos/cli",
532
+ "pluginName": "@trust-ethos/cli",
533
+ "pluginType": "core",
534
+ "strict": true,
535
+ "enableJsonFlag": false,
536
+ "isESM": true,
537
+ "relativePath": [
538
+ "dist",
539
+ "commands",
540
+ "market",
541
+ "list.js"
542
+ ]
543
+ },
544
+ "config:get": {
545
+ "aliases": [],
546
+ "args": {},
547
+ "description": "Show current configuration",
548
+ "examples": [
549
+ "<%= config.bin %> <%= command.id %>",
550
+ "<%= config.bin %> <%= command.id %> --json"
551
+ ],
552
+ "flags": {
553
+ "json": {
554
+ "char": "j",
555
+ "description": "Output as JSON",
556
+ "name": "json",
557
+ "allowNo": false,
558
+ "type": "boolean"
559
+ }
560
+ },
561
+ "hasDynamicHelp": false,
562
+ "hiddenAliases": [],
563
+ "id": "config:get",
564
+ "pluginAlias": "@trust-ethos/cli",
565
+ "pluginName": "@trust-ethos/cli",
566
+ "pluginType": "core",
567
+ "strict": true,
568
+ "enableJsonFlag": false,
569
+ "isESM": true,
570
+ "relativePath": [
571
+ "dist",
572
+ "commands",
573
+ "config",
574
+ "get.js"
575
+ ]
576
+ },
577
+ "config:path": {
578
+ "aliases": [],
579
+ "args": {},
580
+ "description": "Show config file path",
581
+ "examples": [
582
+ "<%= config.bin %> <%= command.id %>"
583
+ ],
584
+ "flags": {},
585
+ "hasDynamicHelp": false,
586
+ "hiddenAliases": [],
587
+ "id": "config:path",
588
+ "pluginAlias": "@trust-ethos/cli",
589
+ "pluginName": "@trust-ethos/cli",
590
+ "pluginType": "core",
591
+ "strict": true,
592
+ "enableJsonFlag": false,
593
+ "isESM": true,
594
+ "relativePath": [
595
+ "dist",
596
+ "commands",
597
+ "config",
598
+ "path.js"
599
+ ]
600
+ },
601
+ "config:set": {
602
+ "aliases": [],
603
+ "args": {
604
+ "value": {
605
+ "description": "Configuration in format: apiUrl=<url>",
606
+ "name": "value",
607
+ "required": true
608
+ }
609
+ },
610
+ "description": "Set configuration value",
611
+ "examples": [
612
+ "<%= config.bin %> <%= command.id %> apiUrl=https://api.ethos.network",
613
+ "<%= config.bin %> <%= command.id %> apiUrl=https://api.dev.ethos.network"
614
+ ],
615
+ "flags": {},
616
+ "hasDynamicHelp": false,
617
+ "hiddenAliases": [],
618
+ "id": "config:set",
619
+ "pluginAlias": "@trust-ethos/cli",
620
+ "pluginName": "@trust-ethos/cli",
621
+ "pluginType": "core",
622
+ "strict": true,
623
+ "enableJsonFlag": false,
624
+ "isESM": true,
625
+ "relativePath": [
626
+ "dist",
627
+ "commands",
628
+ "config",
629
+ "set.js"
630
+ ]
631
+ },
632
+ "listing:info": {
633
+ "aliases": [],
634
+ "args": {
635
+ "identifier": {
636
+ "description": "Project ID or username",
637
+ "name": "identifier",
638
+ "required": true
639
+ }
640
+ },
641
+ "description": "Get details of a specific listing/project",
642
+ "examples": [
643
+ "<%= config.bin %> <%= command.id %> 123",
644
+ "<%= config.bin %> <%= command.id %> uniswap",
645
+ "<%= config.bin %> <%= command.id %> uniswap --json"
646
+ ],
647
+ "flags": {
648
+ "json": {
649
+ "char": "j",
650
+ "description": "Output as JSON",
651
+ "name": "json",
652
+ "allowNo": false,
653
+ "type": "boolean"
654
+ },
655
+ "verbose": {
656
+ "char": "v",
657
+ "description": "Show detailed error information",
658
+ "name": "verbose",
659
+ "allowNo": false,
660
+ "type": "boolean"
661
+ }
662
+ },
663
+ "hasDynamicHelp": false,
664
+ "hiddenAliases": [],
665
+ "id": "listing:info",
666
+ "pluginAlias": "@trust-ethos/cli",
667
+ "pluginName": "@trust-ethos/cli",
668
+ "pluginType": "core",
669
+ "strict": true,
670
+ "enableJsonFlag": false,
671
+ "isESM": true,
672
+ "relativePath": [
673
+ "dist",
674
+ "commands",
675
+ "listing",
676
+ "info.js"
677
+ ]
678
+ },
679
+ "listing:list": {
680
+ "aliases": [],
681
+ "args": {},
682
+ "description": "List projects on Ethos Listings",
683
+ "examples": [
684
+ "<%= config.bin %> <%= command.id %>",
685
+ "<%= config.bin %> <%= command.id %> --status active",
686
+ "<%= config.bin %> <%= command.id %> --limit 20 --json"
687
+ ],
688
+ "flags": {
689
+ "json": {
690
+ "char": "j",
691
+ "description": "Output as JSON",
692
+ "name": "json",
693
+ "allowNo": false,
694
+ "type": "boolean"
695
+ },
696
+ "verbose": {
697
+ "char": "v",
698
+ "description": "Show detailed error information",
699
+ "name": "verbose",
700
+ "allowNo": false,
701
+ "type": "boolean"
702
+ },
703
+ "status": {
704
+ "description": "Filter by status",
705
+ "name": "status",
706
+ "default": "active",
707
+ "hasDynamicHelp": false,
708
+ "multiple": false,
709
+ "options": [
710
+ "active",
711
+ "pending",
712
+ "archived"
713
+ ],
714
+ "type": "option"
715
+ },
716
+ "limit": {
717
+ "char": "l",
718
+ "description": "Max results per request",
719
+ "name": "limit",
720
+ "default": 10,
721
+ "hasDynamicHelp": false,
722
+ "multiple": false,
723
+ "type": "option"
724
+ },
725
+ "offset": {
726
+ "char": "o",
727
+ "description": "Number of results to skip",
728
+ "name": "offset",
729
+ "default": 0,
730
+ "hasDynamicHelp": false,
731
+ "multiple": false,
732
+ "type": "option"
733
+ }
734
+ },
735
+ "hasDynamicHelp": false,
736
+ "hiddenAliases": [],
737
+ "id": "listing:list",
738
+ "pluginAlias": "@trust-ethos/cli",
739
+ "pluginName": "@trust-ethos/cli",
740
+ "pluginType": "core",
741
+ "strict": true,
742
+ "enableJsonFlag": false,
743
+ "isESM": true,
744
+ "relativePath": [
745
+ "dist",
746
+ "commands",
747
+ "listing",
748
+ "list.js"
749
+ ]
750
+ },
751
+ "listing:voters": {
752
+ "aliases": [],
753
+ "args": {
754
+ "projectId": {
755
+ "description": "Project ID",
756
+ "name": "projectId",
757
+ "required": true
758
+ }
759
+ },
760
+ "description": "Show voters for a listing/project",
761
+ "examples": [
762
+ "<%= config.bin %> <%= command.id %> 123",
763
+ "<%= config.bin %> <%= command.id %> 123 --sentiment bullish",
764
+ "<%= config.bin %> <%= command.id %> 123 --limit 20 --json"
765
+ ],
766
+ "flags": {
767
+ "json": {
768
+ "char": "j",
769
+ "description": "Output as JSON",
770
+ "name": "json",
771
+ "allowNo": false,
772
+ "type": "boolean"
773
+ },
774
+ "verbose": {
775
+ "char": "v",
776
+ "description": "Show detailed error information",
777
+ "name": "verbose",
778
+ "allowNo": false,
779
+ "type": "boolean"
780
+ },
781
+ "sentiment": {
782
+ "description": "Filter by sentiment",
783
+ "name": "sentiment",
784
+ "hasDynamicHelp": false,
785
+ "multiple": false,
786
+ "options": [
787
+ "bullish",
788
+ "bearish"
789
+ ],
790
+ "type": "option"
791
+ },
792
+ "limit": {
793
+ "char": "l",
794
+ "description": "Max results per request",
795
+ "name": "limit",
796
+ "default": 10,
797
+ "hasDynamicHelp": false,
798
+ "multiple": false,
799
+ "type": "option"
800
+ },
801
+ "offset": {
802
+ "char": "o",
803
+ "description": "Number of results to skip",
804
+ "name": "offset",
805
+ "default": 0,
806
+ "hasDynamicHelp": false,
807
+ "multiple": false,
808
+ "type": "option"
809
+ }
810
+ },
811
+ "hasDynamicHelp": false,
812
+ "hiddenAliases": [],
813
+ "id": "listing:voters",
814
+ "pluginAlias": "@trust-ethos/cli",
815
+ "pluginName": "@trust-ethos/cli",
816
+ "pluginType": "core",
817
+ "strict": true,
818
+ "enableJsonFlag": false,
819
+ "isESM": true,
820
+ "relativePath": [
821
+ "dist",
822
+ "commands",
823
+ "listing",
824
+ "voters.js"
825
+ ]
826
+ },
827
+ "nft:list": {
828
+ "aliases": [],
829
+ "args": {
830
+ "identifier": {
831
+ "description": "Twitter username, ETH address, or ENS name",
832
+ "name": "identifier",
833
+ "required": true
834
+ }
835
+ },
836
+ "description": "List NFTs owned by a user",
837
+ "examples": [
838
+ "<%= config.bin %> <%= command.id %> sethgho",
839
+ "<%= config.bin %> <%= command.id %> 0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045",
840
+ "<%= config.bin %> <%= command.id %> vitalik.eth --json"
841
+ ],
842
+ "flags": {
843
+ "json": {
844
+ "char": "j",
845
+ "description": "Output as JSON",
846
+ "name": "json",
847
+ "allowNo": false,
848
+ "type": "boolean"
849
+ },
850
+ "verbose": {
851
+ "char": "v",
852
+ "description": "Show detailed error information",
853
+ "name": "verbose",
854
+ "allowNo": false,
855
+ "type": "boolean"
856
+ },
857
+ "limit": {
858
+ "char": "l",
859
+ "description": "Max results per request",
860
+ "name": "limit",
861
+ "default": 10,
862
+ "hasDynamicHelp": false,
863
+ "multiple": false,
864
+ "type": "option"
865
+ },
866
+ "offset": {
867
+ "char": "o",
868
+ "description": "Number of results to skip",
869
+ "name": "offset",
870
+ "default": 0,
871
+ "hasDynamicHelp": false,
872
+ "multiple": false,
873
+ "type": "option"
874
+ }
875
+ },
876
+ "hasDynamicHelp": false,
877
+ "hiddenAliases": [],
878
+ "id": "nft:list",
879
+ "pluginAlias": "@trust-ethos/cli",
880
+ "pluginName": "@trust-ethos/cli",
881
+ "pluginType": "core",
882
+ "strict": true,
883
+ "enableJsonFlag": false,
884
+ "isESM": true,
885
+ "relativePath": [
886
+ "dist",
887
+ "commands",
888
+ "nft",
889
+ "list.js"
890
+ ]
891
+ },
892
+ "review:info": {
893
+ "aliases": [
894
+ "ri"
895
+ ],
896
+ "args": {
897
+ "id": {
898
+ "description": "Review ID",
899
+ "name": "id",
900
+ "required": true
901
+ }
902
+ },
903
+ "description": "Get details of a specific review",
904
+ "examples": [
905
+ "<%= config.bin %> <%= command.id %> 1139",
906
+ "<%= config.bin %> <%= command.id %> 1139 --json"
907
+ ],
908
+ "flags": {
909
+ "json": {
910
+ "char": "j",
911
+ "description": "Output as JSON",
912
+ "name": "json",
913
+ "allowNo": false,
914
+ "type": "boolean"
915
+ },
916
+ "verbose": {
917
+ "char": "v",
918
+ "description": "Show detailed error information",
919
+ "name": "verbose",
920
+ "allowNo": false,
921
+ "type": "boolean"
922
+ }
923
+ },
924
+ "hasDynamicHelp": false,
925
+ "hiddenAliases": [],
926
+ "id": "review:info",
927
+ "pluginAlias": "@trust-ethos/cli",
928
+ "pluginName": "@trust-ethos/cli",
929
+ "pluginType": "core",
930
+ "strict": true,
931
+ "enableJsonFlag": false,
932
+ "isESM": true,
933
+ "relativePath": [
934
+ "dist",
935
+ "commands",
936
+ "review",
937
+ "info.js"
938
+ ]
939
+ },
940
+ "review:list": {
941
+ "aliases": [
942
+ "rl"
943
+ ],
944
+ "args": {
945
+ "identifier": {
946
+ "description": "Twitter username, ETH address, or ENS name",
947
+ "name": "identifier",
948
+ "required": true
949
+ }
950
+ },
951
+ "description": "List reviews for a user",
952
+ "examples": [
953
+ "<%= config.bin %> <%= command.id %> sethgho",
954
+ "<%= config.bin %> <%= command.id %> 0xNowater --limit 20",
955
+ "<%= config.bin %> <%= command.id %> vitalik.eth --json"
956
+ ],
957
+ "flags": {
958
+ "json": {
959
+ "char": "j",
960
+ "description": "Output as JSON",
961
+ "name": "json",
962
+ "allowNo": false,
963
+ "type": "boolean"
964
+ },
965
+ "verbose": {
966
+ "char": "v",
967
+ "description": "Show detailed error information",
968
+ "name": "verbose",
969
+ "allowNo": false,
970
+ "type": "boolean"
971
+ },
972
+ "limit": {
973
+ "char": "l",
974
+ "description": "Max results per request",
975
+ "name": "limit",
976
+ "default": 10,
977
+ "hasDynamicHelp": false,
978
+ "multiple": false,
979
+ "type": "option"
980
+ },
981
+ "offset": {
982
+ "char": "o",
983
+ "description": "Number of results to skip",
984
+ "name": "offset",
985
+ "default": 0,
986
+ "hasDynamicHelp": false,
987
+ "multiple": false,
988
+ "type": "option"
989
+ }
990
+ },
991
+ "hasDynamicHelp": false,
992
+ "hiddenAliases": [],
993
+ "id": "review:list",
994
+ "pluginAlias": "@trust-ethos/cli",
995
+ "pluginName": "@trust-ethos/cli",
996
+ "pluginType": "core",
997
+ "strict": true,
998
+ "enableJsonFlag": false,
999
+ "isESM": true,
1000
+ "relativePath": [
1001
+ "dist",
1002
+ "commands",
1003
+ "review",
1004
+ "list.js"
1005
+ ]
1006
+ },
1007
+ "review:votes": {
1008
+ "aliases": [],
1009
+ "args": {
1010
+ "id": {
1011
+ "description": "Review ID",
1012
+ "name": "id",
1013
+ "required": true
1014
+ }
1015
+ },
1016
+ "description": "Show votes on a review",
1017
+ "examples": [
1018
+ "<%= config.bin %> <%= command.id %> 123",
1019
+ "<%= config.bin %> <%= command.id %> 123 --stats",
1020
+ "<%= config.bin %> <%= command.id %> 123 --upvotes",
1021
+ "<%= config.bin %> <%= command.id %> 123 --json"
1022
+ ],
1023
+ "flags": {
1024
+ "json": {
1025
+ "char": "j",
1026
+ "description": "Output as JSON",
1027
+ "name": "json",
1028
+ "allowNo": false,
1029
+ "type": "boolean"
1030
+ },
1031
+ "verbose": {
1032
+ "char": "v",
1033
+ "description": "Show detailed error information",
1034
+ "name": "verbose",
1035
+ "allowNo": false,
1036
+ "type": "boolean"
1037
+ },
1038
+ "stats": {
1039
+ "char": "s",
1040
+ "description": "Show vote statistics only",
1041
+ "name": "stats",
1042
+ "allowNo": false,
1043
+ "type": "boolean"
1044
+ },
1045
+ "upvotes": {
1046
+ "description": "Show only upvotes",
1047
+ "exclusive": [
1048
+ "downvotes"
1049
+ ],
1050
+ "name": "upvotes",
1051
+ "allowNo": false,
1052
+ "type": "boolean"
1053
+ },
1054
+ "downvotes": {
1055
+ "description": "Show only downvotes",
1056
+ "exclusive": [
1057
+ "upvotes"
1058
+ ],
1059
+ "name": "downvotes",
1060
+ "allowNo": false,
1061
+ "type": "boolean"
1062
+ },
1063
+ "limit": {
1064
+ "char": "l",
1065
+ "description": "Max results per request",
1066
+ "name": "limit",
1067
+ "default": 10,
1068
+ "hasDynamicHelp": false,
1069
+ "multiple": false,
1070
+ "type": "option"
1071
+ },
1072
+ "offset": {
1073
+ "char": "o",
1074
+ "description": "Number of results to skip",
1075
+ "name": "offset",
1076
+ "default": 0,
1077
+ "hasDynamicHelp": false,
1078
+ "multiple": false,
1079
+ "type": "option"
1080
+ }
1081
+ },
1082
+ "hasDynamicHelp": false,
1083
+ "hiddenAliases": [],
1084
+ "id": "review:votes",
1085
+ "pluginAlias": "@trust-ethos/cli",
1086
+ "pluginName": "@trust-ethos/cli",
1087
+ "pluginType": "core",
1088
+ "strict": true,
1089
+ "enableJsonFlag": false,
1090
+ "isESM": true,
1091
+ "relativePath": [
1092
+ "dist",
1093
+ "commands",
1094
+ "review",
1095
+ "votes.js"
1096
+ ]
1097
+ },
1098
+ "score:status": {
1099
+ "aliases": [],
1100
+ "args": {
1101
+ "identifier": {
1102
+ "description": "Twitter username, ETH address, or ENS name",
1103
+ "name": "identifier",
1104
+ "required": true
1105
+ }
1106
+ },
1107
+ "description": "Check score calculation status for a user",
1108
+ "examples": [
1109
+ "<%= config.bin %> <%= command.id %> 0xNowater",
1110
+ "<%= config.bin %> <%= command.id %> vitalik.eth",
1111
+ "<%= config.bin %> <%= command.id %> 0xNowater --json"
1112
+ ],
1113
+ "flags": {
1114
+ "json": {
1115
+ "char": "j",
1116
+ "description": "Output as JSON",
1117
+ "name": "json",
1118
+ "allowNo": false,
1119
+ "type": "boolean"
1120
+ },
1121
+ "verbose": {
1122
+ "char": "v",
1123
+ "description": "Show detailed error information",
1124
+ "name": "verbose",
1125
+ "allowNo": false,
1126
+ "type": "boolean"
1127
+ }
1128
+ },
1129
+ "hasDynamicHelp": false,
1130
+ "hiddenAliases": [],
1131
+ "id": "score:status",
1132
+ "pluginAlias": "@trust-ethos/cli",
1133
+ "pluginName": "@trust-ethos/cli",
1134
+ "pluginType": "core",
1135
+ "strict": true,
1136
+ "enableJsonFlag": false,
1137
+ "isESM": true,
1138
+ "relativePath": [
1139
+ "dist",
1140
+ "commands",
1141
+ "score",
1142
+ "status.js"
1143
+ ]
1144
+ },
1145
+ "validator:info": {
1146
+ "aliases": [],
1147
+ "args": {
1148
+ "tokenId": {
1149
+ "description": "Validator token ID",
1150
+ "name": "tokenId",
1151
+ "required": true
1152
+ }
1153
+ },
1154
+ "description": "Get details of a specific validator NFT",
1155
+ "examples": [
1156
+ "<%= config.bin %> <%= command.id %> 1",
1157
+ "<%= config.bin %> <%= command.id %> 42 --json"
1158
+ ],
1159
+ "flags": {
1160
+ "json": {
1161
+ "char": "j",
1162
+ "description": "Output as JSON",
1163
+ "name": "json",
1164
+ "allowNo": false,
1165
+ "type": "boolean"
1166
+ },
1167
+ "verbose": {
1168
+ "char": "v",
1169
+ "description": "Show detailed error information",
1170
+ "name": "verbose",
1171
+ "allowNo": false,
1172
+ "type": "boolean"
1173
+ }
1174
+ },
1175
+ "hasDynamicHelp": false,
1176
+ "hiddenAliases": [],
1177
+ "id": "validator:info",
1178
+ "pluginAlias": "@trust-ethos/cli",
1179
+ "pluginName": "@trust-ethos/cli",
1180
+ "pluginType": "core",
1181
+ "strict": true,
1182
+ "enableJsonFlag": false,
1183
+ "isESM": true,
1184
+ "relativePath": [
1185
+ "dist",
1186
+ "commands",
1187
+ "validator",
1188
+ "info.js"
1189
+ ]
1190
+ },
1191
+ "validator:list": {
1192
+ "aliases": [],
1193
+ "args": {},
1194
+ "description": "List all Ethos validator NFT owners",
1195
+ "examples": [
1196
+ "<%= config.bin %> <%= command.id %>",
1197
+ "<%= config.bin %> <%= command.id %> --limit 20",
1198
+ "<%= config.bin %> <%= command.id %> --available",
1199
+ "<%= config.bin %> <%= command.id %> --json"
1200
+ ],
1201
+ "flags": {
1202
+ "json": {
1203
+ "char": "j",
1204
+ "description": "Output as JSON",
1205
+ "name": "json",
1206
+ "allowNo": false,
1207
+ "type": "boolean"
1208
+ },
1209
+ "verbose": {
1210
+ "char": "v",
1211
+ "description": "Show detailed error information",
1212
+ "name": "verbose",
1213
+ "allowNo": false,
1214
+ "type": "boolean"
1215
+ },
1216
+ "limit": {
1217
+ "char": "l",
1218
+ "description": "Max results to display",
1219
+ "name": "limit",
1220
+ "default": 10,
1221
+ "hasDynamicHelp": false,
1222
+ "multiple": false,
1223
+ "type": "option"
1224
+ },
1225
+ "offset": {
1226
+ "char": "o",
1227
+ "description": "Number of results to skip",
1228
+ "name": "offset",
1229
+ "default": 0,
1230
+ "hasDynamicHelp": false,
1231
+ "multiple": false,
1232
+ "type": "option"
1233
+ },
1234
+ "available": {
1235
+ "char": "a",
1236
+ "description": "Show only validators with remaining XP capacity",
1237
+ "name": "available",
1238
+ "allowNo": false,
1239
+ "type": "boolean"
1240
+ }
1241
+ },
1242
+ "hasDynamicHelp": false,
1243
+ "hiddenAliases": [],
1244
+ "id": "validator:list",
1245
+ "pluginAlias": "@trust-ethos/cli",
1246
+ "pluginName": "@trust-ethos/cli",
1247
+ "pluginType": "core",
1248
+ "strict": true,
1249
+ "enableJsonFlag": false,
1250
+ "isESM": true,
1251
+ "relativePath": [
1252
+ "dist",
1253
+ "commands",
1254
+ "validator",
1255
+ "list.js"
1256
+ ]
1257
+ },
1258
+ "validator:sales": {
1259
+ "aliases": [],
1260
+ "args": {},
1261
+ "description": "List validator NFTs for sale on OpenSea",
1262
+ "examples": [
1263
+ "<%= config.bin %> <%= command.id %>",
1264
+ "<%= config.bin %> <%= command.id %> --limit 20 --json"
1265
+ ],
1266
+ "flags": {
1267
+ "json": {
1268
+ "char": "j",
1269
+ "description": "Output as JSON",
1270
+ "name": "json",
1271
+ "allowNo": false,
1272
+ "type": "boolean"
1273
+ },
1274
+ "verbose": {
1275
+ "char": "v",
1276
+ "description": "Show detailed error information",
1277
+ "name": "verbose",
1278
+ "allowNo": false,
1279
+ "type": "boolean"
1280
+ },
1281
+ "limit": {
1282
+ "char": "l",
1283
+ "description": "Max results per request",
1284
+ "name": "limit",
1285
+ "default": 10,
1286
+ "hasDynamicHelp": false,
1287
+ "multiple": false,
1288
+ "type": "option"
1289
+ },
1290
+ "offset": {
1291
+ "char": "o",
1292
+ "description": "Number of results to skip",
1293
+ "name": "offset",
1294
+ "default": 0,
1295
+ "hasDynamicHelp": false,
1296
+ "multiple": false,
1297
+ "type": "option"
1298
+ }
1299
+ },
1300
+ "hasDynamicHelp": false,
1301
+ "hiddenAliases": [],
1302
+ "id": "validator:sales",
1303
+ "pluginAlias": "@trust-ethos/cli",
1304
+ "pluginName": "@trust-ethos/cli",
1305
+ "pluginType": "core",
1306
+ "strict": true,
1307
+ "enableJsonFlag": false,
1308
+ "isESM": true,
1309
+ "relativePath": [
1310
+ "dist",
1311
+ "commands",
1312
+ "validator",
1313
+ "sales.js"
1314
+ ]
1315
+ },
1316
+ "slash:info": {
1317
+ "aliases": [],
1318
+ "args": {
1319
+ "id": {
1320
+ "description": "Slash ID",
1321
+ "name": "id",
1322
+ "required": true
1323
+ }
1324
+ },
1325
+ "description": "Get details of a specific slash",
1326
+ "examples": [
1327
+ "<%= config.bin %> <%= command.id %> 123",
1328
+ "<%= config.bin %> <%= command.id %> 123 --json"
1329
+ ],
1330
+ "flags": {
1331
+ "json": {
1332
+ "char": "j",
1333
+ "description": "Output as JSON",
1334
+ "name": "json",
1335
+ "allowNo": false,
1336
+ "type": "boolean"
1337
+ },
1338
+ "verbose": {
1339
+ "char": "v",
1340
+ "description": "Show detailed error information",
1341
+ "name": "verbose",
1342
+ "allowNo": false,
1343
+ "type": "boolean"
1344
+ }
1345
+ },
1346
+ "hasDynamicHelp": false,
1347
+ "hiddenAliases": [],
1348
+ "id": "slash:info",
1349
+ "pluginAlias": "@trust-ethos/cli",
1350
+ "pluginName": "@trust-ethos/cli",
1351
+ "pluginType": "core",
1352
+ "strict": true,
1353
+ "enableJsonFlag": false,
1354
+ "isESM": true,
1355
+ "relativePath": [
1356
+ "dist",
1357
+ "commands",
1358
+ "slash",
1359
+ "info.js"
1360
+ ]
1361
+ },
1362
+ "slash:list": {
1363
+ "aliases": [],
1364
+ "args": {},
1365
+ "description": "List reputation slashes",
1366
+ "examples": [
1367
+ "<%= config.bin %> <%= command.id %>",
1368
+ "<%= config.bin %> <%= command.id %> --status open",
1369
+ "<%= config.bin %> <%= command.id %> --subject twitter:0xNowater",
1370
+ "<%= config.bin %> <%= command.id %> --limit 5 --json"
1371
+ ],
1372
+ "flags": {
1373
+ "json": {
1374
+ "char": "j",
1375
+ "description": "Output as JSON",
1376
+ "name": "json",
1377
+ "allowNo": false,
1378
+ "type": "boolean"
1379
+ },
1380
+ "verbose": {
1381
+ "char": "v",
1382
+ "description": "Show detailed error information",
1383
+ "name": "verbose",
1384
+ "allowNo": false,
1385
+ "type": "boolean"
1386
+ },
1387
+ "status": {
1388
+ "description": "Filter by status",
1389
+ "name": "status",
1390
+ "hasDynamicHelp": false,
1391
+ "multiple": false,
1392
+ "options": [
1393
+ "open",
1394
+ "closed"
1395
+ ],
1396
+ "type": "option"
1397
+ },
1398
+ "author": {
1399
+ "description": "Filter by slasher userkey",
1400
+ "name": "author",
1401
+ "hasDynamicHelp": false,
1402
+ "multiple": false,
1403
+ "type": "option"
1404
+ },
1405
+ "subject": {
1406
+ "description": "Filter by subject userkey",
1407
+ "name": "subject",
1408
+ "hasDynamicHelp": false,
1409
+ "multiple": false,
1410
+ "type": "option"
1411
+ },
1412
+ "limit": {
1413
+ "char": "l",
1414
+ "description": "Max results per request",
1415
+ "name": "limit",
1416
+ "default": 10,
1417
+ "hasDynamicHelp": false,
1418
+ "multiple": false,
1419
+ "type": "option"
1420
+ },
1421
+ "offset": {
1422
+ "char": "o",
1423
+ "description": "Number of results to skip",
1424
+ "name": "offset",
1425
+ "default": 0,
1426
+ "hasDynamicHelp": false,
1427
+ "multiple": false,
1428
+ "type": "option"
1429
+ }
1430
+ },
1431
+ "hasDynamicHelp": false,
1432
+ "hiddenAliases": [],
1433
+ "id": "slash:list",
1434
+ "pluginAlias": "@trust-ethos/cli",
1435
+ "pluginName": "@trust-ethos/cli",
1436
+ "pluginType": "core",
1437
+ "strict": true,
1438
+ "enableJsonFlag": false,
1439
+ "isESM": true,
1440
+ "relativePath": [
1441
+ "dist",
1442
+ "commands",
1443
+ "slash",
1444
+ "list.js"
1445
+ ]
1446
+ },
1447
+ "slash:votes": {
1448
+ "aliases": [],
1449
+ "args": {
1450
+ "id": {
1451
+ "description": "Slash ID",
1452
+ "name": "id",
1453
+ "required": true
1454
+ }
1455
+ },
1456
+ "description": "Show votes on a slash",
1457
+ "examples": [
1458
+ "<%= config.bin %> <%= command.id %> 195",
1459
+ "<%= config.bin %> <%= command.id %> 195 --stats",
1460
+ "<%= config.bin %> <%= command.id %> 195 --upvotes",
1461
+ "<%= config.bin %> <%= command.id %> 195 --json"
1462
+ ],
1463
+ "flags": {
1464
+ "json": {
1465
+ "char": "j",
1466
+ "description": "Output as JSON",
1467
+ "name": "json",
1468
+ "allowNo": false,
1469
+ "type": "boolean"
1470
+ },
1471
+ "verbose": {
1472
+ "char": "v",
1473
+ "description": "Show detailed error information",
1474
+ "name": "verbose",
1475
+ "allowNo": false,
1476
+ "type": "boolean"
1477
+ },
1478
+ "stats": {
1479
+ "char": "s",
1480
+ "description": "Show vote statistics only",
1481
+ "name": "stats",
1482
+ "allowNo": false,
1483
+ "type": "boolean"
1484
+ },
1485
+ "upvotes": {
1486
+ "description": "Show only upvotes",
1487
+ "exclusive": [
1488
+ "downvotes"
1489
+ ],
1490
+ "name": "upvotes",
1491
+ "allowNo": false,
1492
+ "type": "boolean"
1493
+ },
1494
+ "downvotes": {
1495
+ "description": "Show only downvotes",
1496
+ "exclusive": [
1497
+ "upvotes"
1498
+ ],
1499
+ "name": "downvotes",
1500
+ "allowNo": false,
1501
+ "type": "boolean"
1502
+ },
1503
+ "limit": {
1504
+ "char": "l",
1505
+ "description": "Max results per request",
1506
+ "name": "limit",
1507
+ "default": 10,
1508
+ "hasDynamicHelp": false,
1509
+ "multiple": false,
1510
+ "type": "option"
1511
+ },
1512
+ "offset": {
1513
+ "char": "o",
1514
+ "description": "Number of results to skip",
1515
+ "name": "offset",
1516
+ "default": 0,
1517
+ "hasDynamicHelp": false,
1518
+ "multiple": false,
1519
+ "type": "option"
1520
+ }
1521
+ },
1522
+ "hasDynamicHelp": false,
1523
+ "hiddenAliases": [],
1524
+ "id": "slash:votes",
1525
+ "pluginAlias": "@trust-ethos/cli",
1526
+ "pluginName": "@trust-ethos/cli",
1527
+ "pluginType": "core",
1528
+ "strict": true,
1529
+ "enableJsonFlag": false,
1530
+ "isESM": true,
1531
+ "relativePath": [
1532
+ "dist",
1533
+ "commands",
1534
+ "slash",
1535
+ "votes.js"
1536
+ ]
1537
+ },
1538
+ "user:activity": {
1539
+ "aliases": [],
1540
+ "args": {
1541
+ "identifier": {
1542
+ "description": "Twitter username, ETH address, or ENS name",
1543
+ "name": "identifier",
1544
+ "required": true
1545
+ }
1546
+ },
1547
+ "description": "Show recent reviews and vouches for a user",
1548
+ "examples": [
1549
+ "<%= config.bin %> <%= command.id %> 0xNowater",
1550
+ "<%= config.bin %> <%= command.id %> 0xNowater --type vouch",
1551
+ "<%= config.bin %> <%= command.id %> 0xNowater --type review --limit 5",
1552
+ "<%= config.bin %> <%= command.id %> 0xNowater --json"
1553
+ ],
1554
+ "flags": {
1555
+ "json": {
1556
+ "char": "j",
1557
+ "description": "Output as JSON",
1558
+ "name": "json",
1559
+ "allowNo": false,
1560
+ "type": "boolean"
1561
+ },
1562
+ "limit": {
1563
+ "char": "l",
1564
+ "description": "Maximum number of activities",
1565
+ "name": "limit",
1566
+ "default": 10,
1567
+ "hasDynamicHelp": false,
1568
+ "multiple": false,
1569
+ "type": "option"
1570
+ },
1571
+ "type": {
1572
+ "char": "t",
1573
+ "description": "Filter by activity type",
1574
+ "name": "type",
1575
+ "hasDynamicHelp": false,
1576
+ "multiple": false,
1577
+ "options": [
1578
+ "vouch",
1579
+ "review"
1580
+ ],
1581
+ "type": "option"
1582
+ },
1583
+ "verbose": {
1584
+ "char": "v",
1585
+ "description": "Show detailed error information",
1586
+ "name": "verbose",
1587
+ "allowNo": false,
1588
+ "type": "boolean"
1589
+ }
1590
+ },
1591
+ "hasDynamicHelp": false,
1592
+ "hiddenAliases": [],
1593
+ "id": "user:activity",
1594
+ "pluginAlias": "@trust-ethos/cli",
1595
+ "pluginName": "@trust-ethos/cli",
1596
+ "pluginType": "core",
1597
+ "strict": true,
1598
+ "enableJsonFlag": false,
1599
+ "isESM": true,
1600
+ "relativePath": [
1601
+ "dist",
1602
+ "commands",
1603
+ "user",
1604
+ "activity.js"
1605
+ ]
1606
+ },
1607
+ "user:info": {
1608
+ "aliases": [
1609
+ "u",
1610
+ "ui"
1611
+ ],
1612
+ "args": {
1613
+ "identifier": {
1614
+ "description": "Twitter username, ETH address, or ENS name",
1615
+ "name": "identifier",
1616
+ "required": true
1617
+ }
1618
+ },
1619
+ "description": "Display user profile by username, address, or ENS name",
1620
+ "examples": [
1621
+ "<%= config.bin %> <%= command.id %> 0xNowater",
1622
+ "<%= config.bin %> <%= command.id %> 0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045",
1623
+ "<%= config.bin %> <%= command.id %> vitalik.eth",
1624
+ "<%= config.bin %> <%= command.id %> 0xNowater --json"
1625
+ ],
1626
+ "flags": {
1627
+ "json": {
1628
+ "char": "j",
1629
+ "description": "Output as JSON",
1630
+ "name": "json",
1631
+ "allowNo": false,
1632
+ "type": "boolean"
1633
+ },
1634
+ "verbose": {
1635
+ "char": "v",
1636
+ "description": "Show detailed error information",
1637
+ "name": "verbose",
1638
+ "allowNo": false,
1639
+ "type": "boolean"
1640
+ }
1641
+ },
1642
+ "hasDynamicHelp": false,
1643
+ "hiddenAliases": [],
1644
+ "id": "user:info",
1645
+ "pluginAlias": "@trust-ethos/cli",
1646
+ "pluginName": "@trust-ethos/cli",
1647
+ "pluginType": "core",
1648
+ "strict": true,
1649
+ "enableJsonFlag": false,
1650
+ "isESM": true,
1651
+ "relativePath": [
1652
+ "dist",
1653
+ "commands",
1654
+ "user",
1655
+ "info.js"
1656
+ ]
1657
+ },
1658
+ "user:invitations": {
1659
+ "aliases": [],
1660
+ "args": {
1661
+ "identifier": {
1662
+ "description": "Twitter username, ETH address, or ENS name",
1663
+ "name": "identifier",
1664
+ "required": true
1665
+ }
1666
+ },
1667
+ "description": "List invitations sent by a user",
1668
+ "examples": [
1669
+ "<%= config.bin %> <%= command.id %> sethgho",
1670
+ "<%= config.bin %> <%= command.id %> 0xNowater --status ACCEPTED",
1671
+ "<%= config.bin %> <%= command.id %> vitalik.eth --json"
1672
+ ],
1673
+ "flags": {
1674
+ "json": {
1675
+ "char": "j",
1676
+ "description": "Output as JSON",
1677
+ "name": "json",
1678
+ "allowNo": false,
1679
+ "type": "boolean"
1680
+ },
1681
+ "verbose": {
1682
+ "char": "v",
1683
+ "description": "Show detailed error information",
1684
+ "name": "verbose",
1685
+ "allowNo": false,
1686
+ "type": "boolean"
1687
+ },
1688
+ "status": {
1689
+ "char": "s",
1690
+ "description": "Filter by status",
1691
+ "name": "status",
1692
+ "hasDynamicHelp": false,
1693
+ "multiple": false,
1694
+ "options": [
1695
+ "INVITED",
1696
+ "ACCEPTED"
1697
+ ],
1698
+ "type": "option"
1699
+ },
1700
+ "limit": {
1701
+ "char": "l",
1702
+ "description": "Max results per request",
1703
+ "name": "limit",
1704
+ "default": 10,
1705
+ "hasDynamicHelp": false,
1706
+ "multiple": false,
1707
+ "type": "option"
1708
+ },
1709
+ "offset": {
1710
+ "char": "o",
1711
+ "description": "Number of results to skip",
1712
+ "name": "offset",
1713
+ "default": 0,
1714
+ "hasDynamicHelp": false,
1715
+ "multiple": false,
1716
+ "type": "option"
1717
+ }
1718
+ },
1719
+ "hasDynamicHelp": false,
1720
+ "hiddenAliases": [],
1721
+ "id": "user:invitations",
1722
+ "pluginAlias": "@trust-ethos/cli",
1723
+ "pluginName": "@trust-ethos/cli",
1724
+ "pluginType": "core",
1725
+ "strict": true,
1726
+ "enableJsonFlag": false,
1727
+ "isESM": true,
1728
+ "relativePath": [
1729
+ "dist",
1730
+ "commands",
1731
+ "user",
1732
+ "invitations.js"
1733
+ ]
1734
+ },
1735
+ "user:search": {
1736
+ "aliases": [
1737
+ "find"
1738
+ ],
1739
+ "args": {
1740
+ "query": {
1741
+ "description": "Search query",
1742
+ "name": "query",
1743
+ "required": true
1744
+ }
1745
+ },
1746
+ "description": "Search for users by name, username, or address",
1747
+ "examples": [
1748
+ "<%= config.bin %> <%= command.id %> vitalik",
1749
+ "<%= config.bin %> <%= command.id %> \"crypto developer\"",
1750
+ "<%= config.bin %> <%= command.id %> vitalik --json",
1751
+ "<%= config.bin %> <%= command.id %> web3 --limit 5"
1752
+ ],
1753
+ "flags": {
1754
+ "json": {
1755
+ "char": "j",
1756
+ "description": "Output as JSON",
1757
+ "name": "json",
1758
+ "allowNo": false,
1759
+ "type": "boolean"
1760
+ },
1761
+ "limit": {
1762
+ "char": "l",
1763
+ "description": "Maximum number of results",
1764
+ "name": "limit",
1765
+ "default": 10,
1766
+ "hasDynamicHelp": false,
1767
+ "multiple": false,
1768
+ "type": "option"
1769
+ },
1770
+ "verbose": {
1771
+ "char": "v",
1772
+ "description": "Show detailed error information",
1773
+ "name": "verbose",
1774
+ "allowNo": false,
1775
+ "type": "boolean"
1776
+ }
1777
+ },
1778
+ "hasDynamicHelp": false,
1779
+ "hiddenAliases": [],
1780
+ "id": "user:search",
1781
+ "pluginAlias": "@trust-ethos/cli",
1782
+ "pluginName": "@trust-ethos/cli",
1783
+ "pluginType": "core",
1784
+ "strict": true,
1785
+ "enableJsonFlag": false,
1786
+ "isESM": true,
1787
+ "relativePath": [
1788
+ "dist",
1789
+ "commands",
1790
+ "user",
1791
+ "search.js"
1792
+ ]
1793
+ },
1794
+ "user:summary": {
1795
+ "aliases": [
1796
+ "us"
1797
+ ],
1798
+ "args": {
1799
+ "identifier": {
1800
+ "description": "Twitter username, ETH address, or ENS name",
1801
+ "name": "identifier",
1802
+ "required": true
1803
+ }
1804
+ },
1805
+ "description": "Display comprehensive user summary with activity and vouches",
1806
+ "examples": [
1807
+ "<%= config.bin %> <%= command.id %> sethgho",
1808
+ "<%= config.bin %> <%= command.id %> 0xNowater",
1809
+ "<%= config.bin %> <%= command.id %> vitalik.eth --json"
1810
+ ],
1811
+ "flags": {
1812
+ "json": {
1813
+ "char": "j",
1814
+ "description": "Output as JSON",
1815
+ "name": "json",
1816
+ "allowNo": false,
1817
+ "type": "boolean"
1818
+ },
1819
+ "verbose": {
1820
+ "char": "v",
1821
+ "description": "Show detailed error information",
1822
+ "name": "verbose",
1823
+ "allowNo": false,
1824
+ "type": "boolean"
1825
+ }
1826
+ },
1827
+ "hasDynamicHelp": false,
1828
+ "hiddenAliases": [],
1829
+ "id": "user:summary",
1830
+ "pluginAlias": "@trust-ethos/cli",
1831
+ "pluginName": "@trust-ethos/cli",
1832
+ "pluginType": "core",
1833
+ "strict": true,
1834
+ "enableJsonFlag": false,
1835
+ "isESM": true,
1836
+ "relativePath": [
1837
+ "dist",
1838
+ "commands",
1839
+ "user",
1840
+ "summary.js"
1841
+ ]
1842
+ },
1843
+ "vouch:info": {
1844
+ "aliases": [
1845
+ "vi"
1846
+ ],
1847
+ "args": {
1848
+ "id": {
1849
+ "description": "Vouch ID",
1850
+ "name": "id",
1851
+ "required": true
1852
+ }
1853
+ },
1854
+ "description": "Get details of a specific vouch",
1855
+ "examples": [
1856
+ "<%= config.bin %> <%= command.id %> 123",
1857
+ "<%= config.bin %> <%= command.id %> 123 --json"
1858
+ ],
1859
+ "flags": {
1860
+ "json": {
1861
+ "char": "j",
1862
+ "description": "Output as JSON",
1863
+ "name": "json",
1864
+ "allowNo": false,
1865
+ "type": "boolean"
1866
+ },
1867
+ "verbose": {
1868
+ "char": "v",
1869
+ "description": "Show detailed error information",
1870
+ "name": "verbose",
1871
+ "allowNo": false,
1872
+ "type": "boolean"
1873
+ }
1874
+ },
1875
+ "hasDynamicHelp": false,
1876
+ "hiddenAliases": [],
1877
+ "id": "vouch:info",
1878
+ "pluginAlias": "@trust-ethos/cli",
1879
+ "pluginName": "@trust-ethos/cli",
1880
+ "pluginType": "core",
1881
+ "strict": true,
1882
+ "enableJsonFlag": false,
1883
+ "isESM": true,
1884
+ "relativePath": [
1885
+ "dist",
1886
+ "commands",
1887
+ "vouch",
1888
+ "info.js"
1889
+ ]
1890
+ },
1891
+ "vouch:list": {
1892
+ "aliases": [
1893
+ "vl"
1894
+ ],
1895
+ "args": {
1896
+ "identifier": {
1897
+ "description": "Twitter username, ETH address, or ENS name (optional, filter by subject)",
1898
+ "name": "identifier",
1899
+ "required": false
1900
+ }
1901
+ },
1902
+ "description": "List vouches for a user or all vouches",
1903
+ "examples": [
1904
+ "<%= config.bin %> <%= command.id %>",
1905
+ "<%= config.bin %> <%= command.id %> 0xNowater",
1906
+ "<%= config.bin %> <%= command.id %> --author 0xNowater",
1907
+ "<%= config.bin %> <%= command.id %> --active",
1908
+ "<%= config.bin %> <%= command.id %> --limit 20 --json"
1909
+ ],
1910
+ "flags": {
1911
+ "json": {
1912
+ "char": "j",
1913
+ "description": "Output as JSON",
1914
+ "name": "json",
1915
+ "allowNo": false,
1916
+ "type": "boolean"
1917
+ },
1918
+ "verbose": {
1919
+ "char": "v",
1920
+ "description": "Show detailed error information",
1921
+ "name": "verbose",
1922
+ "allowNo": false,
1923
+ "type": "boolean"
1924
+ },
1925
+ "author": {
1926
+ "description": "Filter by author (Twitter username, ETH address, or ENS name)",
1927
+ "name": "author",
1928
+ "hasDynamicHelp": false,
1929
+ "multiple": false,
1930
+ "type": "option"
1931
+ },
1932
+ "active": {
1933
+ "description": "Show only active (non-archived) vouches",
1934
+ "name": "active",
1935
+ "allowNo": false,
1936
+ "type": "boolean"
1937
+ },
1938
+ "limit": {
1939
+ "char": "l",
1940
+ "description": "Max results per request",
1941
+ "name": "limit",
1942
+ "default": 10,
1943
+ "hasDynamicHelp": false,
1944
+ "multiple": false,
1945
+ "type": "option"
1946
+ },
1947
+ "offset": {
1948
+ "char": "o",
1949
+ "description": "Number of results to skip",
1950
+ "name": "offset",
1951
+ "default": 0,
1952
+ "hasDynamicHelp": false,
1953
+ "multiple": false,
1954
+ "type": "option"
1955
+ }
1956
+ },
1957
+ "hasDynamicHelp": false,
1958
+ "hiddenAliases": [],
1959
+ "id": "vouch:list",
1960
+ "pluginAlias": "@trust-ethos/cli",
1961
+ "pluginName": "@trust-ethos/cli",
1962
+ "pluginType": "core",
1963
+ "strict": true,
1964
+ "enableJsonFlag": false,
1965
+ "isESM": true,
1966
+ "relativePath": [
1967
+ "dist",
1968
+ "commands",
1969
+ "vouch",
1970
+ "list.js"
1971
+ ]
1972
+ },
1973
+ "vouch:mutual": {
1974
+ "aliases": [],
1975
+ "args": {
1976
+ "viewer": {
1977
+ "description": "Viewer user (Twitter username, ETH address, or ENS name)",
1978
+ "name": "viewer",
1979
+ "required": true
1980
+ },
1981
+ "target": {
1982
+ "description": "Target user (Twitter username, ETH address, or ENS name)",
1983
+ "name": "target",
1984
+ "required": true
1985
+ }
1986
+ },
1987
+ "description": "Find mutual vouchers between two users",
1988
+ "examples": [
1989
+ "<%= config.bin %> <%= command.id %> 0xNowater VitalikButerin",
1990
+ "<%= config.bin %> <%= command.id %> 0xNowater VitalikButerin --limit 20",
1991
+ "<%= config.bin %> <%= command.id %> 0xNowater VitalikButerin --json"
1992
+ ],
1993
+ "flags": {
1994
+ "json": {
1995
+ "char": "j",
1996
+ "description": "Output as JSON",
1997
+ "name": "json",
1998
+ "allowNo": false,
1999
+ "type": "boolean"
2000
+ },
2001
+ "verbose": {
2002
+ "char": "v",
2003
+ "description": "Show detailed error information",
2004
+ "name": "verbose",
2005
+ "allowNo": false,
2006
+ "type": "boolean"
2007
+ },
2008
+ "limit": {
2009
+ "char": "l",
2010
+ "description": "Max results",
2011
+ "name": "limit",
2012
+ "default": 10,
2013
+ "hasDynamicHelp": false,
2014
+ "multiple": false,
2015
+ "type": "option"
2016
+ }
2017
+ },
2018
+ "hasDynamicHelp": false,
2019
+ "hiddenAliases": [],
2020
+ "id": "vouch:mutual",
2021
+ "pluginAlias": "@trust-ethos/cli",
2022
+ "pluginName": "@trust-ethos/cli",
2023
+ "pluginType": "core",
2024
+ "strict": true,
2025
+ "enableJsonFlag": false,
2026
+ "isESM": true,
2027
+ "relativePath": [
2028
+ "dist",
2029
+ "commands",
2030
+ "vouch",
2031
+ "mutual.js"
2032
+ ]
2033
+ },
2034
+ "vouch:votes": {
2035
+ "aliases": [],
2036
+ "args": {
2037
+ "id": {
2038
+ "description": "Vouch ID",
2039
+ "name": "id",
2040
+ "required": true
2041
+ }
2042
+ },
2043
+ "description": "Show votes on a vouch",
2044
+ "examples": [
2045
+ "<%= config.bin %> <%= command.id %> 182",
2046
+ "<%= config.bin %> <%= command.id %> 182 --stats",
2047
+ "<%= config.bin %> <%= command.id %> 182 --upvotes",
2048
+ "<%= config.bin %> <%= command.id %> 182 --json"
2049
+ ],
2050
+ "flags": {
2051
+ "json": {
2052
+ "char": "j",
2053
+ "description": "Output as JSON",
2054
+ "name": "json",
2055
+ "allowNo": false,
2056
+ "type": "boolean"
2057
+ },
2058
+ "verbose": {
2059
+ "char": "v",
2060
+ "description": "Show detailed error information",
2061
+ "name": "verbose",
2062
+ "allowNo": false,
2063
+ "type": "boolean"
2064
+ },
2065
+ "stats": {
2066
+ "char": "s",
2067
+ "description": "Show vote statistics only",
2068
+ "name": "stats",
2069
+ "allowNo": false,
2070
+ "type": "boolean"
2071
+ },
2072
+ "upvotes": {
2073
+ "description": "Show only upvotes",
2074
+ "exclusive": [
2075
+ "downvotes"
2076
+ ],
2077
+ "name": "upvotes",
2078
+ "allowNo": false,
2079
+ "type": "boolean"
2080
+ },
2081
+ "downvotes": {
2082
+ "description": "Show only downvotes",
2083
+ "exclusive": [
2084
+ "upvotes"
2085
+ ],
2086
+ "name": "downvotes",
2087
+ "allowNo": false,
2088
+ "type": "boolean"
2089
+ },
2090
+ "limit": {
2091
+ "char": "l",
2092
+ "description": "Max results per request",
2093
+ "name": "limit",
2094
+ "default": 10,
2095
+ "hasDynamicHelp": false,
2096
+ "multiple": false,
2097
+ "type": "option"
2098
+ },
2099
+ "offset": {
2100
+ "char": "o",
2101
+ "description": "Number of results to skip",
2102
+ "name": "offset",
2103
+ "default": 0,
2104
+ "hasDynamicHelp": false,
2105
+ "multiple": false,
2106
+ "type": "option"
2107
+ }
2108
+ },
2109
+ "hasDynamicHelp": false,
2110
+ "hiddenAliases": [],
2111
+ "id": "vouch:votes",
2112
+ "pluginAlias": "@trust-ethos/cli",
2113
+ "pluginName": "@trust-ethos/cli",
2114
+ "pluginType": "core",
2115
+ "strict": true,
2116
+ "enableJsonFlag": false,
2117
+ "isESM": true,
2118
+ "relativePath": [
2119
+ "dist",
2120
+ "commands",
2121
+ "vouch",
2122
+ "votes.js"
2123
+ ]
2124
+ },
2125
+ "xp:rank": {
2126
+ "aliases": [
2127
+ "rank"
2128
+ ],
2129
+ "args": {
2130
+ "identifier": {
2131
+ "description": "Twitter username, ETH address, or ENS name",
2132
+ "name": "identifier",
2133
+ "required": true
2134
+ }
2135
+ },
2136
+ "description": "Show leaderboard rank for a user",
2137
+ "examples": [
2138
+ "<%= config.bin %> <%= command.id %> 0xNowater",
2139
+ "<%= config.bin %> <%= command.id %> 0xNowater --season 2",
2140
+ "<%= config.bin %> <%= command.id %> 0xNowater --json"
2141
+ ],
2142
+ "flags": {
2143
+ "json": {
2144
+ "char": "j",
2145
+ "description": "Output as JSON",
2146
+ "name": "json",
2147
+ "allowNo": false,
2148
+ "type": "boolean"
2149
+ },
2150
+ "season": {
2151
+ "char": "s",
2152
+ "description": "Show XP for specific season",
2153
+ "name": "season",
2154
+ "hasDynamicHelp": false,
2155
+ "multiple": false,
2156
+ "type": "option"
2157
+ },
2158
+ "verbose": {
2159
+ "char": "v",
2160
+ "description": "Show detailed error information",
2161
+ "name": "verbose",
2162
+ "allowNo": false,
2163
+ "type": "boolean"
2164
+ }
2165
+ },
2166
+ "hasDynamicHelp": false,
2167
+ "hiddenAliases": [],
2168
+ "id": "xp:rank",
2169
+ "pluginAlias": "@trust-ethos/cli",
2170
+ "pluginName": "@trust-ethos/cli",
2171
+ "pluginType": "core",
2172
+ "strict": true,
2173
+ "enableJsonFlag": false,
2174
+ "isESM": true,
2175
+ "relativePath": [
2176
+ "dist",
2177
+ "commands",
2178
+ "xp",
2179
+ "rank.js"
2180
+ ]
2181
+ },
2182
+ "xp:seasons": {
2183
+ "aliases": [],
2184
+ "args": {},
2185
+ "description": "List all XP seasons",
2186
+ "examples": [
2187
+ "<%= config.bin %> <%= command.id %>",
2188
+ "<%= config.bin %> <%= command.id %> --json"
2189
+ ],
2190
+ "flags": {
2191
+ "json": {
2192
+ "char": "j",
2193
+ "description": "Output as JSON",
2194
+ "name": "json",
2195
+ "allowNo": false,
2196
+ "type": "boolean"
2197
+ },
2198
+ "verbose": {
2199
+ "char": "v",
2200
+ "description": "Show detailed error information",
2201
+ "name": "verbose",
2202
+ "allowNo": false,
2203
+ "type": "boolean"
2204
+ }
2205
+ },
2206
+ "hasDynamicHelp": false,
2207
+ "hiddenAliases": [],
2208
+ "id": "xp:seasons",
2209
+ "pluginAlias": "@trust-ethos/cli",
2210
+ "pluginName": "@trust-ethos/cli",
2211
+ "pluginType": "core",
2212
+ "strict": true,
2213
+ "enableJsonFlag": false,
2214
+ "isESM": true,
2215
+ "relativePath": [
2216
+ "dist",
2217
+ "commands",
2218
+ "xp",
2219
+ "seasons.js"
2220
+ ]
2221
+ }
2222
+ },
2223
+ "version": "0.0.5"
2224
+ }