envio-cloud 0.7.3 → 0.8.0
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 +8 -8
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -223,9 +223,9 @@ envio-cloud indexer security set-prod-only myindexer myorg true
|
|
|
223
223
|
|
|
224
224
|
All deployment commands accept args as `<indexer> <commit> [organisation]`. Organisation can be omitted if set via `envio-cloud config set-org`.
|
|
225
225
|
|
|
226
|
-
#### `envio-cloud deployment metrics <indexer> <commit> [organisation]`
|
|
226
|
+
#### `envio-cloud deployment metrics <indexer> <commit> [organisation]` (requires auth)
|
|
227
227
|
|
|
228
|
-
Real-time indexing metrics per chain.
|
|
228
|
+
Real-time indexing metrics per chain.
|
|
229
229
|
|
|
230
230
|
```bash
|
|
231
231
|
envio-cloud deployment metrics hyperindex b3ead3a mjyoung114
|
|
@@ -250,9 +250,9 @@ Total chains: 2 | Total events: 1739257 | Status: fully synced
|
|
|
250
250
|
| `--watch` | Auto-refresh every 10 seconds |
|
|
251
251
|
| `-o, --output` | Output format: `json` |
|
|
252
252
|
|
|
253
|
-
#### `envio-cloud deployment status <indexer> <commit> [organisation]`
|
|
253
|
+
#### `envio-cloud deployment status <indexer> <commit> [organisation]` (requires auth)
|
|
254
254
|
|
|
255
|
-
Sync progress and completion percentage.
|
|
255
|
+
Sync progress and completion percentage.
|
|
256
256
|
|
|
257
257
|
```bash
|
|
258
258
|
envio-cloud deployment status hyperindex b3ead3a mjyoung114
|
|
@@ -260,18 +260,18 @@ envio-cloud deployment status hyperindex b3ead3a mjyoung114 --watch-till-synced
|
|
|
260
260
|
envio-cloud deployment status hyperindex b3ead3a mjyoung114 -o json
|
|
261
261
|
```
|
|
262
262
|
|
|
263
|
-
#### `envio-cloud deployment info <indexer> <commit> [organisation]`
|
|
263
|
+
#### `envio-cloud deployment info <indexer> <commit> [organisation]` (requires auth)
|
|
264
264
|
|
|
265
|
-
Aggregator configuration (cache, DB exposure).
|
|
265
|
+
Aggregator configuration (cache, DB exposure).
|
|
266
266
|
|
|
267
267
|
```bash
|
|
268
268
|
envio-cloud deployment info hyperindex b3ead3a mjyoung114
|
|
269
269
|
envio-cloud deployment info hyperindex b3ead3a mjyoung114 -o json
|
|
270
270
|
```
|
|
271
271
|
|
|
272
|
-
#### `envio-cloud deployment endpoint <indexer> <commit> [organisation]`
|
|
272
|
+
#### `envio-cloud deployment endpoint <indexer> <commit> [organisation]` (requires auth)
|
|
273
273
|
|
|
274
|
-
Get the GraphQL query endpoint URL.
|
|
274
|
+
Get the GraphQL query endpoint URL.
|
|
275
275
|
|
|
276
276
|
```bash
|
|
277
277
|
envio-cloud deployment endpoint hyperindex b3ead3a mjyoung114
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "envio-cloud",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "CLI for Envio
|
|
3
|
+
"version": "0.8.0",
|
|
4
|
+
"description": "CLI for Envio Cloud — manage and monitor blockchain indexers powered by HyperIndex",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "git+https://github.com/enviodev/hosted-service-cli.git"
|
|
@@ -14,11 +14,11 @@
|
|
|
14
14
|
"postinstall": "node install.js"
|
|
15
15
|
},
|
|
16
16
|
"optionalDependencies": {
|
|
17
|
-
"@envio-dev/envio-cloud-darwin-arm64": "0.
|
|
18
|
-
"@envio-dev/envio-cloud-darwin-x64": "0.
|
|
19
|
-
"@envio-dev/envio-cloud-linux-x64": "0.
|
|
20
|
-
"@envio-dev/envio-cloud-linux-arm64": "0.
|
|
21
|
-
"@envio-dev/envio-cloud-win32-x64": "0.
|
|
17
|
+
"@envio-dev/envio-cloud-darwin-arm64": "0.8.0",
|
|
18
|
+
"@envio-dev/envio-cloud-darwin-x64": "0.8.0",
|
|
19
|
+
"@envio-dev/envio-cloud-linux-x64": "0.8.0",
|
|
20
|
+
"@envio-dev/envio-cloud-linux-arm64": "0.8.0",
|
|
21
|
+
"@envio-dev/envio-cloud-win32-x64": "0.8.0"
|
|
22
22
|
},
|
|
23
23
|
"keywords": [
|
|
24
24
|
"envio",
|