@xyo-network/xl1-cli 1.20.27 → 1.20.29
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/dist/cli-min.mjs +4021 -5128
- package/dist/cli-min.mjs.map +1 -1
- package/package.json +90 -115
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xyo-network/xl1-cli",
|
|
3
|
-
"version": "1.20.
|
|
3
|
+
"version": "1.20.29",
|
|
4
4
|
"description": "XYO Layer One CLI",
|
|
5
5
|
"homepage": "https://xylabs.com",
|
|
6
6
|
"bugs": {
|
|
@@ -19,13 +19,6 @@
|
|
|
19
19
|
},
|
|
20
20
|
"sideEffects": false,
|
|
21
21
|
"type": "module",
|
|
22
|
-
"exports": {
|
|
23
|
-
".": {
|
|
24
|
-
"default": "./dist/cli-min.mjs"
|
|
25
|
-
},
|
|
26
|
-
"./package.json": "./package.json",
|
|
27
|
-
"./README.md": "./README.md"
|
|
28
|
-
},
|
|
29
22
|
"bin": {
|
|
30
23
|
"xl1": "./scripts/xl1.mjs"
|
|
31
24
|
},
|
|
@@ -34,29 +27,35 @@
|
|
|
34
27
|
"dist",
|
|
35
28
|
"README.md"
|
|
36
29
|
],
|
|
30
|
+
"dependencies": {
|
|
31
|
+
"@opentelemetry/api": "^1.9.1",
|
|
32
|
+
"@opentelemetry/context-async-hooks": "~2.7.1",
|
|
33
|
+
"@opentelemetry/core": "~2.7.1",
|
|
34
|
+
"@opentelemetry/exporter-prometheus": "~0.216.0",
|
|
35
|
+
"@opentelemetry/exporter-trace-otlp-grpc": "~0.216.0",
|
|
36
|
+
"@opentelemetry/exporter-trace-otlp-http": "~0.216.0",
|
|
37
|
+
"@opentelemetry/host-metrics": "~0.38.3",
|
|
38
|
+
"@opentelemetry/instrumentation": "~0.216.0",
|
|
39
|
+
"@opentelemetry/instrumentation-express": "~0.64.0",
|
|
40
|
+
"@opentelemetry/instrumentation-http": "~0.216.0",
|
|
41
|
+
"@opentelemetry/instrumentation-runtime-node": "~0.29.0",
|
|
42
|
+
"@opentelemetry/resources": "~2.7.1",
|
|
43
|
+
"@opentelemetry/sdk-metrics": "~2.7.1",
|
|
44
|
+
"@opentelemetry/sdk-trace-base": "^2.7.1",
|
|
45
|
+
"@opentelemetry/semantic-conventions": "~1.40.0",
|
|
46
|
+
"lmdb": "^3.5.4",
|
|
47
|
+
"mongodb": "^7.2.0",
|
|
48
|
+
"msgpackr-extract": "^3.0.3",
|
|
49
|
+
"typescript": "~5.9.3"
|
|
50
|
+
},
|
|
37
51
|
"devDependencies": {
|
|
38
|
-
"@aws-sdk/credential-providers": "^3.
|
|
52
|
+
"@aws-sdk/credential-providers": "^3.1040.0",
|
|
39
53
|
"@bitauth/libauth": "~3.0.0",
|
|
40
54
|
"@metamask/json-rpc-engine": "^10.2.4",
|
|
41
55
|
"@metamask/providers": "^22.1.1",
|
|
42
56
|
"@metamask/utils": "~11.11.0",
|
|
43
57
|
"@mongodb-js/zstd": "^7.0.0",
|
|
44
|
-
"@opentelemetry/
|
|
45
|
-
"@opentelemetry/context-async-hooks": "~2.7.0",
|
|
46
|
-
"@opentelemetry/context-zone": "~2.7.0",
|
|
47
|
-
"@opentelemetry/core": "~2.7.0",
|
|
48
|
-
"@opentelemetry/exporter-prometheus": "~0.215.0",
|
|
49
|
-
"@opentelemetry/exporter-trace-otlp-grpc": "~0.215.0",
|
|
50
|
-
"@opentelemetry/exporter-trace-otlp-http": "~0.215.0",
|
|
51
|
-
"@opentelemetry/host-metrics": "~0.38.3",
|
|
52
|
-
"@opentelemetry/instrumentation": "~0.215.0",
|
|
53
|
-
"@opentelemetry/instrumentation-express": "~0.63.0",
|
|
54
|
-
"@opentelemetry/instrumentation-http": "~0.215.0",
|
|
55
|
-
"@opentelemetry/instrumentation-runtime-node": "~0.28.0",
|
|
56
|
-
"@opentelemetry/resources": "~2.7.0",
|
|
57
|
-
"@opentelemetry/sdk-metrics": "~2.7.0",
|
|
58
|
-
"@opentelemetry/sdk-trace-base": "^2.7.0",
|
|
59
|
-
"@opentelemetry/semantic-conventions": "~1.40.0",
|
|
58
|
+
"@opentelemetry/context-zone": "~2.7.1",
|
|
60
59
|
"@rollup/plugin-commonjs": "~29.0.2",
|
|
61
60
|
"@rollup/plugin-json": "~6.1.0",
|
|
62
61
|
"@rollup/plugin-node-resolve": "^16.0.3",
|
|
@@ -65,51 +64,50 @@
|
|
|
65
64
|
"@scure/base": "~2.2.0",
|
|
66
65
|
"@scure/bip39": "~2.2.0",
|
|
67
66
|
"@types/node": "^25.6.0",
|
|
68
|
-
"@xylabs/express": "^5.0.
|
|
69
|
-
"@xylabs/geo": "^5.0.
|
|
70
|
-
"@xylabs/mongo": "^5.0.
|
|
71
|
-
"@xylabs/sdk-js": "^5.0.
|
|
72
|
-
"@xylabs/threads": "~5.0.
|
|
73
|
-
"@xylabs/toolchain": "~7.
|
|
74
|
-
"@xylabs/tsconfig": "~7.
|
|
75
|
-
"@xylabs/vitest-extended": "~5.0.
|
|
76
|
-
"@
|
|
77
|
-
"@xyo-network/account": "~5.5.
|
|
78
|
-
"@xyo-network/
|
|
79
|
-
"@xyo-network/api": "~5.5.
|
|
80
|
-
"@xyo-network/
|
|
81
|
-
"@xyo-network/archivist-
|
|
82
|
-
"@xyo-network/archivist-
|
|
83
|
-
"@xyo-network/
|
|
84
|
-
"@xyo-network/bios": "~7.
|
|
85
|
-
"@xyo-network/
|
|
86
|
-
"@xyo-network/boundwitness-
|
|
87
|
-
"@xyo-network/boundwitness-
|
|
88
|
-
"@xyo-network/boundwitness-
|
|
89
|
-
"@xyo-network/
|
|
90
|
-
"@xyo-network/
|
|
91
|
-
"@xyo-network/
|
|
92
|
-
"@xyo-network/
|
|
93
|
-
"@xyo-network/
|
|
94
|
-
"@xyo-network/payload-
|
|
95
|
-
"@xyo-network/payload-
|
|
96
|
-
"@xyo-network/payload-
|
|
97
|
-
"@xyo-network/payload-
|
|
98
|
-
"@xyo-network/
|
|
99
|
-
"@xyo-network/sdk-js": "
|
|
100
|
-
"@xyo-network/
|
|
101
|
-
"@xyo-network/storage-model": "~7.2.1",
|
|
67
|
+
"@xylabs/express": "^5.0.101",
|
|
68
|
+
"@xylabs/geo": "^5.0.101",
|
|
69
|
+
"@xylabs/mongo": "^5.0.101",
|
|
70
|
+
"@xylabs/sdk-js": "^5.0.101",
|
|
71
|
+
"@xylabs/threads": "~5.0.101",
|
|
72
|
+
"@xylabs/toolchain": "~7.12.3",
|
|
73
|
+
"@xylabs/tsconfig": "~7.12.3",
|
|
74
|
+
"@xylabs/vitest-extended": "~5.0.101",
|
|
75
|
+
"@xyo-network/account": "~5.5.2",
|
|
76
|
+
"@xyo-network/account-model": "~5.5.2",
|
|
77
|
+
"@xyo-network/api": "~5.5.2",
|
|
78
|
+
"@xyo-network/api-models": "~5.5.2",
|
|
79
|
+
"@xyo-network/archivist-lmdb": "~5.5.6",
|
|
80
|
+
"@xyo-network/archivist-mongodb": "~5.5.6",
|
|
81
|
+
"@xyo-network/archivist-view": "~5.5.6",
|
|
82
|
+
"@xyo-network/bios": "~7.3.0",
|
|
83
|
+
"@xyo-network/bios-model": "~7.3.0",
|
|
84
|
+
"@xyo-network/boundwitness-builder": "~5.5.2",
|
|
85
|
+
"@xyo-network/boundwitness-model": "~5.5.2",
|
|
86
|
+
"@xyo-network/boundwitness-validator": "~5.5.2",
|
|
87
|
+
"@xyo-network/boundwitness-wrapper": "~5.5.2",
|
|
88
|
+
"@xyo-network/config-payload-plugin": "~5.5.2",
|
|
89
|
+
"@xyo-network/huri": "~5.5.2",
|
|
90
|
+
"@xyo-network/manifest-model": "~5.5.2",
|
|
91
|
+
"@xyo-network/module-model-mongodb": "~5.5.6",
|
|
92
|
+
"@xyo-network/payload-builder": "~5.5.2",
|
|
93
|
+
"@xyo-network/payload-model": "~5.5.2",
|
|
94
|
+
"@xyo-network/payload-plugin": "~5.5.2",
|
|
95
|
+
"@xyo-network/payload-wrapper": "~5.5.2",
|
|
96
|
+
"@xyo-network/query-payload-plugin": "~5.5.2",
|
|
97
|
+
"@xyo-network/sdk-js": "^5.5.6",
|
|
98
|
+
"@xyo-network/sdk-protocol-js": "~5.5.2",
|
|
99
|
+
"@xyo-network/storage-model": "~7.3.0",
|
|
102
100
|
"@xyo-network/typechain": "^4.1.3",
|
|
103
|
-
"@xyo-network/wallet": "~5.5.
|
|
104
|
-
"@xyo-network/wallet-model": "^5.5.
|
|
105
|
-
"@xyo-network/xl1-sdk": "^1.26.
|
|
106
|
-
"ajv": "^8.
|
|
101
|
+
"@xyo-network/wallet": "~5.5.2",
|
|
102
|
+
"@xyo-network/wallet-model": "^5.5.2",
|
|
103
|
+
"@xyo-network/xl1-sdk": "^1.26.44",
|
|
104
|
+
"ajv": "^8.20.0",
|
|
107
105
|
"async-mutex": "^0.5.0",
|
|
108
106
|
"axios": "^1.15.2",
|
|
109
107
|
"bn.js": "^5.2.3",
|
|
110
108
|
"body-parser": "~2.2.2",
|
|
111
109
|
"buffer": "^6.0.3",
|
|
112
|
-
"bullmq": "~5.76.
|
|
110
|
+
"bullmq": "~5.76.4",
|
|
113
111
|
"bullmq-otel": "~1.3.0",
|
|
114
112
|
"chalk": "^5.6.2",
|
|
115
113
|
"compression": "~1.8.1",
|
|
@@ -129,12 +127,9 @@
|
|
|
129
127
|
"idb": "^8.0.3",
|
|
130
128
|
"ioredis": "~5.10.1",
|
|
131
129
|
"kerberos": "^7.0.0",
|
|
132
|
-
"lmdb": "^3.5.4",
|
|
133
130
|
"lru-cache": "^11.3.5",
|
|
134
|
-
"mapbox-gl": "^3.
|
|
135
|
-
"mongodb": "^7.2.0",
|
|
131
|
+
"mapbox-gl": "^3.23.0",
|
|
136
132
|
"mongodb-client-encryption": "^7.0.0",
|
|
137
|
-
"msgpackr-extract": "^3.0.3",
|
|
138
133
|
"observable-fns": "~0.6.1",
|
|
139
134
|
"pako": "^2.1.0",
|
|
140
135
|
"rimraf": "~6.1.3",
|
|
@@ -142,10 +137,9 @@
|
|
|
142
137
|
"rollup": "^4.60.2",
|
|
143
138
|
"shallowequal": "~1.1.0",
|
|
144
139
|
"snappy": "^7.3.3",
|
|
145
|
-
"socks": "^2.8.
|
|
140
|
+
"socks": "^2.8.8",
|
|
146
141
|
"store2": "~2.14.4",
|
|
147
142
|
"tslib": "^2.8.1",
|
|
148
|
-
"typescript": "~5.9.3",
|
|
149
143
|
"uuid": "~14.0.0",
|
|
150
144
|
"vite": "^8.0.10",
|
|
151
145
|
"vitest": "^4.1.5",
|
|
@@ -157,53 +151,34 @@
|
|
|
157
151
|
"winston-transport": "~4.9.0",
|
|
158
152
|
"yargs": "~18.0.0",
|
|
159
153
|
"yargs-parser": "~22.0.0",
|
|
160
|
-
"zod": "
|
|
161
|
-
"@xyo-network/chain-api": "~1.20.
|
|
162
|
-
"@xyo-network/chain-
|
|
163
|
-
"@xyo-network/chain-
|
|
164
|
-
"@xyo-network/chain-
|
|
165
|
-
"@xyo-network/chain-
|
|
166
|
-
"@xyo-network/chain-orchestration-
|
|
167
|
-
"@xyo-network/chain-
|
|
168
|
-
"@xyo-network/chain-
|
|
169
|
-
"@xyo-network/chain-
|
|
170
|
-
"@xyo-network/chain-protocol-driver-mongodb": "~1.20.
|
|
171
|
-
"@xyo-network/chain-
|
|
172
|
-
"@xyo-network/chain-
|
|
173
|
-
"@xyo-network/chain-
|
|
174
|
-
"@xyo-network/chain-
|
|
175
|
-
"@xyo-network/chain-
|
|
176
|
-
"@xyo-network/chain-
|
|
177
|
-
"@xyo-network/chain-
|
|
178
|
-
"@xyo-network/chain-
|
|
179
|
-
"@xyo-network/xl1-cli-lib": "~1.20.
|
|
180
|
-
"@xyo-network/chain-
|
|
154
|
+
"zod": "~4.4.2",
|
|
155
|
+
"@xyo-network/chain-api": "~1.20.29",
|
|
156
|
+
"@xyo-network/chain-ethereum": "~1.20.29",
|
|
157
|
+
"@xyo-network/chain-orchestration": "~1.20.29",
|
|
158
|
+
"@xyo-network/chain-bridge": "~1.20.29",
|
|
159
|
+
"@xyo-network/chain-mempool": "~1.20.29",
|
|
160
|
+
"@xyo-network/chain-orchestration-evm": "~1.20.29",
|
|
161
|
+
"@xyo-network/chain-producer": "~1.20.29",
|
|
162
|
+
"@xyo-network/chain-orchestration-express": "~1.20.29",
|
|
163
|
+
"@xyo-network/chain-protocol-driver-lmdb": "~1.20.29",
|
|
164
|
+
"@xyo-network/chain-protocol-driver-mongodb": "~1.20.29",
|
|
165
|
+
"@xyo-network/chain-orchestration-storage": "~1.20.29",
|
|
166
|
+
"@xyo-network/chain-protocol-test": "~1.20.29",
|
|
167
|
+
"@xyo-network/chain-sdk": "~1.20.29",
|
|
168
|
+
"@xyo-network/chain-telemetry": "~1.20.29",
|
|
169
|
+
"@xyo-network/chain-services": "~1.20.29",
|
|
170
|
+
"@xyo-network/chain-reward-redemption": "~1.20.29",
|
|
171
|
+
"@xyo-network/chain-test-helpers": "~1.20.29",
|
|
172
|
+
"@xyo-network/chain-utils": "~1.20.29",
|
|
173
|
+
"@xyo-network/xl1-cli-lib": "~1.20.29",
|
|
174
|
+
"@xyo-network/chain-validation": "~1.20.29"
|
|
181
175
|
},
|
|
182
176
|
"peerDependencies": {
|
|
183
|
-
"@mongodb-js/zstd": "
|
|
184
|
-
"
|
|
185
|
-
"
|
|
186
|
-
"
|
|
187
|
-
"
|
|
188
|
-
"@opentelemetry/exporter-trace-otlp-grpc": "~0.215.0",
|
|
189
|
-
"@opentelemetry/exporter-trace-otlp-http": "~0.215.0",
|
|
190
|
-
"@opentelemetry/host-metrics": "~0.38.3",
|
|
191
|
-
"@opentelemetry/instrumentation": "~0.215.0",
|
|
192
|
-
"@opentelemetry/instrumentation-express": "~0.63.0",
|
|
193
|
-
"@opentelemetry/instrumentation-http": "~0.215.0",
|
|
194
|
-
"@opentelemetry/instrumentation-runtime-node": "~0.28.0",
|
|
195
|
-
"@opentelemetry/resources": "~2.7.0",
|
|
196
|
-
"@opentelemetry/sdk-metrics": "~2.7.0",
|
|
197
|
-
"@opentelemetry/sdk-trace-base": "^2.7.0",
|
|
198
|
-
"@opentelemetry/semantic-conventions": "~1.40.0",
|
|
199
|
-
"kerberos": "^7.0.0",
|
|
200
|
-
"lmdb": "^3.5.4",
|
|
201
|
-
"mongodb": "^7.2.0",
|
|
202
|
-
"mongodb-client-encryption": "^7.0.0",
|
|
203
|
-
"msgpackr-extract": "^3.0.3",
|
|
204
|
-
"snappy": "^7.3.3",
|
|
205
|
-
"socks": "^2.8.7",
|
|
206
|
-
"typescript": "~5.9.3"
|
|
177
|
+
"@mongodb-js/zstd": ">=7.0.0 <8",
|
|
178
|
+
"kerberos": ">=7.0.0 <8",
|
|
179
|
+
"mongodb-client-encryption": ">=7.0.0 <8",
|
|
180
|
+
"snappy": ">=7.3.3 <8",
|
|
181
|
+
"socks": ">=2.8.8 <3"
|
|
207
182
|
},
|
|
208
183
|
"engines": {
|
|
209
184
|
"node": ">=24"
|