@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.
- package/LICENSE +21 -0
- package/README.md +1791 -0
- package/bin/dev.cmd +3 -0
- package/bin/dev.js +5 -0
- package/bin/run.cmd +3 -0
- package/bin/run.js +5 -0
- package/dist/commands/auction/active.d.ts +10 -0
- package/dist/commands/auction/active.js +39 -0
- package/dist/commands/auction/info.d.ts +16 -0
- package/dist/commands/auction/info.js +46 -0
- package/dist/commands/auction/list.d.ts +14 -0
- package/dist/commands/auction/list.js +61 -0
- package/dist/commands/broker/info.d.ts +16 -0
- package/dist/commands/broker/info.js +37 -0
- package/dist/commands/broker/list.d.ts +15 -0
- package/dist/commands/broker/list.js +62 -0
- package/dist/commands/config/get.d.ts +9 -0
- package/dist/commands/config/get.js +29 -0
- package/dist/commands/config/path.d.ts +6 -0
- package/dist/commands/config/path.js +12 -0
- package/dist/commands/config/set.d.ts +9 -0
- package/dist/commands/config/set.js +28 -0
- package/dist/commands/listing/info.d.ts +13 -0
- package/dist/commands/listing/info.js +41 -0
- package/dist/commands/listing/list.d.ts +13 -0
- package/dist/commands/listing/list.js +46 -0
- package/dist/commands/listing/voters.d.ts +19 -0
- package/dist/commands/listing/voters.js +48 -0
- package/dist/commands/market/featured.d.ts +10 -0
- package/dist/commands/market/featured.js +34 -0
- package/dist/commands/market/holders.d.ts +14 -0
- package/dist/commands/market/holders.js +46 -0
- package/dist/commands/market/info.d.ts +14 -0
- package/dist/commands/market/info.js +48 -0
- package/dist/commands/market/list.d.ts +16 -0
- package/dist/commands/market/list.js +55 -0
- package/dist/commands/nft/list.d.ts +15 -0
- package/dist/commands/nft/list.js +64 -0
- package/dist/commands/review/info.d.ts +17 -0
- package/dist/commands/review/info.js +49 -0
- package/dist/commands/review/list.d.ts +16 -0
- package/dist/commands/review/list.js +68 -0
- package/dist/commands/review/votes.d.ts +21 -0
- package/dist/commands/review/votes.js +91 -0
- package/dist/commands/score/status.d.ts +13 -0
- package/dist/commands/score/status.js +54 -0
- package/dist/commands/slash/info.d.ts +16 -0
- package/dist/commands/slash/info.js +42 -0
- package/dist/commands/slash/list.d.ts +15 -0
- package/dist/commands/slash/list.js +50 -0
- package/dist/commands/slash/votes.d.ts +21 -0
- package/dist/commands/slash/votes.js +91 -0
- package/dist/commands/user/activity.d.ts +15 -0
- package/dist/commands/user/activity.js +71 -0
- package/dist/commands/user/info.d.ts +14 -0
- package/dist/commands/user/info.js +51 -0
- package/dist/commands/user/invitations.d.ts +16 -0
- package/dist/commands/user/invitations.js +73 -0
- package/dist/commands/user/search.d.ts +15 -0
- package/dist/commands/user/search.js +59 -0
- package/dist/commands/user/summary.d.ts +14 -0
- package/dist/commands/user/summary.js +134 -0
- package/dist/commands/validator/info.d.ts +13 -0
- package/dist/commands/validator/info.js +53 -0
- package/dist/commands/validator/list.d.ts +13 -0
- package/dist/commands/validator/list.js +64 -0
- package/dist/commands/validator/sales.d.ts +12 -0
- package/dist/commands/validator/sales.js +52 -0
- package/dist/commands/vouch/info.d.ts +17 -0
- package/dist/commands/vouch/info.js +53 -0
- package/dist/commands/vouch/list.d.ts +18 -0
- package/dist/commands/vouch/list.js +89 -0
- package/dist/commands/vouch/mutual.d.ts +15 -0
- package/dist/commands/vouch/mutual.js +68 -0
- package/dist/commands/vouch/votes.d.ts +21 -0
- package/dist/commands/vouch/votes.js +91 -0
- package/dist/commands/xp/rank.d.ts +15 -0
- package/dist/commands/xp/rank.js +74 -0
- package/dist/commands/xp/seasons.d.ts +10 -0
- package/dist/commands/xp/seasons.js +42 -0
- package/dist/hooks/init.d.ts +3 -0
- package/dist/hooks/init.js +40 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/dist/lib/api/echo-client.d.ts +624 -0
- package/dist/lib/api/echo-client.js +408 -0
- package/dist/lib/config/index.d.ts +6 -0
- package/dist/lib/config/index.js +32 -0
- package/dist/lib/errors/cli-error.d.ts +23 -0
- package/dist/lib/errors/cli-error.js +57 -0
- package/dist/lib/formatting/colors.d.ts +13 -0
- package/dist/lib/formatting/colors.js +22 -0
- package/dist/lib/formatting/error.d.ts +1 -0
- package/dist/lib/formatting/error.js +64 -0
- package/dist/lib/formatting/output.d.ts +45 -0
- package/dist/lib/formatting/output.js +753 -0
- package/dist/lib/help.d.ts +4 -0
- package/dist/lib/help.js +28 -0
- package/dist/lib/update/index.d.ts +37 -0
- package/dist/lib/update/index.js +286 -0
- package/dist/lib/validation/userkey.d.ts +11 -0
- package/dist/lib/validation/userkey.js +81 -0
- package/oclif.manifest.json +2224 -0
- package/package.json +87 -0
package/README.md
ADDED
|
@@ -0,0 +1,1791 @@
|
|
|
1
|
+
# @trust-ethos/cli
|
|
2
|
+
|
|
3
|
+
```text
|
|
4
|
+
............. .......... .. ...
|
|
5
|
+
............ ... .. .. ..
|
|
6
|
+
......... ... . ...... .. .... ..... ......
|
|
7
|
+
......... ... . .. . ... ..... ... ... .. ..
|
|
8
|
+
.......... ......... .. .. ... ... ... ... .
|
|
9
|
+
.......... ... ... .. .. ... ... .. .....
|
|
10
|
+
.......... ... .. .. ... ... .. ....
|
|
11
|
+
......... ... .. .. .. ... ... ... . ...
|
|
12
|
+
............ ... .. .. .. ... ... .. .. ...
|
|
13
|
+
............. ........... .... .... ... ....... ........
|
|
14
|
+
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
Official Ethos CLI - Query user profiles, XP balances, and reputation data
|
|
18
|
+
|
|
19
|
+
[](https://www.npmjs.com/package/@trust-ethos/cli)
|
|
20
|
+
[](https://opensource.org/licenses/MIT)
|
|
21
|
+
|
|
22
|
+
## Installation
|
|
23
|
+
|
|
24
|
+
### Quick Install (Recommended)
|
|
25
|
+
|
|
26
|
+
```bash
|
|
27
|
+
curl -fsSL https://raw.githubusercontent.com/trust-ethos/ethos-cli/main/scripts/install.sh | sh
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
This installs the CLI to `~/.ethos/` and **automatically keeps it up to date**.
|
|
31
|
+
|
|
32
|
+
### npm
|
|
33
|
+
|
|
34
|
+
```bash
|
|
35
|
+
npm install -g @trust-ethos/cli
|
|
36
|
+
# or
|
|
37
|
+
bun install -g @trust-ethos/cli
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
### Homebrew
|
|
41
|
+
|
|
42
|
+
```bash
|
|
43
|
+
brew tap trust-ethos/tap
|
|
44
|
+
brew install ethos
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
### From Source
|
|
48
|
+
|
|
49
|
+
```bash
|
|
50
|
+
git clone https://github.com/trust-ethos/ethos-cli.git
|
|
51
|
+
cd ethos-cli
|
|
52
|
+
bun install
|
|
53
|
+
bun run build
|
|
54
|
+
npm link
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
To unlink: `npm unlink -g @trust-ethos/cli`
|
|
58
|
+
|
|
59
|
+
## Updates
|
|
60
|
+
|
|
61
|
+
The CLI handles updates differently depending on how you installed it:
|
|
62
|
+
|
|
63
|
+
| Install Method | Update Behavior |
|
|
64
|
+
|----------------|-----------------|
|
|
65
|
+
| **curl** | Auto-updates silently in the background |
|
|
66
|
+
| **npm** | Shows update notification, run `npm update -g @trust-ethos/cli` |
|
|
67
|
+
| **Homebrew** | Shows update notification, run `brew upgrade ethos` |
|
|
68
|
+
|
|
69
|
+
For curl installs, updates are checked daily and applied automatically on the next CLI run.
|
|
70
|
+
|
|
71
|
+
## Usage
|
|
72
|
+
|
|
73
|
+
### User Commands
|
|
74
|
+
|
|
75
|
+
**Get user profile** (includes score, XP, stats)
|
|
76
|
+
|
|
77
|
+
```bash
|
|
78
|
+
ethos user info 0xNowater # Twitter username
|
|
79
|
+
ethos user info vitalik.eth # ENS name
|
|
80
|
+
ethos user info 0xd8dA6BF2... # ETH address
|
|
81
|
+
ethos user info 0xNowater --json # JSON output
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
**Search for users**
|
|
85
|
+
|
|
86
|
+
```bash
|
|
87
|
+
ethos user search vitalik
|
|
88
|
+
ethos user search "crypto developer" --limit 5
|
|
89
|
+
ethos user search web3 --json
|
|
90
|
+
```
|
|
91
|
+
|
|
92
|
+
### XP Commands
|
|
93
|
+
|
|
94
|
+
**List XP seasons**
|
|
95
|
+
|
|
96
|
+
```bash
|
|
97
|
+
ethos xp seasons
|
|
98
|
+
ethos xp seasons --json
|
|
99
|
+
```
|
|
100
|
+
|
|
101
|
+
**Check leaderboard rank**
|
|
102
|
+
|
|
103
|
+
```bash
|
|
104
|
+
ethos xp rank 0xNowater
|
|
105
|
+
ethos xp rank vitalik.eth --json
|
|
106
|
+
```
|
|
107
|
+
|
|
108
|
+
## Identifier Formats
|
|
109
|
+
|
|
110
|
+
The CLI intelligently detects identifier types:
|
|
111
|
+
|
|
112
|
+
| Format | Example | Detection |
|
|
113
|
+
|--------|---------|-----------|
|
|
114
|
+
| Twitter username | `0xNowater` | Default (plain text) |
|
|
115
|
+
| ETH address | `0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045` | 0x + 40 hex chars |
|
|
116
|
+
| ENS name | `vitalik.eth` | Ends with .eth |
|
|
117
|
+
| Explicit prefix | `twitter:name`, `address:0x...`, `profileId:21` | Colon-prefixed |
|
|
118
|
+
|
|
119
|
+
## JSON Output
|
|
120
|
+
|
|
121
|
+
All commands support `--json` (or `-j`) flag for machine-readable output:
|
|
122
|
+
|
|
123
|
+
```bash
|
|
124
|
+
ethos user info 0xNowater --json | jq .score
|
|
125
|
+
ethos user search vitalik --json | jq '.values[0].username'
|
|
126
|
+
ethos xp rank 0xNowater --json | jq .rank
|
|
127
|
+
```
|
|
128
|
+
|
|
129
|
+
## Shell Completions
|
|
130
|
+
|
|
131
|
+
Generate shell completions for your shell:
|
|
132
|
+
|
|
133
|
+
```bash
|
|
134
|
+
# Bash
|
|
135
|
+
ethos autocomplete bash
|
|
136
|
+
|
|
137
|
+
# Zsh
|
|
138
|
+
ethos autocomplete zsh
|
|
139
|
+
|
|
140
|
+
# Fish
|
|
141
|
+
ethos autocomplete fish
|
|
142
|
+
```
|
|
143
|
+
|
|
144
|
+
Follow the printed instructions to add completions to your shell.
|
|
145
|
+
|
|
146
|
+
## Configuration
|
|
147
|
+
|
|
148
|
+
Configure the CLI using the `config` command:
|
|
149
|
+
|
|
150
|
+
```bash
|
|
151
|
+
# Show current configuration
|
|
152
|
+
ethos config get
|
|
153
|
+
|
|
154
|
+
# Set the API URL
|
|
155
|
+
ethos config set apiUrl=https://api.ethos.network
|
|
156
|
+
|
|
157
|
+
# Show config file path
|
|
158
|
+
ethos config path
|
|
159
|
+
```
|
|
160
|
+
|
|
161
|
+
The config file is stored at `~/.config/ethos/config.json`.
|
|
162
|
+
|
|
163
|
+
## Exit Codes
|
|
164
|
+
|
|
165
|
+
- `0` - Success
|
|
166
|
+
- `1` - Runtime error (API failure, not found)
|
|
167
|
+
- `2` - Invalid usage (missing args, validation error)
|
|
168
|
+
|
|
169
|
+
## Development
|
|
170
|
+
|
|
171
|
+
### Setup
|
|
172
|
+
|
|
173
|
+
```bash
|
|
174
|
+
git clone https://github.com/trust-ethos/ethos-cli.git
|
|
175
|
+
cd ethos-cli
|
|
176
|
+
bun install
|
|
177
|
+
```
|
|
178
|
+
|
|
179
|
+
### Commands
|
|
180
|
+
|
|
181
|
+
```bash
|
|
182
|
+
bun run dev # Run CLI in development mode
|
|
183
|
+
bun run build # Build TypeScript
|
|
184
|
+
bun test # Run tests
|
|
185
|
+
bun run test:watch # Run tests in watch mode
|
|
186
|
+
bun run typecheck # Type check without building
|
|
187
|
+
bun run lint # Lint code
|
|
188
|
+
bun run readme # Generate README command reference
|
|
189
|
+
```
|
|
190
|
+
|
|
191
|
+
### Project Structure
|
|
192
|
+
|
|
193
|
+
```
|
|
194
|
+
ethos-cli/
|
|
195
|
+
├── src/
|
|
196
|
+
│ ├── commands/ # Command implementations
|
|
197
|
+
│ │ ├── user/ # User-related commands
|
|
198
|
+
│ │ └── xp/ # XP-related commands
|
|
199
|
+
│ ├── lib/
|
|
200
|
+
│ │ ├── api/ # API client
|
|
201
|
+
│ │ ├── formatting/ # Output formatting
|
|
202
|
+
│ │ └── validation/ # Input validation
|
|
203
|
+
│ └── index.ts
|
|
204
|
+
├── test/ # Test files
|
|
205
|
+
├── bin/ # Entry points
|
|
206
|
+
└── dist/ # Built output
|
|
207
|
+
```
|
|
208
|
+
|
|
209
|
+
## LLM Agent Integration
|
|
210
|
+
|
|
211
|
+
This CLI is designed to be agent-friendly:
|
|
212
|
+
|
|
213
|
+
- All commands support `--json` for structured output
|
|
214
|
+
- Semantic exit codes for programmatic error handling
|
|
215
|
+
- Environment variables for configuration
|
|
216
|
+
- Stable output schemas (versioned with package)
|
|
217
|
+
|
|
218
|
+
See [SKILL.md](./SKILL.md) for detailed LLM agent integration guide.
|
|
219
|
+
|
|
220
|
+
## Contributing
|
|
221
|
+
|
|
222
|
+
Contributions are welcome! Please read [CLAUDE.md](./CLAUDE.md) for development guidelines.
|
|
223
|
+
|
|
224
|
+
## License
|
|
225
|
+
|
|
226
|
+
MIT License - see [LICENSE](./LICENSE) file for details.
|
|
227
|
+
|
|
228
|
+
## Links
|
|
229
|
+
|
|
230
|
+
- [Ethos Network](https://ethos.network)
|
|
231
|
+
- [GitHub Repository](https://github.com/trust-ethos/ethos-cli)
|
|
232
|
+
- [npm Package](https://www.npmjs.com/package/@trust-ethos/cli)
|
|
233
|
+
- [Documentation](https://docs.ethos.network)
|
|
234
|
+
|
|
235
|
+
<!-- toc -->
|
|
236
|
+
* [@trust-ethos/cli](#trust-ethoscli)
|
|
237
|
+
* [or](#or)
|
|
238
|
+
* [Bash](#bash)
|
|
239
|
+
* [Zsh](#zsh)
|
|
240
|
+
* [Fish](#fish)
|
|
241
|
+
* [Show current configuration](#show-current-configuration)
|
|
242
|
+
* [Set the API URL](#set-the-api-url)
|
|
243
|
+
* [Show config file path](#show-config-file-path)
|
|
244
|
+
<!-- tocstop -->
|
|
245
|
+
<!-- usage -->
|
|
246
|
+
```sh-session
|
|
247
|
+
$ npm install -g @trust-ethos/cli
|
|
248
|
+
$ ethos COMMAND
|
|
249
|
+
running command...
|
|
250
|
+
$ ethos (--version)
|
|
251
|
+
@trust-ethos/cli/0.0.5 darwin-arm64 node-v24.13.0
|
|
252
|
+
$ ethos --help [COMMAND]
|
|
253
|
+
USAGE
|
|
254
|
+
$ ethos COMMAND
|
|
255
|
+
...
|
|
256
|
+
```
|
|
257
|
+
<!-- usagestop -->
|
|
258
|
+
<!-- commands -->
|
|
259
|
+
* [`ethos auction active`](#ethos-auction-active)
|
|
260
|
+
* [`ethos auction info ID`](#ethos-auction-info-id)
|
|
261
|
+
* [`ethos auction list`](#ethos-auction-list)
|
|
262
|
+
* [`ethos autocomplete [SHELL]`](#ethos-autocomplete-shell)
|
|
263
|
+
* [`ethos broker info ID`](#ethos-broker-info-id)
|
|
264
|
+
* [`ethos broker list`](#ethos-broker-list)
|
|
265
|
+
* [`ethos config get`](#ethos-config-get)
|
|
266
|
+
* [`ethos config path`](#ethos-config-path)
|
|
267
|
+
* [`ethos config set VALUE`](#ethos-config-set-value)
|
|
268
|
+
* [`ethos find QUERY`](#ethos-find-query)
|
|
269
|
+
* [`ethos help [COMMAND]`](#ethos-help-command)
|
|
270
|
+
* [`ethos listing info IDENTIFIER`](#ethos-listing-info-identifier)
|
|
271
|
+
* [`ethos listing list`](#ethos-listing-list)
|
|
272
|
+
* [`ethos listing voters PROJECTID`](#ethos-listing-voters-projectid)
|
|
273
|
+
* [`ethos market featured`](#ethos-market-featured)
|
|
274
|
+
* [`ethos market holders IDENTIFIER`](#ethos-market-holders-identifier)
|
|
275
|
+
* [`ethos market info IDENTIFIER`](#ethos-market-info-identifier)
|
|
276
|
+
* [`ethos market list`](#ethos-market-list)
|
|
277
|
+
* [`ethos mi IDENTIFIER`](#ethos-mi-identifier)
|
|
278
|
+
* [`ethos ml`](#ethos-ml)
|
|
279
|
+
* [`ethos nft list IDENTIFIER`](#ethos-nft-list-identifier)
|
|
280
|
+
* [`ethos rank IDENTIFIER`](#ethos-rank-identifier)
|
|
281
|
+
* [`ethos review info ID`](#ethos-review-info-id)
|
|
282
|
+
* [`ethos review list IDENTIFIER`](#ethos-review-list-identifier)
|
|
283
|
+
* [`ethos review votes ID`](#ethos-review-votes-id)
|
|
284
|
+
* [`ethos ri ID`](#ethos-ri-id)
|
|
285
|
+
* [`ethos rl IDENTIFIER`](#ethos-rl-identifier)
|
|
286
|
+
* [`ethos score status IDENTIFIER`](#ethos-score-status-identifier)
|
|
287
|
+
* [`ethos slash info ID`](#ethos-slash-info-id)
|
|
288
|
+
* [`ethos slash list`](#ethos-slash-list)
|
|
289
|
+
* [`ethos slash votes ID`](#ethos-slash-votes-id)
|
|
290
|
+
* [`ethos u IDENTIFIER`](#ethos-u-identifier)
|
|
291
|
+
* [`ethos ui IDENTIFIER`](#ethos-ui-identifier)
|
|
292
|
+
* [`ethos us IDENTIFIER`](#ethos-us-identifier)
|
|
293
|
+
* [`ethos user activity IDENTIFIER`](#ethos-user-activity-identifier)
|
|
294
|
+
* [`ethos user info IDENTIFIER`](#ethos-user-info-identifier)
|
|
295
|
+
* [`ethos user invitations IDENTIFIER`](#ethos-user-invitations-identifier)
|
|
296
|
+
* [`ethos user search QUERY`](#ethos-user-search-query)
|
|
297
|
+
* [`ethos user summary IDENTIFIER`](#ethos-user-summary-identifier)
|
|
298
|
+
* [`ethos validator info TOKENID`](#ethos-validator-info-tokenid)
|
|
299
|
+
* [`ethos validator list`](#ethos-validator-list)
|
|
300
|
+
* [`ethos validator sales`](#ethos-validator-sales)
|
|
301
|
+
* [`ethos vi ID`](#ethos-vi-id)
|
|
302
|
+
* [`ethos vl [IDENTIFIER]`](#ethos-vl-identifier)
|
|
303
|
+
* [`ethos vouch info ID`](#ethos-vouch-info-id)
|
|
304
|
+
* [`ethos vouch list [IDENTIFIER]`](#ethos-vouch-list-identifier)
|
|
305
|
+
* [`ethos vouch mutual VIEWER TARGET`](#ethos-vouch-mutual-viewer-target)
|
|
306
|
+
* [`ethos vouch votes ID`](#ethos-vouch-votes-id)
|
|
307
|
+
* [`ethos xp rank IDENTIFIER`](#ethos-xp-rank-identifier)
|
|
308
|
+
* [`ethos xp seasons`](#ethos-xp-seasons)
|
|
309
|
+
|
|
310
|
+
## `ethos auction active`
|
|
311
|
+
|
|
312
|
+
Show the currently active auction
|
|
313
|
+
|
|
314
|
+
```
|
|
315
|
+
USAGE
|
|
316
|
+
$ ethos auction active [-j] [-v]
|
|
317
|
+
|
|
318
|
+
FLAGS
|
|
319
|
+
-j, --json Output as JSON
|
|
320
|
+
-v, --verbose Show detailed error information
|
|
321
|
+
|
|
322
|
+
DESCRIPTION
|
|
323
|
+
Show the currently active auction
|
|
324
|
+
|
|
325
|
+
EXAMPLES
|
|
326
|
+
$ ethos auction active
|
|
327
|
+
|
|
328
|
+
$ ethos auction active --json
|
|
329
|
+
```
|
|
330
|
+
|
|
331
|
+
_See code: [src/commands/auction/active.ts](https://github.com/trust-ethos/ethos-cli/blob/v0.0.5/src/commands/auction/active.ts)_
|
|
332
|
+
|
|
333
|
+
## `ethos auction info ID`
|
|
334
|
+
|
|
335
|
+
Get details of a specific auction
|
|
336
|
+
|
|
337
|
+
```
|
|
338
|
+
USAGE
|
|
339
|
+
$ ethos auction info ID [-j] [-v]
|
|
340
|
+
|
|
341
|
+
ARGUMENTS
|
|
342
|
+
ID Auction ID
|
|
343
|
+
|
|
344
|
+
FLAGS
|
|
345
|
+
-j, --json Output as JSON
|
|
346
|
+
-v, --verbose Show detailed error information
|
|
347
|
+
|
|
348
|
+
DESCRIPTION
|
|
349
|
+
Get details of a specific auction
|
|
350
|
+
|
|
351
|
+
EXAMPLES
|
|
352
|
+
$ ethos auction info 1
|
|
353
|
+
|
|
354
|
+
$ ethos auction info 1 --json
|
|
355
|
+
```
|
|
356
|
+
|
|
357
|
+
_See code: [src/commands/auction/info.ts](https://github.com/trust-ethos/ethos-cli/blob/v0.0.5/src/commands/auction/info.ts)_
|
|
358
|
+
|
|
359
|
+
## `ethos auction list`
|
|
360
|
+
|
|
361
|
+
List validator NFT auctions
|
|
362
|
+
|
|
363
|
+
```
|
|
364
|
+
USAGE
|
|
365
|
+
$ ethos auction list [-j] [-v] [--status pending|active|ended|settled] [-l <value>] [-o <value>]
|
|
366
|
+
|
|
367
|
+
FLAGS
|
|
368
|
+
-j, --json Output as JSON
|
|
369
|
+
-l, --limit=<value> [default: 10] Max results per request
|
|
370
|
+
-o, --offset=<value> Number of results to skip
|
|
371
|
+
-v, --verbose Show detailed error information
|
|
372
|
+
--status=<option> Filter by status
|
|
373
|
+
<options: pending|active|ended|settled>
|
|
374
|
+
|
|
375
|
+
DESCRIPTION
|
|
376
|
+
List validator NFT auctions
|
|
377
|
+
|
|
378
|
+
EXAMPLES
|
|
379
|
+
$ ethos auction list
|
|
380
|
+
|
|
381
|
+
$ ethos auction list --status active
|
|
382
|
+
|
|
383
|
+
$ ethos auction list --json
|
|
384
|
+
```
|
|
385
|
+
|
|
386
|
+
_See code: [src/commands/auction/list.ts](https://github.com/trust-ethos/ethos-cli/blob/v0.0.5/src/commands/auction/list.ts)_
|
|
387
|
+
|
|
388
|
+
## `ethos autocomplete [SHELL]`
|
|
389
|
+
|
|
390
|
+
Display autocomplete installation instructions.
|
|
391
|
+
|
|
392
|
+
```
|
|
393
|
+
USAGE
|
|
394
|
+
$ ethos autocomplete [SHELL] [-r]
|
|
395
|
+
|
|
396
|
+
ARGUMENTS
|
|
397
|
+
[SHELL] (zsh|bash|powershell) Shell type
|
|
398
|
+
|
|
399
|
+
FLAGS
|
|
400
|
+
-r, --refresh-cache Refresh cache (ignores displaying instructions)
|
|
401
|
+
|
|
402
|
+
DESCRIPTION
|
|
403
|
+
Display autocomplete installation instructions.
|
|
404
|
+
|
|
405
|
+
EXAMPLES
|
|
406
|
+
$ ethos autocomplete
|
|
407
|
+
|
|
408
|
+
$ ethos autocomplete bash
|
|
409
|
+
|
|
410
|
+
$ ethos autocomplete zsh
|
|
411
|
+
|
|
412
|
+
$ ethos autocomplete powershell
|
|
413
|
+
|
|
414
|
+
$ ethos autocomplete --refresh-cache
|
|
415
|
+
```
|
|
416
|
+
|
|
417
|
+
_See code: [@oclif/plugin-autocomplete](https://github.com/oclif/plugin-autocomplete/blob/v3.2.40/src/commands/autocomplete/index.ts)_
|
|
418
|
+
|
|
419
|
+
## `ethos broker info ID`
|
|
420
|
+
|
|
421
|
+
Get details of a specific broker post
|
|
422
|
+
|
|
423
|
+
```
|
|
424
|
+
USAGE
|
|
425
|
+
$ ethos broker info ID [-j] [-v]
|
|
426
|
+
|
|
427
|
+
ARGUMENTS
|
|
428
|
+
ID Broker post ID
|
|
429
|
+
|
|
430
|
+
FLAGS
|
|
431
|
+
-j, --json Output as JSON
|
|
432
|
+
-v, --verbose Show detailed error information
|
|
433
|
+
|
|
434
|
+
DESCRIPTION
|
|
435
|
+
Get details of a specific broker post
|
|
436
|
+
|
|
437
|
+
EXAMPLES
|
|
438
|
+
$ ethos broker info 123
|
|
439
|
+
|
|
440
|
+
$ ethos broker info 123 --json
|
|
441
|
+
```
|
|
442
|
+
|
|
443
|
+
_See code: [src/commands/broker/info.ts](https://github.com/trust-ethos/ethos-cli/blob/v0.0.5/src/commands/broker/info.ts)_
|
|
444
|
+
|
|
445
|
+
## `ethos broker list`
|
|
446
|
+
|
|
447
|
+
List broker posts (jobs, services, bounties)
|
|
448
|
+
|
|
449
|
+
```
|
|
450
|
+
USAGE
|
|
451
|
+
$ ethos broker list [-j] [-v] [-t sell|buy|hire|for-hire|bounty] [-s <value>] [--sort newest|top|hot] [-l
|
|
452
|
+
<value>] [-o <value>]
|
|
453
|
+
|
|
454
|
+
FLAGS
|
|
455
|
+
-j, --json Output as JSON
|
|
456
|
+
-l, --limit=<value> [default: 10] Max results per request
|
|
457
|
+
-o, --offset=<value> Number of results to skip
|
|
458
|
+
-s, --search=<value> Search in title/description
|
|
459
|
+
-t, --type=<option> Filter by post type
|
|
460
|
+
<options: sell|buy|hire|for-hire|bounty>
|
|
461
|
+
-v, --verbose Show detailed error information
|
|
462
|
+
--sort=<option> [default: hot] Sort order
|
|
463
|
+
<options: newest|top|hot>
|
|
464
|
+
|
|
465
|
+
DESCRIPTION
|
|
466
|
+
List broker posts (jobs, services, bounties)
|
|
467
|
+
|
|
468
|
+
EXAMPLES
|
|
469
|
+
$ ethos broker list
|
|
470
|
+
|
|
471
|
+
$ ethos broker list --type hire
|
|
472
|
+
|
|
473
|
+
$ ethos broker list --search "solidity developer"
|
|
474
|
+
|
|
475
|
+
$ ethos broker list --type sell --limit 5 --json
|
|
476
|
+
```
|
|
477
|
+
|
|
478
|
+
_See code: [src/commands/broker/list.ts](https://github.com/trust-ethos/ethos-cli/blob/v0.0.5/src/commands/broker/list.ts)_
|
|
479
|
+
|
|
480
|
+
## `ethos config get`
|
|
481
|
+
|
|
482
|
+
Show current configuration
|
|
483
|
+
|
|
484
|
+
```
|
|
485
|
+
USAGE
|
|
486
|
+
$ ethos config get [-j]
|
|
487
|
+
|
|
488
|
+
FLAGS
|
|
489
|
+
-j, --json Output as JSON
|
|
490
|
+
|
|
491
|
+
DESCRIPTION
|
|
492
|
+
Show current configuration
|
|
493
|
+
|
|
494
|
+
EXAMPLES
|
|
495
|
+
$ ethos config get
|
|
496
|
+
|
|
497
|
+
$ ethos config get --json
|
|
498
|
+
```
|
|
499
|
+
|
|
500
|
+
_See code: [src/commands/config/get.ts](https://github.com/trust-ethos/ethos-cli/blob/v0.0.5/src/commands/config/get.ts)_
|
|
501
|
+
|
|
502
|
+
## `ethos config path`
|
|
503
|
+
|
|
504
|
+
Show config file path
|
|
505
|
+
|
|
506
|
+
```
|
|
507
|
+
USAGE
|
|
508
|
+
$ ethos config path
|
|
509
|
+
|
|
510
|
+
DESCRIPTION
|
|
511
|
+
Show config file path
|
|
512
|
+
|
|
513
|
+
EXAMPLES
|
|
514
|
+
$ ethos config path
|
|
515
|
+
```
|
|
516
|
+
|
|
517
|
+
_See code: [src/commands/config/path.ts](https://github.com/trust-ethos/ethos-cli/blob/v0.0.5/src/commands/config/path.ts)_
|
|
518
|
+
|
|
519
|
+
## `ethos config set VALUE`
|
|
520
|
+
|
|
521
|
+
Set configuration value
|
|
522
|
+
|
|
523
|
+
```
|
|
524
|
+
USAGE
|
|
525
|
+
$ ethos config set VALUE
|
|
526
|
+
|
|
527
|
+
ARGUMENTS
|
|
528
|
+
VALUE Configuration in format: apiUrl=<url>
|
|
529
|
+
|
|
530
|
+
DESCRIPTION
|
|
531
|
+
Set configuration value
|
|
532
|
+
|
|
533
|
+
EXAMPLES
|
|
534
|
+
$ ethos config set apiUrl=https://api.ethos.network
|
|
535
|
+
|
|
536
|
+
$ ethos config set apiUrl=https://api.dev.ethos.network
|
|
537
|
+
```
|
|
538
|
+
|
|
539
|
+
_See code: [src/commands/config/set.ts](https://github.com/trust-ethos/ethos-cli/blob/v0.0.5/src/commands/config/set.ts)_
|
|
540
|
+
|
|
541
|
+
## `ethos find QUERY`
|
|
542
|
+
|
|
543
|
+
Search for users by name, username, or address
|
|
544
|
+
|
|
545
|
+
```
|
|
546
|
+
USAGE
|
|
547
|
+
$ ethos find QUERY [-j] [-l <value>] [-v]
|
|
548
|
+
|
|
549
|
+
ARGUMENTS
|
|
550
|
+
QUERY Search query
|
|
551
|
+
|
|
552
|
+
FLAGS
|
|
553
|
+
-j, --json Output as JSON
|
|
554
|
+
-l, --limit=<value> [default: 10] Maximum number of results
|
|
555
|
+
-v, --verbose Show detailed error information
|
|
556
|
+
|
|
557
|
+
DESCRIPTION
|
|
558
|
+
Search for users by name, username, or address
|
|
559
|
+
|
|
560
|
+
ALIASES
|
|
561
|
+
$ ethos find
|
|
562
|
+
|
|
563
|
+
EXAMPLES
|
|
564
|
+
$ ethos find vitalik
|
|
565
|
+
|
|
566
|
+
$ ethos find "crypto developer"
|
|
567
|
+
|
|
568
|
+
$ ethos find vitalik --json
|
|
569
|
+
|
|
570
|
+
$ ethos find web3 --limit 5
|
|
571
|
+
```
|
|
572
|
+
|
|
573
|
+
## `ethos help [COMMAND]`
|
|
574
|
+
|
|
575
|
+
Display help for ethos.
|
|
576
|
+
|
|
577
|
+
```
|
|
578
|
+
USAGE
|
|
579
|
+
$ ethos help [COMMAND...] [-n]
|
|
580
|
+
|
|
581
|
+
ARGUMENTS
|
|
582
|
+
[COMMAND...] Command to show help for.
|
|
583
|
+
|
|
584
|
+
FLAGS
|
|
585
|
+
-n, --nested-commands Include all nested commands in the output.
|
|
586
|
+
|
|
587
|
+
DESCRIPTION
|
|
588
|
+
Display help for ethos.
|
|
589
|
+
```
|
|
590
|
+
|
|
591
|
+
_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v6.2.37/src/commands/help.ts)_
|
|
592
|
+
|
|
593
|
+
## `ethos listing info IDENTIFIER`
|
|
594
|
+
|
|
595
|
+
Get details of a specific listing/project
|
|
596
|
+
|
|
597
|
+
```
|
|
598
|
+
USAGE
|
|
599
|
+
$ ethos listing info IDENTIFIER [-j] [-v]
|
|
600
|
+
|
|
601
|
+
ARGUMENTS
|
|
602
|
+
IDENTIFIER Project ID or username
|
|
603
|
+
|
|
604
|
+
FLAGS
|
|
605
|
+
-j, --json Output as JSON
|
|
606
|
+
-v, --verbose Show detailed error information
|
|
607
|
+
|
|
608
|
+
DESCRIPTION
|
|
609
|
+
Get details of a specific listing/project
|
|
610
|
+
|
|
611
|
+
EXAMPLES
|
|
612
|
+
$ ethos listing info 123
|
|
613
|
+
|
|
614
|
+
$ ethos listing info uniswap
|
|
615
|
+
|
|
616
|
+
$ ethos listing info uniswap --json
|
|
617
|
+
```
|
|
618
|
+
|
|
619
|
+
_See code: [src/commands/listing/info.ts](https://github.com/trust-ethos/ethos-cli/blob/v0.0.5/src/commands/listing/info.ts)_
|
|
620
|
+
|
|
621
|
+
## `ethos listing list`
|
|
622
|
+
|
|
623
|
+
List projects on Ethos Listings
|
|
624
|
+
|
|
625
|
+
```
|
|
626
|
+
USAGE
|
|
627
|
+
$ ethos listing list [-j] [-v] [--status active|pending|archived] [-l <value>] [-o <value>]
|
|
628
|
+
|
|
629
|
+
FLAGS
|
|
630
|
+
-j, --json Output as JSON
|
|
631
|
+
-l, --limit=<value> [default: 10] Max results per request
|
|
632
|
+
-o, --offset=<value> Number of results to skip
|
|
633
|
+
-v, --verbose Show detailed error information
|
|
634
|
+
--status=<option> [default: active] Filter by status
|
|
635
|
+
<options: active|pending|archived>
|
|
636
|
+
|
|
637
|
+
DESCRIPTION
|
|
638
|
+
List projects on Ethos Listings
|
|
639
|
+
|
|
640
|
+
EXAMPLES
|
|
641
|
+
$ ethos listing list
|
|
642
|
+
|
|
643
|
+
$ ethos listing list --status active
|
|
644
|
+
|
|
645
|
+
$ ethos listing list --limit 20 --json
|
|
646
|
+
```
|
|
647
|
+
|
|
648
|
+
_See code: [src/commands/listing/list.ts](https://github.com/trust-ethos/ethos-cli/blob/v0.0.5/src/commands/listing/list.ts)_
|
|
649
|
+
|
|
650
|
+
## `ethos listing voters PROJECTID`
|
|
651
|
+
|
|
652
|
+
Show voters for a listing/project
|
|
653
|
+
|
|
654
|
+
```
|
|
655
|
+
USAGE
|
|
656
|
+
$ ethos listing voters PROJECTID [-j] [-v] [--sentiment bullish|bearish] [-l <value>] [-o <value>]
|
|
657
|
+
|
|
658
|
+
ARGUMENTS
|
|
659
|
+
PROJECTID Project ID
|
|
660
|
+
|
|
661
|
+
FLAGS
|
|
662
|
+
-j, --json Output as JSON
|
|
663
|
+
-l, --limit=<value> [default: 10] Max results per request
|
|
664
|
+
-o, --offset=<value> Number of results to skip
|
|
665
|
+
-v, --verbose Show detailed error information
|
|
666
|
+
--sentiment=<option> Filter by sentiment
|
|
667
|
+
<options: bullish|bearish>
|
|
668
|
+
|
|
669
|
+
DESCRIPTION
|
|
670
|
+
Show voters for a listing/project
|
|
671
|
+
|
|
672
|
+
EXAMPLES
|
|
673
|
+
$ ethos listing voters 123
|
|
674
|
+
|
|
675
|
+
$ ethos listing voters 123 --sentiment bullish
|
|
676
|
+
|
|
677
|
+
$ ethos listing voters 123 --limit 20 --json
|
|
678
|
+
```
|
|
679
|
+
|
|
680
|
+
_See code: [src/commands/listing/voters.ts](https://github.com/trust-ethos/ethos-cli/blob/v0.0.5/src/commands/listing/voters.ts)_
|
|
681
|
+
|
|
682
|
+
## `ethos market featured`
|
|
683
|
+
|
|
684
|
+
Show top gainers and losers
|
|
685
|
+
|
|
686
|
+
```
|
|
687
|
+
USAGE
|
|
688
|
+
$ ethos market featured [-j] [-v]
|
|
689
|
+
|
|
690
|
+
FLAGS
|
|
691
|
+
-j, --json Output as JSON
|
|
692
|
+
-v, --verbose Show detailed error information
|
|
693
|
+
|
|
694
|
+
DESCRIPTION
|
|
695
|
+
Show top gainers and losers
|
|
696
|
+
|
|
697
|
+
EXAMPLES
|
|
698
|
+
$ ethos market featured
|
|
699
|
+
|
|
700
|
+
$ ethos market featured --json
|
|
701
|
+
```
|
|
702
|
+
|
|
703
|
+
_See code: [src/commands/market/featured.ts](https://github.com/trust-ethos/ethos-cli/blob/v0.0.5/src/commands/market/featured.ts)_
|
|
704
|
+
|
|
705
|
+
## `ethos market holders IDENTIFIER`
|
|
706
|
+
|
|
707
|
+
Show who holds trust/distrust in a user
|
|
708
|
+
|
|
709
|
+
```
|
|
710
|
+
USAGE
|
|
711
|
+
$ ethos market holders IDENTIFIER [-j] [-v] [-l <value>]
|
|
712
|
+
|
|
713
|
+
ARGUMENTS
|
|
714
|
+
IDENTIFIER Twitter username, ETH address, or ENS name
|
|
715
|
+
|
|
716
|
+
FLAGS
|
|
717
|
+
-j, --json Output as JSON
|
|
718
|
+
-l, --limit=<value> [default: 10] Max results
|
|
719
|
+
-v, --verbose Show detailed error information
|
|
720
|
+
|
|
721
|
+
DESCRIPTION
|
|
722
|
+
Show who holds trust/distrust in a user
|
|
723
|
+
|
|
724
|
+
EXAMPLES
|
|
725
|
+
$ ethos market holders sethgho
|
|
726
|
+
|
|
727
|
+
$ ethos market holders 0xNowater --limit 20
|
|
728
|
+
|
|
729
|
+
$ ethos market holders vitalik.eth --json
|
|
730
|
+
```
|
|
731
|
+
|
|
732
|
+
_See code: [src/commands/market/holders.ts](https://github.com/trust-ethos/ethos-cli/blob/v0.0.5/src/commands/market/holders.ts)_
|
|
733
|
+
|
|
734
|
+
## `ethos market info IDENTIFIER`
|
|
735
|
+
|
|
736
|
+
Get trust market info for a user
|
|
737
|
+
|
|
738
|
+
```
|
|
739
|
+
USAGE
|
|
740
|
+
$ ethos market info IDENTIFIER [-j] [-v]
|
|
741
|
+
|
|
742
|
+
ARGUMENTS
|
|
743
|
+
IDENTIFIER Profile ID or Twitter username
|
|
744
|
+
|
|
745
|
+
FLAGS
|
|
746
|
+
-j, --json Output as JSON
|
|
747
|
+
-v, --verbose Show detailed error information
|
|
748
|
+
|
|
749
|
+
DESCRIPTION
|
|
750
|
+
Get trust market info for a user
|
|
751
|
+
|
|
752
|
+
ALIASES
|
|
753
|
+
$ ethos mi
|
|
754
|
+
|
|
755
|
+
EXAMPLES
|
|
756
|
+
$ ethos market info 123
|
|
757
|
+
|
|
758
|
+
$ ethos market info vitalik
|
|
759
|
+
|
|
760
|
+
$ ethos market info vitalik --json
|
|
761
|
+
```
|
|
762
|
+
|
|
763
|
+
_See code: [src/commands/market/info.ts](https://github.com/trust-ethos/ethos-cli/blob/v0.0.5/src/commands/market/info.ts)_
|
|
764
|
+
|
|
765
|
+
## `ethos market list`
|
|
766
|
+
|
|
767
|
+
List trust markets
|
|
768
|
+
|
|
769
|
+
```
|
|
770
|
+
USAGE
|
|
771
|
+
$ ethos market list [-j] [-v] [--sort marketCapWei|volume24hWei|priceChange24hPercent|score|createdAt] [--order
|
|
772
|
+
asc|desc] [-s <value>] [-l <value>] [-o <value>]
|
|
773
|
+
|
|
774
|
+
FLAGS
|
|
775
|
+
-j, --json Output as JSON
|
|
776
|
+
-l, --limit=<value> [default: 10] Max results per request
|
|
777
|
+
-o, --offset=<value> Number of results to skip
|
|
778
|
+
-s, --search=<value> Search by name/username
|
|
779
|
+
-v, --verbose Show detailed error information
|
|
780
|
+
--order=<option> [default: desc] Sort direction
|
|
781
|
+
<options: asc|desc>
|
|
782
|
+
--sort=<option> [default: marketCapWei] Sort by field
|
|
783
|
+
<options: marketCapWei|volume24hWei|priceChange24hPercent|score|createdAt>
|
|
784
|
+
|
|
785
|
+
DESCRIPTION
|
|
786
|
+
List trust markets
|
|
787
|
+
|
|
788
|
+
ALIASES
|
|
789
|
+
$ ethos ml
|
|
790
|
+
|
|
791
|
+
EXAMPLES
|
|
792
|
+
$ ethos market list
|
|
793
|
+
|
|
794
|
+
$ ethos market list --sort priceChange24hPercent --order desc
|
|
795
|
+
|
|
796
|
+
$ ethos market list --search "vitalik" --json
|
|
797
|
+
```
|
|
798
|
+
|
|
799
|
+
_See code: [src/commands/market/list.ts](https://github.com/trust-ethos/ethos-cli/blob/v0.0.5/src/commands/market/list.ts)_
|
|
800
|
+
|
|
801
|
+
## `ethos mi IDENTIFIER`
|
|
802
|
+
|
|
803
|
+
Get trust market info for a user
|
|
804
|
+
|
|
805
|
+
```
|
|
806
|
+
USAGE
|
|
807
|
+
$ ethos mi IDENTIFIER [-j] [-v]
|
|
808
|
+
|
|
809
|
+
ARGUMENTS
|
|
810
|
+
IDENTIFIER Profile ID or Twitter username
|
|
811
|
+
|
|
812
|
+
FLAGS
|
|
813
|
+
-j, --json Output as JSON
|
|
814
|
+
-v, --verbose Show detailed error information
|
|
815
|
+
|
|
816
|
+
DESCRIPTION
|
|
817
|
+
Get trust market info for a user
|
|
818
|
+
|
|
819
|
+
ALIASES
|
|
820
|
+
$ ethos mi
|
|
821
|
+
|
|
822
|
+
EXAMPLES
|
|
823
|
+
$ ethos mi 123
|
|
824
|
+
|
|
825
|
+
$ ethos mi vitalik
|
|
826
|
+
|
|
827
|
+
$ ethos mi vitalik --json
|
|
828
|
+
```
|
|
829
|
+
|
|
830
|
+
## `ethos ml`
|
|
831
|
+
|
|
832
|
+
List trust markets
|
|
833
|
+
|
|
834
|
+
```
|
|
835
|
+
USAGE
|
|
836
|
+
$ ethos ml [-j] [-v] [--sort marketCapWei|volume24hWei|priceChange24hPercent|score|createdAt] [--order
|
|
837
|
+
asc|desc] [-s <value>] [-l <value>] [-o <value>]
|
|
838
|
+
|
|
839
|
+
FLAGS
|
|
840
|
+
-j, --json Output as JSON
|
|
841
|
+
-l, --limit=<value> [default: 10] Max results per request
|
|
842
|
+
-o, --offset=<value> Number of results to skip
|
|
843
|
+
-s, --search=<value> Search by name/username
|
|
844
|
+
-v, --verbose Show detailed error information
|
|
845
|
+
--order=<option> [default: desc] Sort direction
|
|
846
|
+
<options: asc|desc>
|
|
847
|
+
--sort=<option> [default: marketCapWei] Sort by field
|
|
848
|
+
<options: marketCapWei|volume24hWei|priceChange24hPercent|score|createdAt>
|
|
849
|
+
|
|
850
|
+
DESCRIPTION
|
|
851
|
+
List trust markets
|
|
852
|
+
|
|
853
|
+
ALIASES
|
|
854
|
+
$ ethos ml
|
|
855
|
+
|
|
856
|
+
EXAMPLES
|
|
857
|
+
$ ethos ml
|
|
858
|
+
|
|
859
|
+
$ ethos ml --sort priceChange24hPercent --order desc
|
|
860
|
+
|
|
861
|
+
$ ethos ml --search "vitalik" --json
|
|
862
|
+
```
|
|
863
|
+
|
|
864
|
+
## `ethos nft list IDENTIFIER`
|
|
865
|
+
|
|
866
|
+
List NFTs owned by a user
|
|
867
|
+
|
|
868
|
+
```
|
|
869
|
+
USAGE
|
|
870
|
+
$ ethos nft list IDENTIFIER [-j] [-v] [-l <value>] [-o <value>]
|
|
871
|
+
|
|
872
|
+
ARGUMENTS
|
|
873
|
+
IDENTIFIER Twitter username, ETH address, or ENS name
|
|
874
|
+
|
|
875
|
+
FLAGS
|
|
876
|
+
-j, --json Output as JSON
|
|
877
|
+
-l, --limit=<value> [default: 10] Max results per request
|
|
878
|
+
-o, --offset=<value> Number of results to skip
|
|
879
|
+
-v, --verbose Show detailed error information
|
|
880
|
+
|
|
881
|
+
DESCRIPTION
|
|
882
|
+
List NFTs owned by a user
|
|
883
|
+
|
|
884
|
+
EXAMPLES
|
|
885
|
+
$ ethos nft list sethgho
|
|
886
|
+
|
|
887
|
+
$ ethos nft list 0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045
|
|
888
|
+
|
|
889
|
+
$ ethos nft list vitalik.eth --json
|
|
890
|
+
```
|
|
891
|
+
|
|
892
|
+
_See code: [src/commands/nft/list.ts](https://github.com/trust-ethos/ethos-cli/blob/v0.0.5/src/commands/nft/list.ts)_
|
|
893
|
+
|
|
894
|
+
## `ethos rank IDENTIFIER`
|
|
895
|
+
|
|
896
|
+
Show leaderboard rank for a user
|
|
897
|
+
|
|
898
|
+
```
|
|
899
|
+
USAGE
|
|
900
|
+
$ ethos rank IDENTIFIER [-j] [-s <value>] [-v]
|
|
901
|
+
|
|
902
|
+
ARGUMENTS
|
|
903
|
+
IDENTIFIER Twitter username, ETH address, or ENS name
|
|
904
|
+
|
|
905
|
+
FLAGS
|
|
906
|
+
-j, --json Output as JSON
|
|
907
|
+
-s, --season=<value> Show XP for specific season
|
|
908
|
+
-v, --verbose Show detailed error information
|
|
909
|
+
|
|
910
|
+
DESCRIPTION
|
|
911
|
+
Show leaderboard rank for a user
|
|
912
|
+
|
|
913
|
+
ALIASES
|
|
914
|
+
$ ethos rank
|
|
915
|
+
|
|
916
|
+
EXAMPLES
|
|
917
|
+
$ ethos rank 0xNowater
|
|
918
|
+
|
|
919
|
+
$ ethos rank 0xNowater --season 2
|
|
920
|
+
|
|
921
|
+
$ ethos rank 0xNowater --json
|
|
922
|
+
```
|
|
923
|
+
|
|
924
|
+
## `ethos review info ID`
|
|
925
|
+
|
|
926
|
+
Get details of a specific review
|
|
927
|
+
|
|
928
|
+
```
|
|
929
|
+
USAGE
|
|
930
|
+
$ ethos review info ID [-j] [-v]
|
|
931
|
+
|
|
932
|
+
ARGUMENTS
|
|
933
|
+
ID Review ID
|
|
934
|
+
|
|
935
|
+
FLAGS
|
|
936
|
+
-j, --json Output as JSON
|
|
937
|
+
-v, --verbose Show detailed error information
|
|
938
|
+
|
|
939
|
+
DESCRIPTION
|
|
940
|
+
Get details of a specific review
|
|
941
|
+
|
|
942
|
+
ALIASES
|
|
943
|
+
$ ethos ri
|
|
944
|
+
|
|
945
|
+
EXAMPLES
|
|
946
|
+
$ ethos review info 1139
|
|
947
|
+
|
|
948
|
+
$ ethos review info 1139 --json
|
|
949
|
+
```
|
|
950
|
+
|
|
951
|
+
_See code: [src/commands/review/info.ts](https://github.com/trust-ethos/ethos-cli/blob/v0.0.5/src/commands/review/info.ts)_
|
|
952
|
+
|
|
953
|
+
## `ethos review list IDENTIFIER`
|
|
954
|
+
|
|
955
|
+
List reviews for a user
|
|
956
|
+
|
|
957
|
+
```
|
|
958
|
+
USAGE
|
|
959
|
+
$ ethos review list IDENTIFIER [-j] [-v] [-l <value>] [-o <value>]
|
|
960
|
+
|
|
961
|
+
ARGUMENTS
|
|
962
|
+
IDENTIFIER Twitter username, ETH address, or ENS name
|
|
963
|
+
|
|
964
|
+
FLAGS
|
|
965
|
+
-j, --json Output as JSON
|
|
966
|
+
-l, --limit=<value> [default: 10] Max results per request
|
|
967
|
+
-o, --offset=<value> Number of results to skip
|
|
968
|
+
-v, --verbose Show detailed error information
|
|
969
|
+
|
|
970
|
+
DESCRIPTION
|
|
971
|
+
List reviews for a user
|
|
972
|
+
|
|
973
|
+
ALIASES
|
|
974
|
+
$ ethos rl
|
|
975
|
+
|
|
976
|
+
EXAMPLES
|
|
977
|
+
$ ethos review list sethgho
|
|
978
|
+
|
|
979
|
+
$ ethos review list 0xNowater --limit 20
|
|
980
|
+
|
|
981
|
+
$ ethos review list vitalik.eth --json
|
|
982
|
+
```
|
|
983
|
+
|
|
984
|
+
_See code: [src/commands/review/list.ts](https://github.com/trust-ethos/ethos-cli/blob/v0.0.5/src/commands/review/list.ts)_
|
|
985
|
+
|
|
986
|
+
## `ethos review votes ID`
|
|
987
|
+
|
|
988
|
+
Show votes on a review
|
|
989
|
+
|
|
990
|
+
```
|
|
991
|
+
USAGE
|
|
992
|
+
$ ethos review votes ID [-j] [-v] [-s] [--upvotes | --downvotes] [-l <value>] [-o <value>]
|
|
993
|
+
|
|
994
|
+
ARGUMENTS
|
|
995
|
+
ID Review ID
|
|
996
|
+
|
|
997
|
+
FLAGS
|
|
998
|
+
-j, --json Output as JSON
|
|
999
|
+
-l, --limit=<value> [default: 10] Max results per request
|
|
1000
|
+
-o, --offset=<value> Number of results to skip
|
|
1001
|
+
-s, --stats Show vote statistics only
|
|
1002
|
+
-v, --verbose Show detailed error information
|
|
1003
|
+
--downvotes Show only downvotes
|
|
1004
|
+
--upvotes Show only upvotes
|
|
1005
|
+
|
|
1006
|
+
DESCRIPTION
|
|
1007
|
+
Show votes on a review
|
|
1008
|
+
|
|
1009
|
+
EXAMPLES
|
|
1010
|
+
$ ethos review votes 123
|
|
1011
|
+
|
|
1012
|
+
$ ethos review votes 123 --stats
|
|
1013
|
+
|
|
1014
|
+
$ ethos review votes 123 --upvotes
|
|
1015
|
+
|
|
1016
|
+
$ ethos review votes 123 --json
|
|
1017
|
+
```
|
|
1018
|
+
|
|
1019
|
+
_See code: [src/commands/review/votes.ts](https://github.com/trust-ethos/ethos-cli/blob/v0.0.5/src/commands/review/votes.ts)_
|
|
1020
|
+
|
|
1021
|
+
## `ethos ri ID`
|
|
1022
|
+
|
|
1023
|
+
Get details of a specific review
|
|
1024
|
+
|
|
1025
|
+
```
|
|
1026
|
+
USAGE
|
|
1027
|
+
$ ethos ri ID [-j] [-v]
|
|
1028
|
+
|
|
1029
|
+
ARGUMENTS
|
|
1030
|
+
ID Review ID
|
|
1031
|
+
|
|
1032
|
+
FLAGS
|
|
1033
|
+
-j, --json Output as JSON
|
|
1034
|
+
-v, --verbose Show detailed error information
|
|
1035
|
+
|
|
1036
|
+
DESCRIPTION
|
|
1037
|
+
Get details of a specific review
|
|
1038
|
+
|
|
1039
|
+
ALIASES
|
|
1040
|
+
$ ethos ri
|
|
1041
|
+
|
|
1042
|
+
EXAMPLES
|
|
1043
|
+
$ ethos ri 1139
|
|
1044
|
+
|
|
1045
|
+
$ ethos ri 1139 --json
|
|
1046
|
+
```
|
|
1047
|
+
|
|
1048
|
+
## `ethos rl IDENTIFIER`
|
|
1049
|
+
|
|
1050
|
+
List reviews for a user
|
|
1051
|
+
|
|
1052
|
+
```
|
|
1053
|
+
USAGE
|
|
1054
|
+
$ ethos rl IDENTIFIER [-j] [-v] [-l <value>] [-o <value>]
|
|
1055
|
+
|
|
1056
|
+
ARGUMENTS
|
|
1057
|
+
IDENTIFIER Twitter username, ETH address, or ENS name
|
|
1058
|
+
|
|
1059
|
+
FLAGS
|
|
1060
|
+
-j, --json Output as JSON
|
|
1061
|
+
-l, --limit=<value> [default: 10] Max results per request
|
|
1062
|
+
-o, --offset=<value> Number of results to skip
|
|
1063
|
+
-v, --verbose Show detailed error information
|
|
1064
|
+
|
|
1065
|
+
DESCRIPTION
|
|
1066
|
+
List reviews for a user
|
|
1067
|
+
|
|
1068
|
+
ALIASES
|
|
1069
|
+
$ ethos rl
|
|
1070
|
+
|
|
1071
|
+
EXAMPLES
|
|
1072
|
+
$ ethos rl sethgho
|
|
1073
|
+
|
|
1074
|
+
$ ethos rl 0xNowater --limit 20
|
|
1075
|
+
|
|
1076
|
+
$ ethos rl vitalik.eth --json
|
|
1077
|
+
```
|
|
1078
|
+
|
|
1079
|
+
## `ethos score status IDENTIFIER`
|
|
1080
|
+
|
|
1081
|
+
Check score calculation status for a user
|
|
1082
|
+
|
|
1083
|
+
```
|
|
1084
|
+
USAGE
|
|
1085
|
+
$ ethos score status IDENTIFIER [-j] [-v]
|
|
1086
|
+
|
|
1087
|
+
ARGUMENTS
|
|
1088
|
+
IDENTIFIER Twitter username, ETH address, or ENS name
|
|
1089
|
+
|
|
1090
|
+
FLAGS
|
|
1091
|
+
-j, --json Output as JSON
|
|
1092
|
+
-v, --verbose Show detailed error information
|
|
1093
|
+
|
|
1094
|
+
DESCRIPTION
|
|
1095
|
+
Check score calculation status for a user
|
|
1096
|
+
|
|
1097
|
+
EXAMPLES
|
|
1098
|
+
$ ethos score status 0xNowater
|
|
1099
|
+
|
|
1100
|
+
$ ethos score status vitalik.eth
|
|
1101
|
+
|
|
1102
|
+
$ ethos score status 0xNowater --json
|
|
1103
|
+
```
|
|
1104
|
+
|
|
1105
|
+
_See code: [src/commands/score/status.ts](https://github.com/trust-ethos/ethos-cli/blob/v0.0.5/src/commands/score/status.ts)_
|
|
1106
|
+
|
|
1107
|
+
## `ethos slash info ID`
|
|
1108
|
+
|
|
1109
|
+
Get details of a specific slash
|
|
1110
|
+
|
|
1111
|
+
```
|
|
1112
|
+
USAGE
|
|
1113
|
+
$ ethos slash info ID [-j] [-v]
|
|
1114
|
+
|
|
1115
|
+
ARGUMENTS
|
|
1116
|
+
ID Slash ID
|
|
1117
|
+
|
|
1118
|
+
FLAGS
|
|
1119
|
+
-j, --json Output as JSON
|
|
1120
|
+
-v, --verbose Show detailed error information
|
|
1121
|
+
|
|
1122
|
+
DESCRIPTION
|
|
1123
|
+
Get details of a specific slash
|
|
1124
|
+
|
|
1125
|
+
EXAMPLES
|
|
1126
|
+
$ ethos slash info 123
|
|
1127
|
+
|
|
1128
|
+
$ ethos slash info 123 --json
|
|
1129
|
+
```
|
|
1130
|
+
|
|
1131
|
+
_See code: [src/commands/slash/info.ts](https://github.com/trust-ethos/ethos-cli/blob/v0.0.5/src/commands/slash/info.ts)_
|
|
1132
|
+
|
|
1133
|
+
## `ethos slash list`
|
|
1134
|
+
|
|
1135
|
+
List reputation slashes
|
|
1136
|
+
|
|
1137
|
+
```
|
|
1138
|
+
USAGE
|
|
1139
|
+
$ ethos slash list [-j] [-v] [--status open|closed] [--author <value>] [--subject <value>] [-l <value>] [-o
|
|
1140
|
+
<value>]
|
|
1141
|
+
|
|
1142
|
+
FLAGS
|
|
1143
|
+
-j, --json Output as JSON
|
|
1144
|
+
-l, --limit=<value> [default: 10] Max results per request
|
|
1145
|
+
-o, --offset=<value> Number of results to skip
|
|
1146
|
+
-v, --verbose Show detailed error information
|
|
1147
|
+
--author=<value> Filter by slasher userkey
|
|
1148
|
+
--status=<option> Filter by status
|
|
1149
|
+
<options: open|closed>
|
|
1150
|
+
--subject=<value> Filter by subject userkey
|
|
1151
|
+
|
|
1152
|
+
DESCRIPTION
|
|
1153
|
+
List reputation slashes
|
|
1154
|
+
|
|
1155
|
+
EXAMPLES
|
|
1156
|
+
$ ethos slash list
|
|
1157
|
+
|
|
1158
|
+
$ ethos slash list --status open
|
|
1159
|
+
|
|
1160
|
+
$ ethos slash list --subject twitter:0xNowater
|
|
1161
|
+
|
|
1162
|
+
$ ethos slash list --limit 5 --json
|
|
1163
|
+
```
|
|
1164
|
+
|
|
1165
|
+
_See code: [src/commands/slash/list.ts](https://github.com/trust-ethos/ethos-cli/blob/v0.0.5/src/commands/slash/list.ts)_
|
|
1166
|
+
|
|
1167
|
+
## `ethos slash votes ID`
|
|
1168
|
+
|
|
1169
|
+
Show votes on a slash
|
|
1170
|
+
|
|
1171
|
+
```
|
|
1172
|
+
USAGE
|
|
1173
|
+
$ ethos slash votes ID [-j] [-v] [-s] [--upvotes | --downvotes] [-l <value>] [-o <value>]
|
|
1174
|
+
|
|
1175
|
+
ARGUMENTS
|
|
1176
|
+
ID Slash ID
|
|
1177
|
+
|
|
1178
|
+
FLAGS
|
|
1179
|
+
-j, --json Output as JSON
|
|
1180
|
+
-l, --limit=<value> [default: 10] Max results per request
|
|
1181
|
+
-o, --offset=<value> Number of results to skip
|
|
1182
|
+
-s, --stats Show vote statistics only
|
|
1183
|
+
-v, --verbose Show detailed error information
|
|
1184
|
+
--downvotes Show only downvotes
|
|
1185
|
+
--upvotes Show only upvotes
|
|
1186
|
+
|
|
1187
|
+
DESCRIPTION
|
|
1188
|
+
Show votes on a slash
|
|
1189
|
+
|
|
1190
|
+
EXAMPLES
|
|
1191
|
+
$ ethos slash votes 195
|
|
1192
|
+
|
|
1193
|
+
$ ethos slash votes 195 --stats
|
|
1194
|
+
|
|
1195
|
+
$ ethos slash votes 195 --upvotes
|
|
1196
|
+
|
|
1197
|
+
$ ethos slash votes 195 --json
|
|
1198
|
+
```
|
|
1199
|
+
|
|
1200
|
+
_See code: [src/commands/slash/votes.ts](https://github.com/trust-ethos/ethos-cli/blob/v0.0.5/src/commands/slash/votes.ts)_
|
|
1201
|
+
|
|
1202
|
+
## `ethos u IDENTIFIER`
|
|
1203
|
+
|
|
1204
|
+
Display user profile by username, address, or ENS name
|
|
1205
|
+
|
|
1206
|
+
```
|
|
1207
|
+
USAGE
|
|
1208
|
+
$ ethos u IDENTIFIER [-j] [-v]
|
|
1209
|
+
|
|
1210
|
+
ARGUMENTS
|
|
1211
|
+
IDENTIFIER Twitter username, ETH address, or ENS name
|
|
1212
|
+
|
|
1213
|
+
FLAGS
|
|
1214
|
+
-j, --json Output as JSON
|
|
1215
|
+
-v, --verbose Show detailed error information
|
|
1216
|
+
|
|
1217
|
+
DESCRIPTION
|
|
1218
|
+
Display user profile by username, address, or ENS name
|
|
1219
|
+
|
|
1220
|
+
ALIASES
|
|
1221
|
+
$ ethos u
|
|
1222
|
+
$ ethos ui
|
|
1223
|
+
|
|
1224
|
+
EXAMPLES
|
|
1225
|
+
$ ethos u 0xNowater
|
|
1226
|
+
|
|
1227
|
+
$ ethos u 0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045
|
|
1228
|
+
|
|
1229
|
+
$ ethos u vitalik.eth
|
|
1230
|
+
|
|
1231
|
+
$ ethos u 0xNowater --json
|
|
1232
|
+
```
|
|
1233
|
+
|
|
1234
|
+
## `ethos ui IDENTIFIER`
|
|
1235
|
+
|
|
1236
|
+
Display user profile by username, address, or ENS name
|
|
1237
|
+
|
|
1238
|
+
```
|
|
1239
|
+
USAGE
|
|
1240
|
+
$ ethos ui IDENTIFIER [-j] [-v]
|
|
1241
|
+
|
|
1242
|
+
ARGUMENTS
|
|
1243
|
+
IDENTIFIER Twitter username, ETH address, or ENS name
|
|
1244
|
+
|
|
1245
|
+
FLAGS
|
|
1246
|
+
-j, --json Output as JSON
|
|
1247
|
+
-v, --verbose Show detailed error information
|
|
1248
|
+
|
|
1249
|
+
DESCRIPTION
|
|
1250
|
+
Display user profile by username, address, or ENS name
|
|
1251
|
+
|
|
1252
|
+
ALIASES
|
|
1253
|
+
$ ethos u
|
|
1254
|
+
$ ethos ui
|
|
1255
|
+
|
|
1256
|
+
EXAMPLES
|
|
1257
|
+
$ ethos ui 0xNowater
|
|
1258
|
+
|
|
1259
|
+
$ ethos ui 0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045
|
|
1260
|
+
|
|
1261
|
+
$ ethos ui vitalik.eth
|
|
1262
|
+
|
|
1263
|
+
$ ethos ui 0xNowater --json
|
|
1264
|
+
```
|
|
1265
|
+
|
|
1266
|
+
## `ethos us IDENTIFIER`
|
|
1267
|
+
|
|
1268
|
+
Display comprehensive user summary with activity and vouches
|
|
1269
|
+
|
|
1270
|
+
```
|
|
1271
|
+
USAGE
|
|
1272
|
+
$ ethos us IDENTIFIER [-j] [-v]
|
|
1273
|
+
|
|
1274
|
+
ARGUMENTS
|
|
1275
|
+
IDENTIFIER Twitter username, ETH address, or ENS name
|
|
1276
|
+
|
|
1277
|
+
FLAGS
|
|
1278
|
+
-j, --json Output as JSON
|
|
1279
|
+
-v, --verbose Show detailed error information
|
|
1280
|
+
|
|
1281
|
+
DESCRIPTION
|
|
1282
|
+
Display comprehensive user summary with activity and vouches
|
|
1283
|
+
|
|
1284
|
+
ALIASES
|
|
1285
|
+
$ ethos us
|
|
1286
|
+
|
|
1287
|
+
EXAMPLES
|
|
1288
|
+
$ ethos us sethgho
|
|
1289
|
+
|
|
1290
|
+
$ ethos us 0xNowater
|
|
1291
|
+
|
|
1292
|
+
$ ethos us vitalik.eth --json
|
|
1293
|
+
```
|
|
1294
|
+
|
|
1295
|
+
## `ethos user activity IDENTIFIER`
|
|
1296
|
+
|
|
1297
|
+
Show recent reviews and vouches for a user
|
|
1298
|
+
|
|
1299
|
+
```
|
|
1300
|
+
USAGE
|
|
1301
|
+
$ ethos user activity IDENTIFIER [-j] [-l <value>] [-t vouch|review] [-v]
|
|
1302
|
+
|
|
1303
|
+
ARGUMENTS
|
|
1304
|
+
IDENTIFIER Twitter username, ETH address, or ENS name
|
|
1305
|
+
|
|
1306
|
+
FLAGS
|
|
1307
|
+
-j, --json Output as JSON
|
|
1308
|
+
-l, --limit=<value> [default: 10] Maximum number of activities
|
|
1309
|
+
-t, --type=<option> Filter by activity type
|
|
1310
|
+
<options: vouch|review>
|
|
1311
|
+
-v, --verbose Show detailed error information
|
|
1312
|
+
|
|
1313
|
+
DESCRIPTION
|
|
1314
|
+
Show recent reviews and vouches for a user
|
|
1315
|
+
|
|
1316
|
+
EXAMPLES
|
|
1317
|
+
$ ethos user activity 0xNowater
|
|
1318
|
+
|
|
1319
|
+
$ ethos user activity 0xNowater --type vouch
|
|
1320
|
+
|
|
1321
|
+
$ ethos user activity 0xNowater --type review --limit 5
|
|
1322
|
+
|
|
1323
|
+
$ ethos user activity 0xNowater --json
|
|
1324
|
+
```
|
|
1325
|
+
|
|
1326
|
+
_See code: [src/commands/user/activity.ts](https://github.com/trust-ethos/ethos-cli/blob/v0.0.5/src/commands/user/activity.ts)_
|
|
1327
|
+
|
|
1328
|
+
## `ethos user info IDENTIFIER`
|
|
1329
|
+
|
|
1330
|
+
Display user profile by username, address, or ENS name
|
|
1331
|
+
|
|
1332
|
+
```
|
|
1333
|
+
USAGE
|
|
1334
|
+
$ ethos user info IDENTIFIER [-j] [-v]
|
|
1335
|
+
|
|
1336
|
+
ARGUMENTS
|
|
1337
|
+
IDENTIFIER Twitter username, ETH address, or ENS name
|
|
1338
|
+
|
|
1339
|
+
FLAGS
|
|
1340
|
+
-j, --json Output as JSON
|
|
1341
|
+
-v, --verbose Show detailed error information
|
|
1342
|
+
|
|
1343
|
+
DESCRIPTION
|
|
1344
|
+
Display user profile by username, address, or ENS name
|
|
1345
|
+
|
|
1346
|
+
ALIASES
|
|
1347
|
+
$ ethos u
|
|
1348
|
+
$ ethos ui
|
|
1349
|
+
|
|
1350
|
+
EXAMPLES
|
|
1351
|
+
$ ethos user info 0xNowater
|
|
1352
|
+
|
|
1353
|
+
$ ethos user info 0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045
|
|
1354
|
+
|
|
1355
|
+
$ ethos user info vitalik.eth
|
|
1356
|
+
|
|
1357
|
+
$ ethos user info 0xNowater --json
|
|
1358
|
+
```
|
|
1359
|
+
|
|
1360
|
+
_See code: [src/commands/user/info.ts](https://github.com/trust-ethos/ethos-cli/blob/v0.0.5/src/commands/user/info.ts)_
|
|
1361
|
+
|
|
1362
|
+
## `ethos user invitations IDENTIFIER`
|
|
1363
|
+
|
|
1364
|
+
List invitations sent by a user
|
|
1365
|
+
|
|
1366
|
+
```
|
|
1367
|
+
USAGE
|
|
1368
|
+
$ ethos user invitations IDENTIFIER [-j] [-v] [-s INVITED|ACCEPTED] [-l <value>] [-o <value>]
|
|
1369
|
+
|
|
1370
|
+
ARGUMENTS
|
|
1371
|
+
IDENTIFIER Twitter username, ETH address, or ENS name
|
|
1372
|
+
|
|
1373
|
+
FLAGS
|
|
1374
|
+
-j, --json Output as JSON
|
|
1375
|
+
-l, --limit=<value> [default: 10] Max results per request
|
|
1376
|
+
-o, --offset=<value> Number of results to skip
|
|
1377
|
+
-s, --status=<option> Filter by status
|
|
1378
|
+
<options: INVITED|ACCEPTED>
|
|
1379
|
+
-v, --verbose Show detailed error information
|
|
1380
|
+
|
|
1381
|
+
DESCRIPTION
|
|
1382
|
+
List invitations sent by a user
|
|
1383
|
+
|
|
1384
|
+
EXAMPLES
|
|
1385
|
+
$ ethos user invitations sethgho
|
|
1386
|
+
|
|
1387
|
+
$ ethos user invitations 0xNowater --status ACCEPTED
|
|
1388
|
+
|
|
1389
|
+
$ ethos user invitations vitalik.eth --json
|
|
1390
|
+
```
|
|
1391
|
+
|
|
1392
|
+
_See code: [src/commands/user/invitations.ts](https://github.com/trust-ethos/ethos-cli/blob/v0.0.5/src/commands/user/invitations.ts)_
|
|
1393
|
+
|
|
1394
|
+
## `ethos user search QUERY`
|
|
1395
|
+
|
|
1396
|
+
Search for users by name, username, or address
|
|
1397
|
+
|
|
1398
|
+
```
|
|
1399
|
+
USAGE
|
|
1400
|
+
$ ethos user search QUERY [-j] [-l <value>] [-v]
|
|
1401
|
+
|
|
1402
|
+
ARGUMENTS
|
|
1403
|
+
QUERY Search query
|
|
1404
|
+
|
|
1405
|
+
FLAGS
|
|
1406
|
+
-j, --json Output as JSON
|
|
1407
|
+
-l, --limit=<value> [default: 10] Maximum number of results
|
|
1408
|
+
-v, --verbose Show detailed error information
|
|
1409
|
+
|
|
1410
|
+
DESCRIPTION
|
|
1411
|
+
Search for users by name, username, or address
|
|
1412
|
+
|
|
1413
|
+
ALIASES
|
|
1414
|
+
$ ethos find
|
|
1415
|
+
|
|
1416
|
+
EXAMPLES
|
|
1417
|
+
$ ethos user search vitalik
|
|
1418
|
+
|
|
1419
|
+
$ ethos user search "crypto developer"
|
|
1420
|
+
|
|
1421
|
+
$ ethos user search vitalik --json
|
|
1422
|
+
|
|
1423
|
+
$ ethos user search web3 --limit 5
|
|
1424
|
+
```
|
|
1425
|
+
|
|
1426
|
+
_See code: [src/commands/user/search.ts](https://github.com/trust-ethos/ethos-cli/blob/v0.0.5/src/commands/user/search.ts)_
|
|
1427
|
+
|
|
1428
|
+
## `ethos user summary IDENTIFIER`
|
|
1429
|
+
|
|
1430
|
+
Display comprehensive user summary with activity and vouches
|
|
1431
|
+
|
|
1432
|
+
```
|
|
1433
|
+
USAGE
|
|
1434
|
+
$ ethos user summary IDENTIFIER [-j] [-v]
|
|
1435
|
+
|
|
1436
|
+
ARGUMENTS
|
|
1437
|
+
IDENTIFIER Twitter username, ETH address, or ENS name
|
|
1438
|
+
|
|
1439
|
+
FLAGS
|
|
1440
|
+
-j, --json Output as JSON
|
|
1441
|
+
-v, --verbose Show detailed error information
|
|
1442
|
+
|
|
1443
|
+
DESCRIPTION
|
|
1444
|
+
Display comprehensive user summary with activity and vouches
|
|
1445
|
+
|
|
1446
|
+
ALIASES
|
|
1447
|
+
$ ethos us
|
|
1448
|
+
|
|
1449
|
+
EXAMPLES
|
|
1450
|
+
$ ethos user summary sethgho
|
|
1451
|
+
|
|
1452
|
+
$ ethos user summary 0xNowater
|
|
1453
|
+
|
|
1454
|
+
$ ethos user summary vitalik.eth --json
|
|
1455
|
+
```
|
|
1456
|
+
|
|
1457
|
+
_See code: [src/commands/user/summary.ts](https://github.com/trust-ethos/ethos-cli/blob/v0.0.5/src/commands/user/summary.ts)_
|
|
1458
|
+
|
|
1459
|
+
## `ethos validator info TOKENID`
|
|
1460
|
+
|
|
1461
|
+
Get details of a specific validator NFT
|
|
1462
|
+
|
|
1463
|
+
```
|
|
1464
|
+
USAGE
|
|
1465
|
+
$ ethos validator info TOKENID [-j] [-v]
|
|
1466
|
+
|
|
1467
|
+
ARGUMENTS
|
|
1468
|
+
TOKENID Validator token ID
|
|
1469
|
+
|
|
1470
|
+
FLAGS
|
|
1471
|
+
-j, --json Output as JSON
|
|
1472
|
+
-v, --verbose Show detailed error information
|
|
1473
|
+
|
|
1474
|
+
DESCRIPTION
|
|
1475
|
+
Get details of a specific validator NFT
|
|
1476
|
+
|
|
1477
|
+
EXAMPLES
|
|
1478
|
+
$ ethos validator info 1
|
|
1479
|
+
|
|
1480
|
+
$ ethos validator info 42 --json
|
|
1481
|
+
```
|
|
1482
|
+
|
|
1483
|
+
_See code: [src/commands/validator/info.ts](https://github.com/trust-ethos/ethos-cli/blob/v0.0.5/src/commands/validator/info.ts)_
|
|
1484
|
+
|
|
1485
|
+
## `ethos validator list`
|
|
1486
|
+
|
|
1487
|
+
List all Ethos validator NFT owners
|
|
1488
|
+
|
|
1489
|
+
```
|
|
1490
|
+
USAGE
|
|
1491
|
+
$ ethos validator list [-j] [-v] [-l <value>] [-o <value>] [-a]
|
|
1492
|
+
|
|
1493
|
+
FLAGS
|
|
1494
|
+
-a, --available Show only validators with remaining XP capacity
|
|
1495
|
+
-j, --json Output as JSON
|
|
1496
|
+
-l, --limit=<value> [default: 10] Max results to display
|
|
1497
|
+
-o, --offset=<value> Number of results to skip
|
|
1498
|
+
-v, --verbose Show detailed error information
|
|
1499
|
+
|
|
1500
|
+
DESCRIPTION
|
|
1501
|
+
List all Ethos validator NFT owners
|
|
1502
|
+
|
|
1503
|
+
EXAMPLES
|
|
1504
|
+
$ ethos validator list
|
|
1505
|
+
|
|
1506
|
+
$ ethos validator list --limit 20
|
|
1507
|
+
|
|
1508
|
+
$ ethos validator list --available
|
|
1509
|
+
|
|
1510
|
+
$ ethos validator list --json
|
|
1511
|
+
```
|
|
1512
|
+
|
|
1513
|
+
_See code: [src/commands/validator/list.ts](https://github.com/trust-ethos/ethos-cli/blob/v0.0.5/src/commands/validator/list.ts)_
|
|
1514
|
+
|
|
1515
|
+
## `ethos validator sales`
|
|
1516
|
+
|
|
1517
|
+
List validator NFTs for sale on OpenSea
|
|
1518
|
+
|
|
1519
|
+
```
|
|
1520
|
+
USAGE
|
|
1521
|
+
$ ethos validator sales [-j] [-v] [-l <value>] [-o <value>]
|
|
1522
|
+
|
|
1523
|
+
FLAGS
|
|
1524
|
+
-j, --json Output as JSON
|
|
1525
|
+
-l, --limit=<value> [default: 10] Max results per request
|
|
1526
|
+
-o, --offset=<value> Number of results to skip
|
|
1527
|
+
-v, --verbose Show detailed error information
|
|
1528
|
+
|
|
1529
|
+
DESCRIPTION
|
|
1530
|
+
List validator NFTs for sale on OpenSea
|
|
1531
|
+
|
|
1532
|
+
EXAMPLES
|
|
1533
|
+
$ ethos validator sales
|
|
1534
|
+
|
|
1535
|
+
$ ethos validator sales --limit 20 --json
|
|
1536
|
+
```
|
|
1537
|
+
|
|
1538
|
+
_See code: [src/commands/validator/sales.ts](https://github.com/trust-ethos/ethos-cli/blob/v0.0.5/src/commands/validator/sales.ts)_
|
|
1539
|
+
|
|
1540
|
+
## `ethos vi ID`
|
|
1541
|
+
|
|
1542
|
+
Get details of a specific vouch
|
|
1543
|
+
|
|
1544
|
+
```
|
|
1545
|
+
USAGE
|
|
1546
|
+
$ ethos vi ID [-j] [-v]
|
|
1547
|
+
|
|
1548
|
+
ARGUMENTS
|
|
1549
|
+
ID Vouch ID
|
|
1550
|
+
|
|
1551
|
+
FLAGS
|
|
1552
|
+
-j, --json Output as JSON
|
|
1553
|
+
-v, --verbose Show detailed error information
|
|
1554
|
+
|
|
1555
|
+
DESCRIPTION
|
|
1556
|
+
Get details of a specific vouch
|
|
1557
|
+
|
|
1558
|
+
ALIASES
|
|
1559
|
+
$ ethos vi
|
|
1560
|
+
|
|
1561
|
+
EXAMPLES
|
|
1562
|
+
$ ethos vi 123
|
|
1563
|
+
|
|
1564
|
+
$ ethos vi 123 --json
|
|
1565
|
+
```
|
|
1566
|
+
|
|
1567
|
+
## `ethos vl [IDENTIFIER]`
|
|
1568
|
+
|
|
1569
|
+
List vouches for a user or all vouches
|
|
1570
|
+
|
|
1571
|
+
```
|
|
1572
|
+
USAGE
|
|
1573
|
+
$ ethos vl [IDENTIFIER] [-j] [-v] [--author <value>] [--active] [-l <value>] [-o <value>]
|
|
1574
|
+
|
|
1575
|
+
ARGUMENTS
|
|
1576
|
+
[IDENTIFIER] Twitter username, ETH address, or ENS name (optional, filter by subject)
|
|
1577
|
+
|
|
1578
|
+
FLAGS
|
|
1579
|
+
-j, --json Output as JSON
|
|
1580
|
+
-l, --limit=<value> [default: 10] Max results per request
|
|
1581
|
+
-o, --offset=<value> Number of results to skip
|
|
1582
|
+
-v, --verbose Show detailed error information
|
|
1583
|
+
--active Show only active (non-archived) vouches
|
|
1584
|
+
--author=<value> Filter by author (Twitter username, ETH address, or ENS name)
|
|
1585
|
+
|
|
1586
|
+
DESCRIPTION
|
|
1587
|
+
List vouches for a user or all vouches
|
|
1588
|
+
|
|
1589
|
+
ALIASES
|
|
1590
|
+
$ ethos vl
|
|
1591
|
+
|
|
1592
|
+
EXAMPLES
|
|
1593
|
+
$ ethos vl
|
|
1594
|
+
|
|
1595
|
+
$ ethos vl 0xNowater
|
|
1596
|
+
|
|
1597
|
+
$ ethos vl --author 0xNowater
|
|
1598
|
+
|
|
1599
|
+
$ ethos vl --active
|
|
1600
|
+
|
|
1601
|
+
$ ethos vl --limit 20 --json
|
|
1602
|
+
```
|
|
1603
|
+
|
|
1604
|
+
## `ethos vouch info ID`
|
|
1605
|
+
|
|
1606
|
+
Get details of a specific vouch
|
|
1607
|
+
|
|
1608
|
+
```
|
|
1609
|
+
USAGE
|
|
1610
|
+
$ ethos vouch info ID [-j] [-v]
|
|
1611
|
+
|
|
1612
|
+
ARGUMENTS
|
|
1613
|
+
ID Vouch ID
|
|
1614
|
+
|
|
1615
|
+
FLAGS
|
|
1616
|
+
-j, --json Output as JSON
|
|
1617
|
+
-v, --verbose Show detailed error information
|
|
1618
|
+
|
|
1619
|
+
DESCRIPTION
|
|
1620
|
+
Get details of a specific vouch
|
|
1621
|
+
|
|
1622
|
+
ALIASES
|
|
1623
|
+
$ ethos vi
|
|
1624
|
+
|
|
1625
|
+
EXAMPLES
|
|
1626
|
+
$ ethos vouch info 123
|
|
1627
|
+
|
|
1628
|
+
$ ethos vouch info 123 --json
|
|
1629
|
+
```
|
|
1630
|
+
|
|
1631
|
+
_See code: [src/commands/vouch/info.ts](https://github.com/trust-ethos/ethos-cli/blob/v0.0.5/src/commands/vouch/info.ts)_
|
|
1632
|
+
|
|
1633
|
+
## `ethos vouch list [IDENTIFIER]`
|
|
1634
|
+
|
|
1635
|
+
List vouches for a user or all vouches
|
|
1636
|
+
|
|
1637
|
+
```
|
|
1638
|
+
USAGE
|
|
1639
|
+
$ ethos vouch list [IDENTIFIER] [-j] [-v] [--author <value>] [--active] [-l <value>] [-o <value>]
|
|
1640
|
+
|
|
1641
|
+
ARGUMENTS
|
|
1642
|
+
[IDENTIFIER] Twitter username, ETH address, or ENS name (optional, filter by subject)
|
|
1643
|
+
|
|
1644
|
+
FLAGS
|
|
1645
|
+
-j, --json Output as JSON
|
|
1646
|
+
-l, --limit=<value> [default: 10] Max results per request
|
|
1647
|
+
-o, --offset=<value> Number of results to skip
|
|
1648
|
+
-v, --verbose Show detailed error information
|
|
1649
|
+
--active Show only active (non-archived) vouches
|
|
1650
|
+
--author=<value> Filter by author (Twitter username, ETH address, or ENS name)
|
|
1651
|
+
|
|
1652
|
+
DESCRIPTION
|
|
1653
|
+
List vouches for a user or all vouches
|
|
1654
|
+
|
|
1655
|
+
ALIASES
|
|
1656
|
+
$ ethos vl
|
|
1657
|
+
|
|
1658
|
+
EXAMPLES
|
|
1659
|
+
$ ethos vouch list
|
|
1660
|
+
|
|
1661
|
+
$ ethos vouch list 0xNowater
|
|
1662
|
+
|
|
1663
|
+
$ ethos vouch list --author 0xNowater
|
|
1664
|
+
|
|
1665
|
+
$ ethos vouch list --active
|
|
1666
|
+
|
|
1667
|
+
$ ethos vouch list --limit 20 --json
|
|
1668
|
+
```
|
|
1669
|
+
|
|
1670
|
+
_See code: [src/commands/vouch/list.ts](https://github.com/trust-ethos/ethos-cli/blob/v0.0.5/src/commands/vouch/list.ts)_
|
|
1671
|
+
|
|
1672
|
+
## `ethos vouch mutual VIEWER TARGET`
|
|
1673
|
+
|
|
1674
|
+
Find mutual vouchers between two users
|
|
1675
|
+
|
|
1676
|
+
```
|
|
1677
|
+
USAGE
|
|
1678
|
+
$ ethos vouch mutual VIEWER TARGET [-j] [-v] [-l <value>]
|
|
1679
|
+
|
|
1680
|
+
ARGUMENTS
|
|
1681
|
+
VIEWER Viewer user (Twitter username, ETH address, or ENS name)
|
|
1682
|
+
TARGET Target user (Twitter username, ETH address, or ENS name)
|
|
1683
|
+
|
|
1684
|
+
FLAGS
|
|
1685
|
+
-j, --json Output as JSON
|
|
1686
|
+
-l, --limit=<value> [default: 10] Max results
|
|
1687
|
+
-v, --verbose Show detailed error information
|
|
1688
|
+
|
|
1689
|
+
DESCRIPTION
|
|
1690
|
+
Find mutual vouchers between two users
|
|
1691
|
+
|
|
1692
|
+
EXAMPLES
|
|
1693
|
+
$ ethos vouch mutual 0xNowater VitalikButerin
|
|
1694
|
+
|
|
1695
|
+
$ ethos vouch mutual 0xNowater VitalikButerin --limit 20
|
|
1696
|
+
|
|
1697
|
+
$ ethos vouch mutual 0xNowater VitalikButerin --json
|
|
1698
|
+
```
|
|
1699
|
+
|
|
1700
|
+
_See code: [src/commands/vouch/mutual.ts](https://github.com/trust-ethos/ethos-cli/blob/v0.0.5/src/commands/vouch/mutual.ts)_
|
|
1701
|
+
|
|
1702
|
+
## `ethos vouch votes ID`
|
|
1703
|
+
|
|
1704
|
+
Show votes on a vouch
|
|
1705
|
+
|
|
1706
|
+
```
|
|
1707
|
+
USAGE
|
|
1708
|
+
$ ethos vouch votes ID [-j] [-v] [-s] [--upvotes | --downvotes] [-l <value>] [-o <value>]
|
|
1709
|
+
|
|
1710
|
+
ARGUMENTS
|
|
1711
|
+
ID Vouch ID
|
|
1712
|
+
|
|
1713
|
+
FLAGS
|
|
1714
|
+
-j, --json Output as JSON
|
|
1715
|
+
-l, --limit=<value> [default: 10] Max results per request
|
|
1716
|
+
-o, --offset=<value> Number of results to skip
|
|
1717
|
+
-s, --stats Show vote statistics only
|
|
1718
|
+
-v, --verbose Show detailed error information
|
|
1719
|
+
--downvotes Show only downvotes
|
|
1720
|
+
--upvotes Show only upvotes
|
|
1721
|
+
|
|
1722
|
+
DESCRIPTION
|
|
1723
|
+
Show votes on a vouch
|
|
1724
|
+
|
|
1725
|
+
EXAMPLES
|
|
1726
|
+
$ ethos vouch votes 182
|
|
1727
|
+
|
|
1728
|
+
$ ethos vouch votes 182 --stats
|
|
1729
|
+
|
|
1730
|
+
$ ethos vouch votes 182 --upvotes
|
|
1731
|
+
|
|
1732
|
+
$ ethos vouch votes 182 --json
|
|
1733
|
+
```
|
|
1734
|
+
|
|
1735
|
+
_See code: [src/commands/vouch/votes.ts](https://github.com/trust-ethos/ethos-cli/blob/v0.0.5/src/commands/vouch/votes.ts)_
|
|
1736
|
+
|
|
1737
|
+
## `ethos xp rank IDENTIFIER`
|
|
1738
|
+
|
|
1739
|
+
Show leaderboard rank for a user
|
|
1740
|
+
|
|
1741
|
+
```
|
|
1742
|
+
USAGE
|
|
1743
|
+
$ ethos xp rank IDENTIFIER [-j] [-s <value>] [-v]
|
|
1744
|
+
|
|
1745
|
+
ARGUMENTS
|
|
1746
|
+
IDENTIFIER Twitter username, ETH address, or ENS name
|
|
1747
|
+
|
|
1748
|
+
FLAGS
|
|
1749
|
+
-j, --json Output as JSON
|
|
1750
|
+
-s, --season=<value> Show XP for specific season
|
|
1751
|
+
-v, --verbose Show detailed error information
|
|
1752
|
+
|
|
1753
|
+
DESCRIPTION
|
|
1754
|
+
Show leaderboard rank for a user
|
|
1755
|
+
|
|
1756
|
+
ALIASES
|
|
1757
|
+
$ ethos rank
|
|
1758
|
+
|
|
1759
|
+
EXAMPLES
|
|
1760
|
+
$ ethos xp rank 0xNowater
|
|
1761
|
+
|
|
1762
|
+
$ ethos xp rank 0xNowater --season 2
|
|
1763
|
+
|
|
1764
|
+
$ ethos xp rank 0xNowater --json
|
|
1765
|
+
```
|
|
1766
|
+
|
|
1767
|
+
_See code: [src/commands/xp/rank.ts](https://github.com/trust-ethos/ethos-cli/blob/v0.0.5/src/commands/xp/rank.ts)_
|
|
1768
|
+
|
|
1769
|
+
## `ethos xp seasons`
|
|
1770
|
+
|
|
1771
|
+
List all XP seasons
|
|
1772
|
+
|
|
1773
|
+
```
|
|
1774
|
+
USAGE
|
|
1775
|
+
$ ethos xp seasons [-j] [-v]
|
|
1776
|
+
|
|
1777
|
+
FLAGS
|
|
1778
|
+
-j, --json Output as JSON
|
|
1779
|
+
-v, --verbose Show detailed error information
|
|
1780
|
+
|
|
1781
|
+
DESCRIPTION
|
|
1782
|
+
List all XP seasons
|
|
1783
|
+
|
|
1784
|
+
EXAMPLES
|
|
1785
|
+
$ ethos xp seasons
|
|
1786
|
+
|
|
1787
|
+
$ ethos xp seasons --json
|
|
1788
|
+
```
|
|
1789
|
+
|
|
1790
|
+
_See code: [src/commands/xp/seasons.ts](https://github.com/trust-ethos/ethos-cli/blob/v0.0.5/src/commands/xp/seasons.ts)_
|
|
1791
|
+
<!-- commandsstop -->
|