@aave/cli 4.1.0-next.41 → 4.1.0-next.43
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/README.md +7 -7
- package/oclif.manifest.json +56 -56
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -20,7 +20,7 @@ $ npm install -g @aave/cli
|
|
|
20
20
|
$ aave COMMAND
|
|
21
21
|
running command...
|
|
22
22
|
$ aave (--version)
|
|
23
|
-
@aave/cli/4.1.0-next.
|
|
23
|
+
@aave/cli/4.1.0-next.42 darwin-arm64 node-v22.17.0
|
|
24
24
|
$ aave --help [COMMAND]
|
|
25
25
|
USAGE
|
|
26
26
|
$ aave COMMAND
|
|
@@ -55,7 +55,7 @@ DESCRIPTION
|
|
|
55
55
|
List user borrows for a specific chain
|
|
56
56
|
```
|
|
57
57
|
|
|
58
|
-
_See code: [src/commands/borrows/list.ts](https://github.com/aave/aave-v4-sdk/blob/v4.1.0-next.
|
|
58
|
+
_See code: [src/commands/borrows/list.ts](https://github.com/aave/aave-v4-sdk/blob/v4.1.0-next.42/src/commands/borrows/list.ts)_
|
|
59
59
|
|
|
60
60
|
## `aave hubs list`
|
|
61
61
|
|
|
@@ -75,7 +75,7 @@ DESCRIPTION
|
|
|
75
75
|
List Aave v4 liquidity hubs
|
|
76
76
|
```
|
|
77
77
|
|
|
78
|
-
_See code: [src/commands/hubs/list.ts](https://github.com/aave/aave-v4-sdk/blob/v4.1.0-next.
|
|
78
|
+
_See code: [src/commands/hubs/list.ts](https://github.com/aave/aave-v4-sdk/blob/v4.1.0-next.42/src/commands/hubs/list.ts)_
|
|
79
79
|
|
|
80
80
|
## `aave positions list`
|
|
81
81
|
|
|
@@ -96,7 +96,7 @@ DESCRIPTION
|
|
|
96
96
|
List user positions across chains
|
|
97
97
|
```
|
|
98
98
|
|
|
99
|
-
_See code: [src/commands/positions/list.ts](https://github.com/aave/aave-v4-sdk/blob/v4.1.0-next.
|
|
99
|
+
_See code: [src/commands/positions/list.ts](https://github.com/aave/aave-v4-sdk/blob/v4.1.0-next.42/src/commands/positions/list.ts)_
|
|
100
100
|
|
|
101
101
|
## `aave reserves list`
|
|
102
102
|
|
|
@@ -119,7 +119,7 @@ DESCRIPTION
|
|
|
119
119
|
List Aave v4 reserves
|
|
120
120
|
```
|
|
121
121
|
|
|
122
|
-
_See code: [src/commands/reserves/list.ts](https://github.com/aave/aave-v4-sdk/blob/v4.1.0-next.
|
|
122
|
+
_See code: [src/commands/reserves/list.ts](https://github.com/aave/aave-v4-sdk/blob/v4.1.0-next.42/src/commands/reserves/list.ts)_
|
|
123
123
|
|
|
124
124
|
## `aave spokes list`
|
|
125
125
|
|
|
@@ -141,7 +141,7 @@ DESCRIPTION
|
|
|
141
141
|
List Aave v4 spokes
|
|
142
142
|
```
|
|
143
143
|
|
|
144
|
-
_See code: [src/commands/spokes/list.ts](https://github.com/aave/aave-v4-sdk/blob/v4.1.0-next.
|
|
144
|
+
_See code: [src/commands/spokes/list.ts](https://github.com/aave/aave-v4-sdk/blob/v4.1.0-next.42/src/commands/spokes/list.ts)_
|
|
145
145
|
|
|
146
146
|
## `aave supplies list`
|
|
147
147
|
|
|
@@ -162,5 +162,5 @@ DESCRIPTION
|
|
|
162
162
|
List user supplies for a specific chain
|
|
163
163
|
```
|
|
164
164
|
|
|
165
|
-
_See code: [src/commands/supplies/list.ts](https://github.com/aave/aave-v4-sdk/blob/v4.1.0-next.
|
|
165
|
+
_See code: [src/commands/supplies/list.ts](https://github.com/aave/aave-v4-sdk/blob/v4.1.0-next.42/src/commands/supplies/list.ts)_
|
|
166
166
|
<!-- commandsstop -->
|
package/oclif.manifest.json
CHANGED
|
@@ -155,6 +155,61 @@
|
|
|
155
155
|
"list.js"
|
|
156
156
|
]
|
|
157
157
|
},
|
|
158
|
+
"supplies:list": {
|
|
159
|
+
"aliases": [],
|
|
160
|
+
"args": {},
|
|
161
|
+
"description": "List user supplies for a specific chain",
|
|
162
|
+
"flags": {
|
|
163
|
+
"json": {
|
|
164
|
+
"description": "Format output as json.",
|
|
165
|
+
"helpGroup": "GLOBAL",
|
|
166
|
+
"name": "json",
|
|
167
|
+
"allowNo": false,
|
|
168
|
+
"type": "boolean"
|
|
169
|
+
},
|
|
170
|
+
"staging": {
|
|
171
|
+
"description": "Use staging environment",
|
|
172
|
+
"hidden": true,
|
|
173
|
+
"name": "staging",
|
|
174
|
+
"allowNo": false,
|
|
175
|
+
"type": "boolean"
|
|
176
|
+
},
|
|
177
|
+
"user": {
|
|
178
|
+
"description": "User address",
|
|
179
|
+
"name": "user",
|
|
180
|
+
"required": true,
|
|
181
|
+
"hasDynamicHelp": false,
|
|
182
|
+
"helpValue": "<evm-address>",
|
|
183
|
+
"multiple": false,
|
|
184
|
+
"type": "option"
|
|
185
|
+
},
|
|
186
|
+
"chain_id": {
|
|
187
|
+
"char": "c",
|
|
188
|
+
"description": "Chain ID to query supplies from",
|
|
189
|
+
"name": "chain_id",
|
|
190
|
+
"required": true,
|
|
191
|
+
"hasDynamicHelp": false,
|
|
192
|
+
"helpValue": "<chain-id>",
|
|
193
|
+
"multiple": false,
|
|
194
|
+
"type": "option"
|
|
195
|
+
}
|
|
196
|
+
},
|
|
197
|
+
"hasDynamicHelp": false,
|
|
198
|
+
"hiddenAliases": [],
|
|
199
|
+
"id": "supplies:list",
|
|
200
|
+
"pluginAlias": "@aave/cli",
|
|
201
|
+
"pluginName": "@aave/cli",
|
|
202
|
+
"pluginType": "core",
|
|
203
|
+
"strict": true,
|
|
204
|
+
"enableJsonFlag": true,
|
|
205
|
+
"isESM": true,
|
|
206
|
+
"relativePath": [
|
|
207
|
+
"dist",
|
|
208
|
+
"commands",
|
|
209
|
+
"supplies",
|
|
210
|
+
"list.js"
|
|
211
|
+
]
|
|
212
|
+
},
|
|
158
213
|
"reserves:list": {
|
|
159
214
|
"aliases": [],
|
|
160
215
|
"args": {},
|
|
@@ -372,62 +427,7 @@
|
|
|
372
427
|
"spokes",
|
|
373
428
|
"list.js"
|
|
374
429
|
]
|
|
375
|
-
},
|
|
376
|
-
"supplies:list": {
|
|
377
|
-
"aliases": [],
|
|
378
|
-
"args": {},
|
|
379
|
-
"description": "List user supplies for a specific chain",
|
|
380
|
-
"flags": {
|
|
381
|
-
"json": {
|
|
382
|
-
"description": "Format output as json.",
|
|
383
|
-
"helpGroup": "GLOBAL",
|
|
384
|
-
"name": "json",
|
|
385
|
-
"allowNo": false,
|
|
386
|
-
"type": "boolean"
|
|
387
|
-
},
|
|
388
|
-
"staging": {
|
|
389
|
-
"description": "Use staging environment",
|
|
390
|
-
"hidden": true,
|
|
391
|
-
"name": "staging",
|
|
392
|
-
"allowNo": false,
|
|
393
|
-
"type": "boolean"
|
|
394
|
-
},
|
|
395
|
-
"user": {
|
|
396
|
-
"description": "User address",
|
|
397
|
-
"name": "user",
|
|
398
|
-
"required": true,
|
|
399
|
-
"hasDynamicHelp": false,
|
|
400
|
-
"helpValue": "<evm-address>",
|
|
401
|
-
"multiple": false,
|
|
402
|
-
"type": "option"
|
|
403
|
-
},
|
|
404
|
-
"chain_id": {
|
|
405
|
-
"char": "c",
|
|
406
|
-
"description": "Chain ID to query supplies from",
|
|
407
|
-
"name": "chain_id",
|
|
408
|
-
"required": true,
|
|
409
|
-
"hasDynamicHelp": false,
|
|
410
|
-
"helpValue": "<chain-id>",
|
|
411
|
-
"multiple": false,
|
|
412
|
-
"type": "option"
|
|
413
|
-
}
|
|
414
|
-
},
|
|
415
|
-
"hasDynamicHelp": false,
|
|
416
|
-
"hiddenAliases": [],
|
|
417
|
-
"id": "supplies:list",
|
|
418
|
-
"pluginAlias": "@aave/cli",
|
|
419
|
-
"pluginName": "@aave/cli",
|
|
420
|
-
"pluginType": "core",
|
|
421
|
-
"strict": true,
|
|
422
|
-
"enableJsonFlag": true,
|
|
423
|
-
"isESM": true,
|
|
424
|
-
"relativePath": [
|
|
425
|
-
"dist",
|
|
426
|
-
"commands",
|
|
427
|
-
"supplies",
|
|
428
|
-
"list.js"
|
|
429
|
-
]
|
|
430
430
|
}
|
|
431
431
|
},
|
|
432
|
-
"version": "4.1.0-next.
|
|
432
|
+
"version": "4.1.0-next.43"
|
|
433
433
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aave/cli",
|
|
3
|
-
"version": "4.1.0-next.
|
|
3
|
+
"version": "4.1.0-next.43",
|
|
4
4
|
"description": "CLI to interact with AaveKit API",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"aave",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"@oclif/plugin-help": "^6",
|
|
31
31
|
"@oclif/plugin-plugins": "^5",
|
|
32
32
|
"tty-table": "^5.0.0",
|
|
33
|
-
"@aave/client": "4.0.0-next.
|
|
33
|
+
"@aave/client": "4.0.0-next.51"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
36
|
"@oclif/test": "^4",
|