@agentlayer.tech/wallet 0.1.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.
Files changed (96) hide show
  1. package/.openclaw/AGENTS.md +98 -0
  2. package/.openclaw/extensions/agent-wallet/README.md +127 -0
  3. package/.openclaw/extensions/agent-wallet/index.ts +1520 -0
  4. package/.openclaw/extensions/agent-wallet/openclaw.plugin.json +184 -0
  5. package/.openclaw/extensions/agent-wallet/package.json +11 -0
  6. package/.openclaw/extensions/agent-wallet/skills/wallet-operator/SKILL.md +20 -0
  7. package/CHANGELOG.md +42 -0
  8. package/LICENSE +104 -0
  9. package/README.md +332 -0
  10. package/RELEASING.md +204 -0
  11. package/agent-wallet/.env.example +62 -0
  12. package/agent-wallet/AGENTS.md +129 -0
  13. package/agent-wallet/README.md +527 -0
  14. package/agent-wallet/agent_wallet/__init__.py +11 -0
  15. package/agent-wallet/agent_wallet/approval.py +161 -0
  16. package/agent-wallet/agent_wallet/bootstrap.py +178 -0
  17. package/agent-wallet/agent_wallet/btc_user_wallets.py +217 -0
  18. package/agent-wallet/agent_wallet/config.py +382 -0
  19. package/agent-wallet/agent_wallet/encrypted_storage.py +161 -0
  20. package/agent-wallet/agent_wallet/evm_user_wallets.py +370 -0
  21. package/agent-wallet/agent_wallet/exceptions.py +9 -0
  22. package/agent-wallet/agent_wallet/file_ops.py +34 -0
  23. package/agent-wallet/agent_wallet/http_client.py +25 -0
  24. package/agent-wallet/agent_wallet/models.py +66 -0
  25. package/agent-wallet/agent_wallet/nonce_registry.py +59 -0
  26. package/agent-wallet/agent_wallet/openclaw_adapter.py +5128 -0
  27. package/agent-wallet/agent_wallet/openclaw_cli.py +626 -0
  28. package/agent-wallet/agent_wallet/openclaw_runtime.py +272 -0
  29. package/agent-wallet/agent_wallet/plugin_bundle.py +42 -0
  30. package/agent-wallet/agent_wallet/providers/__init__.py +1 -0
  31. package/agent-wallet/agent_wallet/providers/bags.py +259 -0
  32. package/agent-wallet/agent_wallet/providers/evm_portfolio.py +470 -0
  33. package/agent-wallet/agent_wallet/providers/jupiter.py +567 -0
  34. package/agent-wallet/agent_wallet/providers/kamino.py +215 -0
  35. package/agent-wallet/agent_wallet/providers/lifi.py +277 -0
  36. package/agent-wallet/agent_wallet/providers/solana_rpc.py +470 -0
  37. package/agent-wallet/agent_wallet/providers/wdk_btc_local.py +114 -0
  38. package/agent-wallet/agent_wallet/providers/wdk_evm_local.py +205 -0
  39. package/agent-wallet/agent_wallet/sealed_keys.py +61 -0
  40. package/agent-wallet/agent_wallet/solana_stake.py +103 -0
  41. package/agent-wallet/agent_wallet/solana_tx.py +93 -0
  42. package/agent-wallet/agent_wallet/spending_limits.py +101 -0
  43. package/agent-wallet/agent_wallet/transaction_policy.py +518 -0
  44. package/agent-wallet/agent_wallet/user_wallets.py +355 -0
  45. package/agent-wallet/agent_wallet/validation.py +31 -0
  46. package/agent-wallet/agent_wallet/wallet_layer/__init__.py +1 -0
  47. package/agent-wallet/agent_wallet/wallet_layer/base.py +808 -0
  48. package/agent-wallet/agent_wallet/wallet_layer/base58.py +44 -0
  49. package/agent-wallet/agent_wallet/wallet_layer/factory.py +102 -0
  50. package/agent-wallet/agent_wallet/wallet_layer/solana.py +4252 -0
  51. package/agent-wallet/agent_wallet/wallet_layer/wdk_btc.py +272 -0
  52. package/agent-wallet/agent_wallet/wallet_layer/wdk_evm.py +1628 -0
  53. package/agent-wallet/examples/bootstrap_wallet.py +21 -0
  54. package/agent-wallet/examples/openclaw_runtime_onboarding.py +28 -0
  55. package/agent-wallet/examples/openclaw_user_wallet_example.py +31 -0
  56. package/agent-wallet/examples/openclaw_wallet_adapter_example.py +33 -0
  57. package/agent-wallet/openclaw.plugin.json +138 -0
  58. package/agent-wallet/pyproject.toml +31 -0
  59. package/agent-wallet/scripts/bootstrap_openclaw_btc.py +278 -0
  60. package/agent-wallet/scripts/build_release_bundle.py +188 -0
  61. package/agent-wallet/scripts/finalize_openclaw_local_wallet_config.py +121 -0
  62. package/agent-wallet/scripts/install_agent_wallet.py +505 -0
  63. package/agent-wallet/scripts/install_openclaw_local_config.py +226 -0
  64. package/agent-wallet/scripts/install_openclaw_sealed_keys.py +105 -0
  65. package/agent-wallet/scripts/manage_openclaw_btc_wallet.py +244 -0
  66. package/agent-wallet/scripts/reveal_btc_seed.sh +130 -0
  67. package/agent-wallet/scripts/security_utils.py +37 -0
  68. package/agent-wallet/scripts/setup_btc_wallet.sh +146 -0
  69. package/agent-wallet/scripts/switch_openclaw_wallet_network.py +106 -0
  70. package/agent-wallet/skills/wallet-operator/SKILL.md +128 -0
  71. package/bin/openclaw-agent-wallet.mjs +487 -0
  72. package/install-from-github.sh +134 -0
  73. package/package.json +61 -0
  74. package/setup.sh +40 -0
  75. package/wdk-btc-wallet/README.md +325 -0
  76. package/wdk-btc-wallet/bootstrap.sh +22 -0
  77. package/wdk-btc-wallet/package-lock.json +1839 -0
  78. package/wdk-btc-wallet/package.json +18 -0
  79. package/wdk-btc-wallet/run-local.sh +21 -0
  80. package/wdk-btc-wallet/src/config.js +160 -0
  81. package/wdk-btc-wallet/src/json.js +35 -0
  82. package/wdk-btc-wallet/src/local_vault.js +432 -0
  83. package/wdk-btc-wallet/src/network_state.js +84 -0
  84. package/wdk-btc-wallet/src/server.js +257 -0
  85. package/wdk-btc-wallet/src/wdk_btc_wallet.js +332 -0
  86. package/wdk-evm-wallet/README.md +183 -0
  87. package/wdk-evm-wallet/bootstrap.sh +8 -0
  88. package/wdk-evm-wallet/package-lock.json +2340 -0
  89. package/wdk-evm-wallet/package.json +23 -0
  90. package/wdk-evm-wallet/run-local.sh +12 -0
  91. package/wdk-evm-wallet/src/config.js +274 -0
  92. package/wdk-evm-wallet/src/json.js +35 -0
  93. package/wdk-evm-wallet/src/local_vault.js +430 -0
  94. package/wdk-evm-wallet/src/network_state.js +92 -0
  95. package/wdk-evm-wallet/src/server.js +575 -0
  96. package/wdk-evm-wallet/src/wdk_evm_wallet.js +4981 -0
@@ -0,0 +1,1839 @@
1
+ {
2
+ "name": "wdk-btc-wallet",
3
+ "version": "0.1.0",
4
+ "lockfileVersion": 3,
5
+ "requires": true,
6
+ "packages": {
7
+ "": {
8
+ "name": "wdk-btc-wallet",
9
+ "version": "0.1.0",
10
+ "dependencies": {
11
+ "@tetherto/wdk": "^1.0.0-beta.6",
12
+ "@tetherto/wdk-wallet-btc": "^1.0.0-beta.5",
13
+ "dotenv": "^16.4.5"
14
+ }
15
+ },
16
+ "node_modules/@bitcoinerlab/coinselect": {
17
+ "version": "1.3.1",
18
+ "license": "MIT",
19
+ "dependencies": {
20
+ "@bitcoinerlab/descriptors": "^2.3.0"
21
+ }
22
+ },
23
+ "node_modules/@bitcoinerlab/descriptors": {
24
+ "version": "2.3.1",
25
+ "license": "MIT",
26
+ "dependencies": {
27
+ "@bitcoinerlab/miniscript": "^1.4.0",
28
+ "@bitcoinerlab/secp256k1": "^1.2.0",
29
+ "bip32": "^4.0.0",
30
+ "bitcoinjs-lib": "^6.1.3",
31
+ "ecpair": "^2.1.0",
32
+ "lodash.memoize": "^4.1.2",
33
+ "varuint-bitcoin": "^1.1.2"
34
+ },
35
+ "peerDependencies": {
36
+ "ledger-bitcoin": "^0.2.2"
37
+ },
38
+ "peerDependenciesMeta": {
39
+ "ledger-bitcoin": {
40
+ "optional": true
41
+ }
42
+ }
43
+ },
44
+ "node_modules/@bitcoinerlab/miniscript": {
45
+ "version": "1.4.3",
46
+ "license": "MIT",
47
+ "dependencies": {
48
+ "bip68": "^1.0.4"
49
+ }
50
+ },
51
+ "node_modules/@bitcoinerlab/secp256k1": {
52
+ "version": "1.2.0",
53
+ "license": "MIT",
54
+ "dependencies": {
55
+ "@noble/curves": "^1.7.0"
56
+ }
57
+ },
58
+ "node_modules/@mempool/electrum-client": {
59
+ "version": "1.1.9",
60
+ "license": "MIT",
61
+ "engines": {
62
+ "node": ">=6"
63
+ }
64
+ },
65
+ "node_modules/@noble/curves": {
66
+ "version": "1.9.7",
67
+ "license": "MIT",
68
+ "dependencies": {
69
+ "@noble/hashes": "1.8.0"
70
+ },
71
+ "engines": {
72
+ "node": "^14.21.3 || >=16"
73
+ },
74
+ "funding": {
75
+ "url": "https://paulmillr.com/funding/"
76
+ }
77
+ },
78
+ "node_modules/@noble/hashes": {
79
+ "version": "1.8.0",
80
+ "license": "MIT",
81
+ "engines": {
82
+ "node": "^14.21.3 || >=16"
83
+ },
84
+ "funding": {
85
+ "url": "https://paulmillr.com/funding/"
86
+ }
87
+ },
88
+ "node_modules/@scure/base": {
89
+ "version": "1.2.6",
90
+ "license": "MIT",
91
+ "funding": {
92
+ "url": "https://paulmillr.com/funding/"
93
+ }
94
+ },
95
+ "node_modules/@tetherto/wdk": {
96
+ "version": "1.0.0-beta.6",
97
+ "license": "Apache-2.0",
98
+ "dependencies": {
99
+ "@tetherto/wdk-wallet": "^1.0.0-beta.6",
100
+ "bare-node-runtime": "^1.1.4"
101
+ }
102
+ },
103
+ "node_modules/@tetherto/wdk-wallet": {
104
+ "version": "1.0.0-beta.7",
105
+ "license": "Apache-2.0",
106
+ "dependencies": {
107
+ "bare-node-runtime": "^1.1.4",
108
+ "bip39": "3.1.0"
109
+ }
110
+ },
111
+ "node_modules/@tetherto/wdk-wallet-btc": {
112
+ "version": "1.0.0-beta.7",
113
+ "license": "Apache-2.0",
114
+ "dependencies": {
115
+ "@bitcoinerlab/coinselect": "1.3.1",
116
+ "@bitcoinerlab/descriptors": "2.3.1",
117
+ "@bitcoinerlab/secp256k1": "1.2.0",
118
+ "@mempool/electrum-client": "1.1.9",
119
+ "@tetherto/wdk-wallet": "1.0.0-beta.7",
120
+ "bare-node-runtime": "^1.1.4",
121
+ "bip32": "4.0.0",
122
+ "bip39": "3.1.0",
123
+ "bitcoinjs-lib": "6.1.7",
124
+ "bitcoinjs-message": "2.2.0",
125
+ "lru-cache": "11.2.2",
126
+ "p-limit": "7.1.1",
127
+ "sodium-universal": "5.0.1"
128
+ }
129
+ },
130
+ "node_modules/available-typed-arrays": {
131
+ "version": "1.0.7",
132
+ "license": "MIT",
133
+ "dependencies": {
134
+ "possible-typed-array-names": "^1.0.0"
135
+ },
136
+ "engines": {
137
+ "node": ">= 0.4"
138
+ },
139
+ "funding": {
140
+ "url": "https://github.com/sponsors/ljharb"
141
+ }
142
+ },
143
+ "node_modules/b4a": {
144
+ "version": "1.8.0",
145
+ "license": "Apache-2.0",
146
+ "peerDependencies": {
147
+ "react-native-b4a": "*"
148
+ },
149
+ "peerDependenciesMeta": {
150
+ "react-native-b4a": {
151
+ "optional": true
152
+ }
153
+ }
154
+ },
155
+ "node_modules/bare-abort": {
156
+ "version": "2.0.13",
157
+ "license": "Apache-2.0"
158
+ },
159
+ "node_modules/bare-abort-controller": {
160
+ "version": "1.1.0",
161
+ "license": "Apache-2.0",
162
+ "dependencies": {
163
+ "bare-events": "^2.7.0"
164
+ }
165
+ },
166
+ "node_modules/bare-addon-resolve": {
167
+ "version": "1.10.0",
168
+ "license": "Apache-2.0",
169
+ "dependencies": {
170
+ "bare-module-resolve": "^1.10.0",
171
+ "bare-semver": "^1.0.0"
172
+ },
173
+ "peerDependencies": {
174
+ "bare-url": "*"
175
+ },
176
+ "peerDependenciesMeta": {
177
+ "bare-url": {
178
+ "optional": true
179
+ }
180
+ }
181
+ },
182
+ "node_modules/bare-ansi-escapes": {
183
+ "version": "2.2.3",
184
+ "license": "Apache-2.0",
185
+ "dependencies": {
186
+ "bare-stream": "^2.6.5"
187
+ },
188
+ "peerDependencies": {
189
+ "bare-buffer": "*"
190
+ },
191
+ "peerDependenciesMeta": {
192
+ "bare-buffer": {
193
+ "optional": true
194
+ }
195
+ }
196
+ },
197
+ "node_modules/bare-assert": {
198
+ "version": "1.2.0",
199
+ "license": "Apache-2.0",
200
+ "dependencies": {
201
+ "bare-inspect": "^3.1.2"
202
+ }
203
+ },
204
+ "node_modules/bare-async-hooks": {
205
+ "version": "0.0.0",
206
+ "license": "Apache-2.0"
207
+ },
208
+ "node_modules/bare-buffer": {
209
+ "version": "3.6.0",
210
+ "license": "Apache-2.0",
211
+ "engines": {
212
+ "bare": ">=1.20.0"
213
+ }
214
+ },
215
+ "node_modules/bare-bundle": {
216
+ "version": "1.10.0",
217
+ "license": "Apache-2.0",
218
+ "peerDependencies": {
219
+ "bare-buffer": "*",
220
+ "bare-url": "*"
221
+ },
222
+ "peerDependenciesMeta": {
223
+ "bare-buffer": {
224
+ "optional": true
225
+ },
226
+ "bare-url": {
227
+ "optional": true
228
+ }
229
+ }
230
+ },
231
+ "node_modules/bare-channel": {
232
+ "version": "5.2.3",
233
+ "license": "Apache-2.0",
234
+ "dependencies": {
235
+ "bare-events": "^2.0.0",
236
+ "bare-stream": "^2.7.0",
237
+ "bare-structured-clone": "^1.4.0"
238
+ },
239
+ "engines": {
240
+ "bare": ">=1.7.0"
241
+ }
242
+ },
243
+ "node_modules/bare-console": {
244
+ "version": "6.1.0",
245
+ "license": "Apache-2.0",
246
+ "dependencies": {
247
+ "bare-hrtime": "^2.0.0",
248
+ "bare-logger": "^2.0.0",
249
+ "bare-system-logger": "^1.0.2"
250
+ }
251
+ },
252
+ "node_modules/bare-crypto": {
253
+ "version": "1.13.4",
254
+ "license": "Apache-2.0",
255
+ "dependencies": {
256
+ "bare-assert": "^1.2.0",
257
+ "bare-stream": "^2.6.3"
258
+ },
259
+ "peerDependencies": {
260
+ "bare-buffer": "*"
261
+ },
262
+ "peerDependenciesMeta": {
263
+ "bare-buffer": {
264
+ "optional": true
265
+ }
266
+ }
267
+ },
268
+ "node_modules/bare-debug-log": {
269
+ "version": "2.0.0",
270
+ "license": "Apache-2.0",
271
+ "dependencies": {
272
+ "bare-os": "^3.0.1"
273
+ }
274
+ },
275
+ "node_modules/bare-dgram": {
276
+ "version": "1.0.1",
277
+ "license": "Apache-2.0",
278
+ "dependencies": {
279
+ "bare-events": "^2.5.0",
280
+ "udx-native": "^1.11.2"
281
+ }
282
+ },
283
+ "node_modules/bare-diagnostics-channel": {
284
+ "version": "1.1.0",
285
+ "license": "Apache-2.0"
286
+ },
287
+ "node_modules/bare-dns": {
288
+ "version": "2.1.4",
289
+ "license": "Apache-2.0",
290
+ "engines": {
291
+ "bare": ">=1.7.0"
292
+ }
293
+ },
294
+ "node_modules/bare-encoding": {
295
+ "version": "1.0.3",
296
+ "license": "Apache-2.0",
297
+ "peerDependencies": {
298
+ "bare-buffer": "*"
299
+ },
300
+ "peerDependenciesMeta": {
301
+ "bare-buffer": {
302
+ "optional": true
303
+ }
304
+ }
305
+ },
306
+ "node_modules/bare-env": {
307
+ "version": "3.0.0",
308
+ "license": "Apache-2.0",
309
+ "dependencies": {
310
+ "bare-os": "^3.0.1"
311
+ }
312
+ },
313
+ "node_modules/bare-events": {
314
+ "version": "2.8.2",
315
+ "license": "Apache-2.0",
316
+ "peerDependencies": {
317
+ "bare-abort-controller": "*"
318
+ },
319
+ "peerDependenciesMeta": {
320
+ "bare-abort-controller": {
321
+ "optional": true
322
+ }
323
+ }
324
+ },
325
+ "node_modules/bare-fetch": {
326
+ "version": "2.8.0",
327
+ "license": "Apache-2.0",
328
+ "dependencies": {
329
+ "bare-form-data": "^1.2.0",
330
+ "bare-http1": "^4.5.2",
331
+ "bare-https": "^2.0.0",
332
+ "bare-stream": "^2.9.1",
333
+ "bare-url": "^2.4.0",
334
+ "bare-zlib": "^1.3.0"
335
+ },
336
+ "peerDependencies": {
337
+ "bare-abort-controller": "*",
338
+ "bare-buffer": "*"
339
+ },
340
+ "peerDependenciesMeta": {
341
+ "bare-abort-controller": {
342
+ "optional": true
343
+ },
344
+ "bare-buffer": {
345
+ "optional": true
346
+ }
347
+ }
348
+ },
349
+ "node_modules/bare-form-data": {
350
+ "version": "1.2.1",
351
+ "license": "Apache-2.0",
352
+ "dependencies": {
353
+ "bare-buffer": "^3.6.0",
354
+ "bare-stream": "^2.6.5"
355
+ }
356
+ },
357
+ "node_modules/bare-format": {
358
+ "version": "1.0.2",
359
+ "license": "Apache-2.0",
360
+ "dependencies": {
361
+ "bare-inspect": "^3.0.0"
362
+ }
363
+ },
364
+ "node_modules/bare-fs": {
365
+ "version": "4.5.6",
366
+ "license": "Apache-2.0",
367
+ "dependencies": {
368
+ "bare-events": "^2.5.4",
369
+ "bare-path": "^3.0.0",
370
+ "bare-stream": "^2.6.4",
371
+ "bare-url": "^2.2.2",
372
+ "fast-fifo": "^1.3.2"
373
+ },
374
+ "engines": {
375
+ "bare": ">=1.16.0"
376
+ },
377
+ "peerDependencies": {
378
+ "bare-buffer": "*"
379
+ },
380
+ "peerDependenciesMeta": {
381
+ "bare-buffer": {
382
+ "optional": true
383
+ }
384
+ }
385
+ },
386
+ "node_modules/bare-hrtime": {
387
+ "version": "2.1.1",
388
+ "license": "Apache-2.0"
389
+ },
390
+ "node_modules/bare-http-parser": {
391
+ "version": "1.1.3",
392
+ "license": "Apache-2.0"
393
+ },
394
+ "node_modules/bare-http1": {
395
+ "version": "4.5.5",
396
+ "license": "Apache-2.0",
397
+ "dependencies": {
398
+ "bare-events": "^2.6.0",
399
+ "bare-http-parser": "^1.1.1",
400
+ "bare-stream": "^2.10.0",
401
+ "bare-tcp": "^2.2.0"
402
+ },
403
+ "peerDependencies": {
404
+ "bare-buffer": "*",
405
+ "bare-url": "*"
406
+ },
407
+ "peerDependenciesMeta": {
408
+ "bare-buffer": {
409
+ "optional": true
410
+ },
411
+ "bare-url": {
412
+ "optional": true
413
+ }
414
+ }
415
+ },
416
+ "node_modules/bare-https": {
417
+ "version": "2.1.3",
418
+ "license": "Apache-2.0",
419
+ "dependencies": {
420
+ "bare-http1": "^4.4.0",
421
+ "bare-tcp": "^2.2.0",
422
+ "bare-tls": "^2.0.0"
423
+ }
424
+ },
425
+ "node_modules/bare-https/node_modules/bare-tls": {
426
+ "version": "2.2.1",
427
+ "resolved": "https://registry.npmjs.org/bare-tls/-/bare-tls-2.2.1.tgz",
428
+ "integrity": "sha512-hZ+ZqwrUO4dyH7/6WYkYWjgAFNJKjzwEYJiDaMnMs+eRleBDjQ3CvNZawpkw0Ar9jnM9NZK6+f6GqjkZ2FLGmQ==",
429
+ "license": "Apache-2.0",
430
+ "dependencies": {
431
+ "bare-net": "^2.0.1",
432
+ "bare-stream": "^2.6.4"
433
+ },
434
+ "engines": {
435
+ "bare": ">=1.7.0"
436
+ }
437
+ },
438
+ "node_modules/bare-inspect": {
439
+ "version": "3.1.4",
440
+ "license": "Apache-2.0",
441
+ "dependencies": {
442
+ "bare-ansi-escapes": "^2.1.0",
443
+ "bare-type": "^1.0.0"
444
+ },
445
+ "engines": {
446
+ "bare": ">=1.18.0"
447
+ }
448
+ },
449
+ "node_modules/bare-inspector": {
450
+ "version": "5.0.0",
451
+ "license": "Apache-2.0",
452
+ "dependencies": {
453
+ "bare-events": "^2.1.0",
454
+ "bare-http1": "^4.0.0",
455
+ "bare-stream": "^2.0.0",
456
+ "bare-url": "^2.0.0",
457
+ "bare-ws": "^2.0.0"
458
+ },
459
+ "engines": {
460
+ "bare": ">=1.2.0"
461
+ },
462
+ "peerDependencies": {
463
+ "bare-tcp": "*"
464
+ },
465
+ "peerDependenciesMeta": {
466
+ "bare-tcp": {
467
+ "optional": true
468
+ }
469
+ }
470
+ },
471
+ "node_modules/bare-logger": {
472
+ "version": "2.0.3",
473
+ "license": "Apache-2.0",
474
+ "dependencies": {
475
+ "bare-format": "^1.0.0"
476
+ }
477
+ },
478
+ "node_modules/bare-module": {
479
+ "version": "6.1.3",
480
+ "license": "Apache-2.0",
481
+ "dependencies": {
482
+ "bare-bundle": "^1.3.0",
483
+ "bare-module-lexer": "^1.0.0",
484
+ "bare-module-resolve": "^1.8.0",
485
+ "bare-path": "^3.0.0",
486
+ "bare-url": "^2.0.1"
487
+ },
488
+ "engines": {
489
+ "bare": ">=1.23.0"
490
+ },
491
+ "peerDependencies": {
492
+ "bare-buffer": "*"
493
+ },
494
+ "peerDependenciesMeta": {
495
+ "bare-buffer": {
496
+ "optional": true
497
+ }
498
+ }
499
+ },
500
+ "node_modules/bare-module-lexer": {
501
+ "version": "1.4.7",
502
+ "license": "Apache-2.0",
503
+ "dependencies": {
504
+ "require-addon": "^1.0.2"
505
+ },
506
+ "peerDependencies": {
507
+ "bare-buffer": "*"
508
+ },
509
+ "peerDependenciesMeta": {
510
+ "bare-buffer": {
511
+ "optional": true
512
+ }
513
+ }
514
+ },
515
+ "node_modules/bare-module-resolve": {
516
+ "version": "1.12.1",
517
+ "license": "Apache-2.0",
518
+ "dependencies": {
519
+ "bare-semver": "^1.0.0"
520
+ },
521
+ "peerDependencies": {
522
+ "bare-url": "*"
523
+ },
524
+ "peerDependenciesMeta": {
525
+ "bare-url": {
526
+ "optional": true
527
+ }
528
+ }
529
+ },
530
+ "node_modules/bare-module-traverse": {
531
+ "version": "2.0.1",
532
+ "license": "Apache-2.0",
533
+ "dependencies": {
534
+ "bare-addon-resolve": "^1.5.0",
535
+ "bare-module-lexer": "^1.4.0",
536
+ "bare-module-resolve": "^1.7.0"
537
+ },
538
+ "peerDependencies": {
539
+ "bare-buffer": "*",
540
+ "bare-url": "*"
541
+ },
542
+ "peerDependenciesMeta": {
543
+ "bare-buffer": {
544
+ "optional": true
545
+ },
546
+ "bare-url": {
547
+ "optional": true
548
+ }
549
+ }
550
+ },
551
+ "node_modules/bare-net": {
552
+ "version": "2.3.1",
553
+ "license": "Apache-2.0",
554
+ "dependencies": {
555
+ "bare-events": "^2.2.2",
556
+ "bare-pipe": "^4.0.0",
557
+ "bare-stream": "^2.0.0",
558
+ "bare-tcp": "^2.0.0"
559
+ }
560
+ },
561
+ "node_modules/bare-node-runtime": {
562
+ "version": "1.2.0",
563
+ "license": "Apache-2.0",
564
+ "dependencies": {
565
+ "bare-abort-controller": "^1.0.0",
566
+ "bare-assert": "^1.1.0",
567
+ "bare-async-hooks": "^0.0.0",
568
+ "bare-buffer": "^3.3.1",
569
+ "bare-console": "^6.0.1",
570
+ "bare-crypto": "^1.11.2",
571
+ "bare-dgram": "^1.0.1",
572
+ "bare-diagnostics-channel": "^1.1.0",
573
+ "bare-dns": "^2.1.4",
574
+ "bare-events": "^2.7.0",
575
+ "bare-fetch": "^2.5.0",
576
+ "bare-fs": "^4.2.3",
577
+ "bare-http1": "^4.0.4",
578
+ "bare-https": "^2.0.0",
579
+ "bare-inspector": "^5.0.0",
580
+ "bare-module": "^6.1.2",
581
+ "bare-net": "^2.0.2",
582
+ "bare-os": "^3.6.2",
583
+ "bare-path": "^3.0.0",
584
+ "bare-performance": "^1.1.0",
585
+ "bare-process": "^4.2.1",
586
+ "bare-punycode": "^0.0.0",
587
+ "bare-querystring": "^1.0.0",
588
+ "bare-readline": "^1.1.0",
589
+ "bare-repl": "^6.0.1",
590
+ "bare-stream": "^2.7.0",
591
+ "bare-string-decoder": "^1.0.0",
592
+ "bare-subprocess": "^5.1.1",
593
+ "bare-timers": "^3.0.3",
594
+ "bare-tls": "^2.1.3",
595
+ "bare-tty": "^5.0.3",
596
+ "bare-url": "^2.2.2",
597
+ "bare-utils": "^1.5.1",
598
+ "bare-v8": "^1.0.1",
599
+ "bare-vm": "^1.0.0",
600
+ "bare-worker": "^4.0.0",
601
+ "bare-ws": "^2.1.0",
602
+ "bare-zlib": "^1.3.1"
603
+ }
604
+ },
605
+ "node_modules/bare-node-runtime/node_modules/bare-tls": {
606
+ "version": "2.2.1",
607
+ "resolved": "https://registry.npmjs.org/bare-tls/-/bare-tls-2.2.1.tgz",
608
+ "integrity": "sha512-hZ+ZqwrUO4dyH7/6WYkYWjgAFNJKjzwEYJiDaMnMs+eRleBDjQ3CvNZawpkw0Ar9jnM9NZK6+f6GqjkZ2FLGmQ==",
609
+ "license": "Apache-2.0",
610
+ "dependencies": {
611
+ "bare-net": "^2.0.1",
612
+ "bare-stream": "^2.6.4"
613
+ },
614
+ "engines": {
615
+ "bare": ">=1.7.0"
616
+ }
617
+ },
618
+ "node_modules/bare-os": {
619
+ "version": "3.8.0",
620
+ "license": "Apache-2.0",
621
+ "engines": {
622
+ "bare": ">=1.14.0"
623
+ }
624
+ },
625
+ "node_modules/bare-path": {
626
+ "version": "3.0.0",
627
+ "license": "Apache-2.0",
628
+ "dependencies": {
629
+ "bare-os": "^3.0.1"
630
+ }
631
+ },
632
+ "node_modules/bare-performance": {
633
+ "version": "1.3.0",
634
+ "license": "Apache-2.0"
635
+ },
636
+ "node_modules/bare-pipe": {
637
+ "version": "4.1.5",
638
+ "license": "Apache-2.0",
639
+ "dependencies": {
640
+ "bare-events": "^2.0.0",
641
+ "bare-stream": "^2.0.0"
642
+ },
643
+ "engines": {
644
+ "bare": ">=1.16.0"
645
+ }
646
+ },
647
+ "node_modules/bare-process": {
648
+ "version": "4.3.0",
649
+ "license": "Apache-2.0",
650
+ "dependencies": {
651
+ "bare-abort": "^2.0.13",
652
+ "bare-env": "^3.0.0",
653
+ "bare-events": "^2.3.1",
654
+ "bare-hrtime": "^2.0.0",
655
+ "bare-os": "^3.7.1",
656
+ "bare-pipe": "^4.0.0",
657
+ "bare-signals": "^4.0.0",
658
+ "bare-tty": "^5.0.0"
659
+ }
660
+ },
661
+ "node_modules/bare-punycode": {
662
+ "version": "0.0.0",
663
+ "license": "Apache-2.0",
664
+ "dependencies": {
665
+ "punycode": "^2.3.1"
666
+ }
667
+ },
668
+ "node_modules/bare-querystring": {
669
+ "version": "1.0.0",
670
+ "license": "Apache-2.0"
671
+ },
672
+ "node_modules/bare-readline": {
673
+ "version": "1.2.2",
674
+ "license": "Apache-2.0",
675
+ "dependencies": {
676
+ "bare-ansi-escapes": "^2.0.0",
677
+ "bare-stream": "^2.0.0"
678
+ }
679
+ },
680
+ "node_modules/bare-realm": {
681
+ "version": "2.0.1",
682
+ "license": "Apache-2.0",
683
+ "engines": {
684
+ "bare": ">=1.5.0"
685
+ }
686
+ },
687
+ "node_modules/bare-repl": {
688
+ "version": "6.0.2",
689
+ "license": "Apache-2.0",
690
+ "dependencies": {
691
+ "bare-inspect": "^3.0.0",
692
+ "bare-module": "^6.0.1",
693
+ "bare-os": "^3.0.1",
694
+ "bare-path": "^3.0.0",
695
+ "bare-pipe": "^4.0.0",
696
+ "bare-readline": "^1.0.0",
697
+ "bare-stream": "^2.0.0",
698
+ "bare-tty": "^5.0.0"
699
+ }
700
+ },
701
+ "node_modules/bare-semver": {
702
+ "version": "1.0.2",
703
+ "license": "Apache-2.0"
704
+ },
705
+ "node_modules/bare-signals": {
706
+ "version": "4.2.0",
707
+ "license": "Apache-2.0",
708
+ "dependencies": {
709
+ "bare-events": "^2.5.3",
710
+ "bare-os": "^3.3.1"
711
+ },
712
+ "engines": {
713
+ "bare": ">=1.7.0"
714
+ }
715
+ },
716
+ "node_modules/bare-stream": {
717
+ "version": "2.11.0",
718
+ "license": "Apache-2.0",
719
+ "dependencies": {
720
+ "streamx": "^2.25.0",
721
+ "teex": "^1.0.1"
722
+ },
723
+ "peerDependencies": {
724
+ "bare-abort-controller": "*",
725
+ "bare-buffer": "*",
726
+ "bare-events": "*"
727
+ },
728
+ "peerDependenciesMeta": {
729
+ "bare-abort-controller": {
730
+ "optional": true
731
+ },
732
+ "bare-buffer": {
733
+ "optional": true
734
+ },
735
+ "bare-events": {
736
+ "optional": true
737
+ }
738
+ }
739
+ },
740
+ "node_modules/bare-string-decoder": {
741
+ "version": "1.0.0",
742
+ "license": "Apache-2.0",
743
+ "dependencies": {
744
+ "text-decoder": "^1.2.3"
745
+ },
746
+ "peerDependencies": {
747
+ "bare-buffer": "*"
748
+ },
749
+ "peerDependenciesMeta": {
750
+ "bare-buffer": {
751
+ "optional": true
752
+ }
753
+ }
754
+ },
755
+ "node_modules/bare-structured-clone": {
756
+ "version": "1.5.3",
757
+ "license": "Apache-2.0",
758
+ "dependencies": {
759
+ "bare-type": "^1.1.0",
760
+ "compact-encoding": "^2.15.0"
761
+ },
762
+ "engines": {
763
+ "bare": ">=1.2.0"
764
+ },
765
+ "peerDependencies": {
766
+ "bare-buffer": "*",
767
+ "bare-url": "*"
768
+ },
769
+ "peerDependenciesMeta": {
770
+ "bare-buffer": {
771
+ "optional": true
772
+ },
773
+ "bare-url": {
774
+ "optional": true
775
+ }
776
+ }
777
+ },
778
+ "node_modules/bare-stylize": {
779
+ "version": "0.0.1",
780
+ "license": "Apache-2.0",
781
+ "dependencies": {
782
+ "bare-ansi-escapes": "^2.2.3",
783
+ "bare-process": "^4.2.1"
784
+ }
785
+ },
786
+ "node_modules/bare-subprocess": {
787
+ "version": "5.2.3",
788
+ "license": "Apache-2.0",
789
+ "dependencies": {
790
+ "bare-env": "^3.0.0",
791
+ "bare-events": "^2.5.4",
792
+ "bare-os": "^3.0.1",
793
+ "bare-pipe": "^4.0.0",
794
+ "bare-url": "^2.2.2"
795
+ },
796
+ "engines": {
797
+ "bare": ">=1.7.0"
798
+ },
799
+ "peerDependencies": {
800
+ "bare-buffer": "*"
801
+ },
802
+ "peerDependenciesMeta": {
803
+ "bare-buffer": {
804
+ "optional": true
805
+ }
806
+ }
807
+ },
808
+ "node_modules/bare-system-logger": {
809
+ "version": "1.0.3",
810
+ "license": "Apache-2.0",
811
+ "dependencies": {
812
+ "bare-logger": "^2.0.0"
813
+ }
814
+ },
815
+ "node_modules/bare-tcp": {
816
+ "version": "2.2.7",
817
+ "license": "Apache-2.0",
818
+ "dependencies": {
819
+ "bare-dns": "^2.0.4",
820
+ "bare-events": "^2.5.4",
821
+ "bare-stream": "^2.6.4"
822
+ },
823
+ "engines": {
824
+ "bare": ">=1.16.0"
825
+ }
826
+ },
827
+ "node_modules/bare-thread": {
828
+ "version": "1.1.6",
829
+ "license": "Apache-2.0",
830
+ "dependencies": {
831
+ "bare-bundle": "^1.9.0",
832
+ "bare-module-resolve": "^1.11.2",
833
+ "bare-module-traverse": "^2.0.0"
834
+ }
835
+ },
836
+ "node_modules/bare-timers": {
837
+ "version": "3.2.1",
838
+ "license": "Apache-2.0",
839
+ "engines": {
840
+ "bare": ">=1.7.0"
841
+ },
842
+ "peerDependencies": {
843
+ "bare-abort-controller": "*"
844
+ },
845
+ "peerDependenciesMeta": {
846
+ "bare-abort-controller": {
847
+ "optional": true
848
+ }
849
+ }
850
+ },
851
+ "node_modules/bare-tty": {
852
+ "version": "5.0.3",
853
+ "license": "Apache-2.0",
854
+ "dependencies": {
855
+ "bare-events": "^2.2.0",
856
+ "bare-signals": "^4.0.0",
857
+ "bare-stream": "^2.0.0"
858
+ },
859
+ "engines": {
860
+ "bare": ">=1.16.0"
861
+ }
862
+ },
863
+ "node_modules/bare-type": {
864
+ "version": "1.1.0",
865
+ "license": "Apache-2.0",
866
+ "engines": {
867
+ "bare": ">=1.2.0"
868
+ }
869
+ },
870
+ "node_modules/bare-url": {
871
+ "version": "2.4.0",
872
+ "license": "Apache-2.0",
873
+ "dependencies": {
874
+ "bare-path": "^3.0.0"
875
+ }
876
+ },
877
+ "node_modules/bare-utils": {
878
+ "version": "1.6.0",
879
+ "license": "Apache-2.0",
880
+ "dependencies": {
881
+ "bare-debug-log": "^2.0.0",
882
+ "bare-encoding": "^1.0.0",
883
+ "bare-format": "^1.0.0",
884
+ "bare-inspect": "^3.0.0",
885
+ "bare-stylize": "^0.0.1",
886
+ "bare-type": "^1.0.6"
887
+ }
888
+ },
889
+ "node_modules/bare-v8": {
890
+ "version": "1.0.1",
891
+ "license": "Apache-2.0"
892
+ },
893
+ "node_modules/bare-vm": {
894
+ "version": "1.0.1",
895
+ "license": "Apache-2.0",
896
+ "dependencies": {
897
+ "bare-realm": "^2.0.0"
898
+ }
899
+ },
900
+ "node_modules/bare-worker": {
901
+ "version": "4.1.6",
902
+ "license": "Apache-2.0",
903
+ "dependencies": {
904
+ "bare-channel": "^5.1.5",
905
+ "bare-events": "^2.2.1",
906
+ "bare-module": "^6.0.1",
907
+ "bare-thread": "^1.1.3"
908
+ }
909
+ },
910
+ "node_modules/bare-ws": {
911
+ "version": "2.1.0",
912
+ "license": "Apache-2.0",
913
+ "dependencies": {
914
+ "bare-crypto": "^1.2.0",
915
+ "bare-events": "^2.3.1",
916
+ "bare-http1": "^4.0.0",
917
+ "bare-https": "^2.0.0",
918
+ "bare-stream": "^2.1.2"
919
+ },
920
+ "peerDependencies": {
921
+ "bare-buffer": "*",
922
+ "bare-url": "*"
923
+ },
924
+ "peerDependenciesMeta": {
925
+ "bare-buffer": {
926
+ "optional": true
927
+ },
928
+ "bare-url": {
929
+ "optional": true
930
+ }
931
+ }
932
+ },
933
+ "node_modules/bare-zlib": {
934
+ "version": "1.3.1",
935
+ "license": "Apache-2.0",
936
+ "dependencies": {
937
+ "bare-stream": "^2.0.0"
938
+ }
939
+ },
940
+ "node_modules/base-x": {
941
+ "version": "4.0.1",
942
+ "license": "MIT"
943
+ },
944
+ "node_modules/bech32": {
945
+ "version": "2.0.0",
946
+ "license": "MIT"
947
+ },
948
+ "node_modules/bindings": {
949
+ "version": "1.5.0",
950
+ "license": "MIT",
951
+ "dependencies": {
952
+ "file-uri-to-path": "1.0.0"
953
+ }
954
+ },
955
+ "node_modules/bip174": {
956
+ "version": "2.1.1",
957
+ "license": "MIT",
958
+ "engines": {
959
+ "node": ">=8.0.0"
960
+ }
961
+ },
962
+ "node_modules/bip32": {
963
+ "version": "4.0.0",
964
+ "license": "MIT",
965
+ "dependencies": {
966
+ "@noble/hashes": "^1.2.0",
967
+ "@scure/base": "^1.1.1",
968
+ "typeforce": "^1.11.5",
969
+ "wif": "^2.0.6"
970
+ },
971
+ "engines": {
972
+ "node": ">=6.0.0"
973
+ }
974
+ },
975
+ "node_modules/bip39": {
976
+ "version": "3.1.0",
977
+ "license": "ISC",
978
+ "dependencies": {
979
+ "@noble/hashes": "^1.2.0"
980
+ }
981
+ },
982
+ "node_modules/bip66": {
983
+ "version": "1.1.5",
984
+ "license": "MIT",
985
+ "dependencies": {
986
+ "safe-buffer": "^5.0.1"
987
+ }
988
+ },
989
+ "node_modules/bip68": {
990
+ "version": "1.0.4",
991
+ "license": "ISC",
992
+ "engines": {
993
+ "node": ">=4.5.0"
994
+ }
995
+ },
996
+ "node_modules/bitcoinjs-lib": {
997
+ "version": "6.1.7",
998
+ "license": "MIT",
999
+ "dependencies": {
1000
+ "@noble/hashes": "^1.2.0",
1001
+ "bech32": "^2.0.0",
1002
+ "bip174": "^2.1.1",
1003
+ "bs58check": "^3.0.1",
1004
+ "typeforce": "^1.11.3",
1005
+ "varuint-bitcoin": "^1.1.2"
1006
+ },
1007
+ "engines": {
1008
+ "node": ">=8.0.0"
1009
+ }
1010
+ },
1011
+ "node_modules/bitcoinjs-message": {
1012
+ "version": "2.2.0",
1013
+ "license": "MIT",
1014
+ "dependencies": {
1015
+ "bech32": "^1.1.3",
1016
+ "bs58check": "^2.1.2",
1017
+ "buffer-equals": "^1.0.3",
1018
+ "create-hash": "^1.1.2",
1019
+ "secp256k1": "^3.0.1",
1020
+ "varuint-bitcoin": "^1.0.1"
1021
+ },
1022
+ "engines": {
1023
+ "node": ">=0.10"
1024
+ }
1025
+ },
1026
+ "node_modules/bitcoinjs-message/node_modules/base-x": {
1027
+ "version": "3.0.11",
1028
+ "license": "MIT",
1029
+ "dependencies": {
1030
+ "safe-buffer": "^5.0.1"
1031
+ }
1032
+ },
1033
+ "node_modules/bitcoinjs-message/node_modules/bech32": {
1034
+ "version": "1.1.4",
1035
+ "license": "MIT"
1036
+ },
1037
+ "node_modules/bitcoinjs-message/node_modules/bs58": {
1038
+ "version": "4.0.1",
1039
+ "license": "MIT",
1040
+ "dependencies": {
1041
+ "base-x": "^3.0.2"
1042
+ }
1043
+ },
1044
+ "node_modules/bitcoinjs-message/node_modules/bs58check": {
1045
+ "version": "2.1.2",
1046
+ "license": "MIT",
1047
+ "dependencies": {
1048
+ "bs58": "^4.0.0",
1049
+ "create-hash": "^1.1.0",
1050
+ "safe-buffer": "^5.1.2"
1051
+ }
1052
+ },
1053
+ "node_modules/bn.js": {
1054
+ "version": "4.12.3",
1055
+ "license": "MIT"
1056
+ },
1057
+ "node_modules/brorand": {
1058
+ "version": "1.1.0",
1059
+ "license": "MIT"
1060
+ },
1061
+ "node_modules/browserify-aes": {
1062
+ "version": "1.2.0",
1063
+ "license": "MIT",
1064
+ "dependencies": {
1065
+ "buffer-xor": "^1.0.3",
1066
+ "cipher-base": "^1.0.0",
1067
+ "create-hash": "^1.1.0",
1068
+ "evp_bytestokey": "^1.0.3",
1069
+ "inherits": "^2.0.1",
1070
+ "safe-buffer": "^5.0.1"
1071
+ }
1072
+ },
1073
+ "node_modules/bs58": {
1074
+ "version": "5.0.0",
1075
+ "license": "MIT",
1076
+ "dependencies": {
1077
+ "base-x": "^4.0.0"
1078
+ }
1079
+ },
1080
+ "node_modules/bs58check": {
1081
+ "version": "3.0.1",
1082
+ "license": "MIT",
1083
+ "dependencies": {
1084
+ "@noble/hashes": "^1.2.0",
1085
+ "bs58": "^5.0.0"
1086
+ }
1087
+ },
1088
+ "node_modules/buffer-equals": {
1089
+ "version": "1.0.4",
1090
+ "license": "MIT",
1091
+ "engines": {
1092
+ "node": ">=0.10.0"
1093
+ }
1094
+ },
1095
+ "node_modules/buffer-xor": {
1096
+ "version": "1.0.3",
1097
+ "license": "MIT"
1098
+ },
1099
+ "node_modules/call-bind": {
1100
+ "version": "1.0.8",
1101
+ "license": "MIT",
1102
+ "dependencies": {
1103
+ "call-bind-apply-helpers": "^1.0.0",
1104
+ "es-define-property": "^1.0.0",
1105
+ "get-intrinsic": "^1.2.4",
1106
+ "set-function-length": "^1.2.2"
1107
+ },
1108
+ "engines": {
1109
+ "node": ">= 0.4"
1110
+ },
1111
+ "funding": {
1112
+ "url": "https://github.com/sponsors/ljharb"
1113
+ }
1114
+ },
1115
+ "node_modules/call-bind-apply-helpers": {
1116
+ "version": "1.0.2",
1117
+ "license": "MIT",
1118
+ "dependencies": {
1119
+ "es-errors": "^1.3.0",
1120
+ "function-bind": "^1.1.2"
1121
+ },
1122
+ "engines": {
1123
+ "node": ">= 0.4"
1124
+ }
1125
+ },
1126
+ "node_modules/call-bound": {
1127
+ "version": "1.0.4",
1128
+ "license": "MIT",
1129
+ "dependencies": {
1130
+ "call-bind-apply-helpers": "^1.0.2",
1131
+ "get-intrinsic": "^1.3.0"
1132
+ },
1133
+ "engines": {
1134
+ "node": ">= 0.4"
1135
+ },
1136
+ "funding": {
1137
+ "url": "https://github.com/sponsors/ljharb"
1138
+ }
1139
+ },
1140
+ "node_modules/cipher-base": {
1141
+ "version": "1.0.7",
1142
+ "license": "MIT",
1143
+ "dependencies": {
1144
+ "inherits": "^2.0.4",
1145
+ "safe-buffer": "^5.2.1",
1146
+ "to-buffer": "^1.2.2"
1147
+ },
1148
+ "engines": {
1149
+ "node": ">= 0.10"
1150
+ }
1151
+ },
1152
+ "node_modules/compact-encoding": {
1153
+ "version": "2.19.1",
1154
+ "license": "Apache-2.0",
1155
+ "dependencies": {
1156
+ "b4a": "^1.3.0"
1157
+ }
1158
+ },
1159
+ "node_modules/core-util-is": {
1160
+ "version": "1.0.3",
1161
+ "license": "MIT"
1162
+ },
1163
+ "node_modules/create-hash": {
1164
+ "version": "1.2.0",
1165
+ "license": "MIT",
1166
+ "dependencies": {
1167
+ "cipher-base": "^1.0.1",
1168
+ "inherits": "^2.0.1",
1169
+ "md5.js": "^1.3.4",
1170
+ "ripemd160": "^2.0.1",
1171
+ "sha.js": "^2.4.0"
1172
+ }
1173
+ },
1174
+ "node_modules/create-hmac": {
1175
+ "version": "1.1.7",
1176
+ "license": "MIT",
1177
+ "dependencies": {
1178
+ "cipher-base": "^1.0.3",
1179
+ "create-hash": "^1.1.0",
1180
+ "inherits": "^2.0.1",
1181
+ "ripemd160": "^2.0.0",
1182
+ "safe-buffer": "^5.0.1",
1183
+ "sha.js": "^2.4.8"
1184
+ }
1185
+ },
1186
+ "node_modules/define-data-property": {
1187
+ "version": "1.1.4",
1188
+ "license": "MIT",
1189
+ "dependencies": {
1190
+ "es-define-property": "^1.0.0",
1191
+ "es-errors": "^1.3.0",
1192
+ "gopd": "^1.0.1"
1193
+ },
1194
+ "engines": {
1195
+ "node": ">= 0.4"
1196
+ },
1197
+ "funding": {
1198
+ "url": "https://github.com/sponsors/ljharb"
1199
+ }
1200
+ },
1201
+ "node_modules/dotenv": {
1202
+ "version": "16.6.1",
1203
+ "license": "BSD-2-Clause",
1204
+ "engines": {
1205
+ "node": ">=12"
1206
+ },
1207
+ "funding": {
1208
+ "url": "https://dotenvx.com"
1209
+ }
1210
+ },
1211
+ "node_modules/drbg.js": {
1212
+ "version": "1.0.1",
1213
+ "license": "MIT",
1214
+ "dependencies": {
1215
+ "browserify-aes": "^1.0.6",
1216
+ "create-hash": "^1.1.2",
1217
+ "create-hmac": "^1.1.4"
1218
+ },
1219
+ "engines": {
1220
+ "node": ">=0.10"
1221
+ }
1222
+ },
1223
+ "node_modules/dunder-proto": {
1224
+ "version": "1.0.1",
1225
+ "license": "MIT",
1226
+ "dependencies": {
1227
+ "call-bind-apply-helpers": "^1.0.1",
1228
+ "es-errors": "^1.3.0",
1229
+ "gopd": "^1.2.0"
1230
+ },
1231
+ "engines": {
1232
+ "node": ">= 0.4"
1233
+ }
1234
+ },
1235
+ "node_modules/ecpair": {
1236
+ "version": "2.1.0",
1237
+ "license": "MIT",
1238
+ "dependencies": {
1239
+ "randombytes": "^2.1.0",
1240
+ "typeforce": "^1.18.0",
1241
+ "wif": "^2.0.6"
1242
+ },
1243
+ "engines": {
1244
+ "node": ">=8.0.0"
1245
+ }
1246
+ },
1247
+ "node_modules/elliptic": {
1248
+ "version": "6.6.1",
1249
+ "license": "MIT",
1250
+ "dependencies": {
1251
+ "bn.js": "^4.11.9",
1252
+ "brorand": "^1.1.0",
1253
+ "hash.js": "^1.0.0",
1254
+ "hmac-drbg": "^1.0.1",
1255
+ "inherits": "^2.0.4",
1256
+ "minimalistic-assert": "^1.0.1",
1257
+ "minimalistic-crypto-utils": "^1.0.1"
1258
+ }
1259
+ },
1260
+ "node_modules/es-define-property": {
1261
+ "version": "1.0.1",
1262
+ "license": "MIT",
1263
+ "engines": {
1264
+ "node": ">= 0.4"
1265
+ }
1266
+ },
1267
+ "node_modules/es-errors": {
1268
+ "version": "1.3.0",
1269
+ "license": "MIT",
1270
+ "engines": {
1271
+ "node": ">= 0.4"
1272
+ }
1273
+ },
1274
+ "node_modules/es-object-atoms": {
1275
+ "version": "1.1.1",
1276
+ "license": "MIT",
1277
+ "dependencies": {
1278
+ "es-errors": "^1.3.0"
1279
+ },
1280
+ "engines": {
1281
+ "node": ">= 0.4"
1282
+ }
1283
+ },
1284
+ "node_modules/events-universal": {
1285
+ "version": "1.0.1",
1286
+ "license": "Apache-2.0",
1287
+ "dependencies": {
1288
+ "bare-events": "^2.7.0"
1289
+ }
1290
+ },
1291
+ "node_modules/evp_bytestokey": {
1292
+ "version": "1.0.3",
1293
+ "license": "MIT",
1294
+ "dependencies": {
1295
+ "md5.js": "^1.3.4",
1296
+ "safe-buffer": "^5.1.1"
1297
+ }
1298
+ },
1299
+ "node_modules/fast-fifo": {
1300
+ "version": "1.3.2",
1301
+ "license": "MIT"
1302
+ },
1303
+ "node_modules/file-uri-to-path": {
1304
+ "version": "1.0.0",
1305
+ "license": "MIT"
1306
+ },
1307
+ "node_modules/for-each": {
1308
+ "version": "0.3.5",
1309
+ "license": "MIT",
1310
+ "dependencies": {
1311
+ "is-callable": "^1.2.7"
1312
+ },
1313
+ "engines": {
1314
+ "node": ">= 0.4"
1315
+ },
1316
+ "funding": {
1317
+ "url": "https://github.com/sponsors/ljharb"
1318
+ }
1319
+ },
1320
+ "node_modules/function-bind": {
1321
+ "version": "1.1.2",
1322
+ "license": "MIT",
1323
+ "funding": {
1324
+ "url": "https://github.com/sponsors/ljharb"
1325
+ }
1326
+ },
1327
+ "node_modules/get-intrinsic": {
1328
+ "version": "1.3.0",
1329
+ "license": "MIT",
1330
+ "dependencies": {
1331
+ "call-bind-apply-helpers": "^1.0.2",
1332
+ "es-define-property": "^1.0.1",
1333
+ "es-errors": "^1.3.0",
1334
+ "es-object-atoms": "^1.1.1",
1335
+ "function-bind": "^1.1.2",
1336
+ "get-proto": "^1.0.1",
1337
+ "gopd": "^1.2.0",
1338
+ "has-symbols": "^1.1.0",
1339
+ "hasown": "^2.0.2",
1340
+ "math-intrinsics": "^1.1.0"
1341
+ },
1342
+ "engines": {
1343
+ "node": ">= 0.4"
1344
+ },
1345
+ "funding": {
1346
+ "url": "https://github.com/sponsors/ljharb"
1347
+ }
1348
+ },
1349
+ "node_modules/get-proto": {
1350
+ "version": "1.0.1",
1351
+ "license": "MIT",
1352
+ "dependencies": {
1353
+ "dunder-proto": "^1.0.1",
1354
+ "es-object-atoms": "^1.0.0"
1355
+ },
1356
+ "engines": {
1357
+ "node": ">= 0.4"
1358
+ }
1359
+ },
1360
+ "node_modules/gopd": {
1361
+ "version": "1.2.0",
1362
+ "license": "MIT",
1363
+ "engines": {
1364
+ "node": ">= 0.4"
1365
+ },
1366
+ "funding": {
1367
+ "url": "https://github.com/sponsors/ljharb"
1368
+ }
1369
+ },
1370
+ "node_modules/has-property-descriptors": {
1371
+ "version": "1.0.2",
1372
+ "license": "MIT",
1373
+ "dependencies": {
1374
+ "es-define-property": "^1.0.0"
1375
+ },
1376
+ "funding": {
1377
+ "url": "https://github.com/sponsors/ljharb"
1378
+ }
1379
+ },
1380
+ "node_modules/has-symbols": {
1381
+ "version": "1.1.0",
1382
+ "license": "MIT",
1383
+ "engines": {
1384
+ "node": ">= 0.4"
1385
+ },
1386
+ "funding": {
1387
+ "url": "https://github.com/sponsors/ljharb"
1388
+ }
1389
+ },
1390
+ "node_modules/has-tostringtag": {
1391
+ "version": "1.0.2",
1392
+ "license": "MIT",
1393
+ "dependencies": {
1394
+ "has-symbols": "^1.0.3"
1395
+ },
1396
+ "engines": {
1397
+ "node": ">= 0.4"
1398
+ },
1399
+ "funding": {
1400
+ "url": "https://github.com/sponsors/ljharb"
1401
+ }
1402
+ },
1403
+ "node_modules/hash-base": {
1404
+ "version": "3.1.2",
1405
+ "license": "MIT",
1406
+ "dependencies": {
1407
+ "inherits": "^2.0.4",
1408
+ "readable-stream": "^2.3.8",
1409
+ "safe-buffer": "^5.2.1",
1410
+ "to-buffer": "^1.2.1"
1411
+ },
1412
+ "engines": {
1413
+ "node": ">= 0.8"
1414
+ }
1415
+ },
1416
+ "node_modules/hash.js": {
1417
+ "version": "1.1.7",
1418
+ "license": "MIT",
1419
+ "dependencies": {
1420
+ "inherits": "^2.0.3",
1421
+ "minimalistic-assert": "^1.0.1"
1422
+ }
1423
+ },
1424
+ "node_modules/hasown": {
1425
+ "version": "2.0.2",
1426
+ "license": "MIT",
1427
+ "dependencies": {
1428
+ "function-bind": "^1.1.2"
1429
+ },
1430
+ "engines": {
1431
+ "node": ">= 0.4"
1432
+ }
1433
+ },
1434
+ "node_modules/hmac-drbg": {
1435
+ "version": "1.0.1",
1436
+ "license": "MIT",
1437
+ "dependencies": {
1438
+ "hash.js": "^1.0.3",
1439
+ "minimalistic-assert": "^1.0.0",
1440
+ "minimalistic-crypto-utils": "^1.0.1"
1441
+ }
1442
+ },
1443
+ "node_modules/inherits": {
1444
+ "version": "2.0.4",
1445
+ "license": "ISC"
1446
+ },
1447
+ "node_modules/is-callable": {
1448
+ "version": "1.2.7",
1449
+ "license": "MIT",
1450
+ "engines": {
1451
+ "node": ">= 0.4"
1452
+ },
1453
+ "funding": {
1454
+ "url": "https://github.com/sponsors/ljharb"
1455
+ }
1456
+ },
1457
+ "node_modules/is-typed-array": {
1458
+ "version": "1.1.15",
1459
+ "license": "MIT",
1460
+ "dependencies": {
1461
+ "which-typed-array": "^1.1.16"
1462
+ },
1463
+ "engines": {
1464
+ "node": ">= 0.4"
1465
+ },
1466
+ "funding": {
1467
+ "url": "https://github.com/sponsors/ljharb"
1468
+ }
1469
+ },
1470
+ "node_modules/isarray": {
1471
+ "version": "1.0.0",
1472
+ "license": "MIT"
1473
+ },
1474
+ "node_modules/lodash.memoize": {
1475
+ "version": "4.1.2",
1476
+ "license": "MIT"
1477
+ },
1478
+ "node_modules/lru-cache": {
1479
+ "version": "11.2.2",
1480
+ "license": "ISC",
1481
+ "engines": {
1482
+ "node": "20 || >=22"
1483
+ }
1484
+ },
1485
+ "node_modules/math-intrinsics": {
1486
+ "version": "1.1.0",
1487
+ "license": "MIT",
1488
+ "engines": {
1489
+ "node": ">= 0.4"
1490
+ }
1491
+ },
1492
+ "node_modules/md5.js": {
1493
+ "version": "1.3.5",
1494
+ "license": "MIT",
1495
+ "dependencies": {
1496
+ "hash-base": "^3.0.0",
1497
+ "inherits": "^2.0.1",
1498
+ "safe-buffer": "^5.1.2"
1499
+ }
1500
+ },
1501
+ "node_modules/minimalistic-assert": {
1502
+ "version": "1.0.1",
1503
+ "license": "ISC"
1504
+ },
1505
+ "node_modules/minimalistic-crypto-utils": {
1506
+ "version": "1.0.1",
1507
+ "license": "MIT"
1508
+ },
1509
+ "node_modules/nan": {
1510
+ "version": "2.26.2",
1511
+ "license": "MIT"
1512
+ },
1513
+ "node_modules/p-limit": {
1514
+ "version": "7.1.1",
1515
+ "license": "MIT",
1516
+ "dependencies": {
1517
+ "yocto-queue": "^1.2.1"
1518
+ },
1519
+ "engines": {
1520
+ "node": ">=20"
1521
+ },
1522
+ "funding": {
1523
+ "url": "https://github.com/sponsors/sindresorhus"
1524
+ }
1525
+ },
1526
+ "node_modules/possible-typed-array-names": {
1527
+ "version": "1.1.0",
1528
+ "license": "MIT",
1529
+ "engines": {
1530
+ "node": ">= 0.4"
1531
+ }
1532
+ },
1533
+ "node_modules/process-nextick-args": {
1534
+ "version": "2.0.1",
1535
+ "license": "MIT"
1536
+ },
1537
+ "node_modules/punycode": {
1538
+ "version": "2.3.1",
1539
+ "license": "MIT",
1540
+ "engines": {
1541
+ "node": ">=6"
1542
+ }
1543
+ },
1544
+ "node_modules/randombytes": {
1545
+ "version": "2.1.0",
1546
+ "license": "MIT",
1547
+ "dependencies": {
1548
+ "safe-buffer": "^5.1.0"
1549
+ }
1550
+ },
1551
+ "node_modules/readable-stream": {
1552
+ "version": "2.3.8",
1553
+ "license": "MIT",
1554
+ "dependencies": {
1555
+ "core-util-is": "~1.0.0",
1556
+ "inherits": "~2.0.3",
1557
+ "isarray": "~1.0.0",
1558
+ "process-nextick-args": "~2.0.0",
1559
+ "safe-buffer": "~5.1.1",
1560
+ "string_decoder": "~1.1.1",
1561
+ "util-deprecate": "~1.0.1"
1562
+ }
1563
+ },
1564
+ "node_modules/readable-stream/node_modules/safe-buffer": {
1565
+ "version": "5.1.2",
1566
+ "license": "MIT"
1567
+ },
1568
+ "node_modules/require-addon": {
1569
+ "version": "1.2.0",
1570
+ "license": "Apache-2.0",
1571
+ "dependencies": {
1572
+ "bare-addon-resolve": "^1.3.0"
1573
+ },
1574
+ "engines": {
1575
+ "bare": ">=1.10.0"
1576
+ }
1577
+ },
1578
+ "node_modules/ripemd160": {
1579
+ "version": "2.0.3",
1580
+ "license": "MIT",
1581
+ "dependencies": {
1582
+ "hash-base": "^3.1.2",
1583
+ "inherits": "^2.0.4"
1584
+ },
1585
+ "engines": {
1586
+ "node": ">= 0.8"
1587
+ }
1588
+ },
1589
+ "node_modules/safe-buffer": {
1590
+ "version": "5.2.1",
1591
+ "funding": [
1592
+ {
1593
+ "type": "github",
1594
+ "url": "https://github.com/sponsors/feross"
1595
+ },
1596
+ {
1597
+ "type": "patreon",
1598
+ "url": "https://www.patreon.com/feross"
1599
+ },
1600
+ {
1601
+ "type": "consulting",
1602
+ "url": "https://feross.org/support"
1603
+ }
1604
+ ],
1605
+ "license": "MIT"
1606
+ },
1607
+ "node_modules/secp256k1": {
1608
+ "version": "3.8.1",
1609
+ "hasInstallScript": true,
1610
+ "license": "MIT",
1611
+ "dependencies": {
1612
+ "bindings": "^1.5.0",
1613
+ "bip66": "^1.1.5",
1614
+ "bn.js": "^4.11.8",
1615
+ "create-hash": "^1.2.0",
1616
+ "drbg.js": "^1.0.1",
1617
+ "elliptic": "^6.5.7",
1618
+ "nan": "^2.14.0",
1619
+ "safe-buffer": "^5.1.2"
1620
+ },
1621
+ "engines": {
1622
+ "node": ">=4.0.0"
1623
+ }
1624
+ },
1625
+ "node_modules/set-function-length": {
1626
+ "version": "1.2.2",
1627
+ "license": "MIT",
1628
+ "dependencies": {
1629
+ "define-data-property": "^1.1.4",
1630
+ "es-errors": "^1.3.0",
1631
+ "function-bind": "^1.1.2",
1632
+ "get-intrinsic": "^1.2.4",
1633
+ "gopd": "^1.0.1",
1634
+ "has-property-descriptors": "^1.0.2"
1635
+ },
1636
+ "engines": {
1637
+ "node": ">= 0.4"
1638
+ }
1639
+ },
1640
+ "node_modules/sha.js": {
1641
+ "version": "2.4.12",
1642
+ "license": "(MIT AND BSD-3-Clause)",
1643
+ "dependencies": {
1644
+ "inherits": "^2.0.4",
1645
+ "safe-buffer": "^5.2.1",
1646
+ "to-buffer": "^1.2.0"
1647
+ },
1648
+ "bin": {
1649
+ "sha.js": "bin.js"
1650
+ },
1651
+ "engines": {
1652
+ "node": ">= 0.10"
1653
+ },
1654
+ "funding": {
1655
+ "url": "https://github.com/sponsors/ljharb"
1656
+ }
1657
+ },
1658
+ "node_modules/sodium-native": {
1659
+ "version": "5.1.0",
1660
+ "license": "MIT",
1661
+ "dependencies": {
1662
+ "bare-assert": "^1.2.0",
1663
+ "require-addon": "^1.1.0",
1664
+ "which-runtime": "^1.2.1"
1665
+ },
1666
+ "engines": {
1667
+ "bare": ">=1.16.0"
1668
+ }
1669
+ },
1670
+ "node_modules/sodium-universal": {
1671
+ "version": "5.0.1",
1672
+ "license": "MIT",
1673
+ "dependencies": {
1674
+ "sodium-native": "^5.0.1"
1675
+ },
1676
+ "peerDependencies": {
1677
+ "sodium-javascript": "~0.8.0"
1678
+ },
1679
+ "peerDependenciesMeta": {
1680
+ "sodium-javascript": {
1681
+ "optional": true
1682
+ }
1683
+ }
1684
+ },
1685
+ "node_modules/streamx": {
1686
+ "version": "2.25.0",
1687
+ "license": "MIT",
1688
+ "dependencies": {
1689
+ "events-universal": "^1.0.0",
1690
+ "fast-fifo": "^1.3.2",
1691
+ "text-decoder": "^1.1.0"
1692
+ }
1693
+ },
1694
+ "node_modules/string_decoder": {
1695
+ "version": "1.1.1",
1696
+ "license": "MIT",
1697
+ "dependencies": {
1698
+ "safe-buffer": "~5.1.0"
1699
+ }
1700
+ },
1701
+ "node_modules/string_decoder/node_modules/safe-buffer": {
1702
+ "version": "5.1.2",
1703
+ "license": "MIT"
1704
+ },
1705
+ "node_modules/teex": {
1706
+ "version": "1.0.1",
1707
+ "license": "MIT",
1708
+ "dependencies": {
1709
+ "streamx": "^2.12.5"
1710
+ }
1711
+ },
1712
+ "node_modules/text-decoder": {
1713
+ "version": "1.2.7",
1714
+ "license": "Apache-2.0",
1715
+ "dependencies": {
1716
+ "b4a": "^1.6.4"
1717
+ }
1718
+ },
1719
+ "node_modules/to-buffer": {
1720
+ "version": "1.2.2",
1721
+ "license": "MIT",
1722
+ "dependencies": {
1723
+ "isarray": "^2.0.5",
1724
+ "safe-buffer": "^5.2.1",
1725
+ "typed-array-buffer": "^1.0.3"
1726
+ },
1727
+ "engines": {
1728
+ "node": ">= 0.4"
1729
+ }
1730
+ },
1731
+ "node_modules/to-buffer/node_modules/isarray": {
1732
+ "version": "2.0.5",
1733
+ "license": "MIT"
1734
+ },
1735
+ "node_modules/typed-array-buffer": {
1736
+ "version": "1.0.3",
1737
+ "license": "MIT",
1738
+ "dependencies": {
1739
+ "call-bound": "^1.0.3",
1740
+ "es-errors": "^1.3.0",
1741
+ "is-typed-array": "^1.1.14"
1742
+ },
1743
+ "engines": {
1744
+ "node": ">= 0.4"
1745
+ }
1746
+ },
1747
+ "node_modules/typeforce": {
1748
+ "version": "1.18.0",
1749
+ "license": "MIT"
1750
+ },
1751
+ "node_modules/udx-native": {
1752
+ "version": "1.19.2",
1753
+ "license": "Apache-2.0",
1754
+ "dependencies": {
1755
+ "b4a": "^1.5.0",
1756
+ "bare-events": "^2.2.0",
1757
+ "require-addon": "^1.1.0",
1758
+ "streamx": "^2.22.0"
1759
+ },
1760
+ "engines": {
1761
+ "bare": ">=1.17.4"
1762
+ }
1763
+ },
1764
+ "node_modules/util-deprecate": {
1765
+ "version": "1.0.2",
1766
+ "license": "MIT"
1767
+ },
1768
+ "node_modules/varuint-bitcoin": {
1769
+ "version": "1.1.2",
1770
+ "license": "MIT",
1771
+ "dependencies": {
1772
+ "safe-buffer": "^5.1.1"
1773
+ }
1774
+ },
1775
+ "node_modules/which-runtime": {
1776
+ "version": "1.3.2",
1777
+ "license": "Apache-2.0"
1778
+ },
1779
+ "node_modules/which-typed-array": {
1780
+ "version": "1.1.20",
1781
+ "license": "MIT",
1782
+ "dependencies": {
1783
+ "available-typed-arrays": "^1.0.7",
1784
+ "call-bind": "^1.0.8",
1785
+ "call-bound": "^1.0.4",
1786
+ "for-each": "^0.3.5",
1787
+ "get-proto": "^1.0.1",
1788
+ "gopd": "^1.2.0",
1789
+ "has-tostringtag": "^1.0.2"
1790
+ },
1791
+ "engines": {
1792
+ "node": ">= 0.4"
1793
+ },
1794
+ "funding": {
1795
+ "url": "https://github.com/sponsors/ljharb"
1796
+ }
1797
+ },
1798
+ "node_modules/wif": {
1799
+ "version": "2.0.6",
1800
+ "license": "MIT",
1801
+ "dependencies": {
1802
+ "bs58check": "<3.0.0"
1803
+ }
1804
+ },
1805
+ "node_modules/wif/node_modules/base-x": {
1806
+ "version": "3.0.11",
1807
+ "license": "MIT",
1808
+ "dependencies": {
1809
+ "safe-buffer": "^5.0.1"
1810
+ }
1811
+ },
1812
+ "node_modules/wif/node_modules/bs58": {
1813
+ "version": "4.0.1",
1814
+ "license": "MIT",
1815
+ "dependencies": {
1816
+ "base-x": "^3.0.2"
1817
+ }
1818
+ },
1819
+ "node_modules/wif/node_modules/bs58check": {
1820
+ "version": "2.1.2",
1821
+ "license": "MIT",
1822
+ "dependencies": {
1823
+ "bs58": "^4.0.0",
1824
+ "create-hash": "^1.1.0",
1825
+ "safe-buffer": "^5.1.2"
1826
+ }
1827
+ },
1828
+ "node_modules/yocto-queue": {
1829
+ "version": "1.2.2",
1830
+ "license": "MIT",
1831
+ "engines": {
1832
+ "node": ">=12.20"
1833
+ },
1834
+ "funding": {
1835
+ "url": "https://github.com/sponsors/sindresorhus"
1836
+ }
1837
+ }
1838
+ }
1839
+ }