@bitgo/sdk-core 1.0.1 → 1.1.0-rc.1

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 (53) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/dist/src/account-lib/baseCoin/baseKeyPair.d.ts +27 -0
  3. package/dist/src/account-lib/baseCoin/baseKeyPair.d.ts.map +1 -0
  4. package/dist/src/account-lib/baseCoin/baseKeyPair.js +3 -0
  5. package/dist/src/account-lib/baseCoin/baseTransaction.d.ts +71 -0
  6. package/dist/src/account-lib/baseCoin/baseTransaction.d.ts.map +1 -0
  7. package/dist/src/account-lib/baseCoin/baseTransaction.js +69 -0
  8. package/dist/src/account-lib/baseCoin/baseTransactionBuilder.d.ts +128 -0
  9. package/dist/src/account-lib/baseCoin/baseTransactionBuilder.d.ts.map +1 -0
  10. package/dist/src/account-lib/baseCoin/baseTransactionBuilder.js +138 -0
  11. package/dist/src/account-lib/baseCoin/baseTransactionBuilderFactory.d.ts +29 -0
  12. package/dist/src/account-lib/baseCoin/baseTransactionBuilderFactory.d.ts.map +1 -0
  13. package/dist/src/account-lib/baseCoin/baseTransactionBuilderFactory.js +19 -0
  14. package/dist/src/account-lib/baseCoin/baseUtils.d.ts +45 -0
  15. package/dist/src/account-lib/baseCoin/baseUtils.d.ts.map +1 -0
  16. package/dist/src/account-lib/baseCoin/baseUtils.js +3 -0
  17. package/dist/src/account-lib/baseCoin/blsKeyPair.d.ts +75 -0
  18. package/dist/src/account-lib/baseCoin/blsKeyPair.d.ts.map +1 -0
  19. package/dist/src/account-lib/baseCoin/blsKeyPair.js +179 -0
  20. package/dist/src/account-lib/baseCoin/ed25519KeyPair.d.ts +50 -0
  21. package/dist/src/account-lib/baseCoin/ed25519KeyPair.d.ts.map +1 -0
  22. package/dist/src/account-lib/baseCoin/ed25519KeyPair.js +145 -0
  23. package/dist/src/account-lib/baseCoin/enum.d.ts +43 -0
  24. package/dist/src/account-lib/baseCoin/enum.d.ts.map +1 -0
  25. package/dist/src/account-lib/baseCoin/enum.js +70 -0
  26. package/dist/src/account-lib/baseCoin/errors.d.ts +65 -0
  27. package/dist/src/account-lib/baseCoin/errors.d.ts.map +1 -0
  28. package/dist/src/account-lib/baseCoin/errors.js +114 -0
  29. package/dist/src/account-lib/baseCoin/iface.d.ts +162 -0
  30. package/dist/src/account-lib/baseCoin/iface.d.ts.map +1 -0
  31. package/dist/src/account-lib/baseCoin/iface.js +38 -0
  32. package/dist/src/account-lib/baseCoin/index.d.ts +12 -0
  33. package/dist/src/account-lib/baseCoin/index.d.ts.map +1 -0
  34. package/dist/src/account-lib/baseCoin/index.js +31 -0
  35. package/dist/src/account-lib/baseCoin/secp256k1ExtendedKeyPair.d.ts +55 -0
  36. package/dist/src/account-lib/baseCoin/secp256k1ExtendedKeyPair.d.ts.map +1 -0
  37. package/dist/src/account-lib/baseCoin/secp256k1ExtendedKeyPair.js +124 -0
  38. package/dist/src/account-lib/index.d.ts +4 -0
  39. package/dist/src/account-lib/index.d.ts.map +1 -0
  40. package/dist/src/account-lib/index.js +16 -0
  41. package/dist/src/account-lib/util/crypto.d.ts +106 -0
  42. package/dist/src/account-lib/util/crypto.d.ts.map +1 -0
  43. package/dist/src/account-lib/util/crypto.js +269 -0
  44. package/dist/src/account-lib/util/ed25519KeyDeriver.d.ts +49 -0
  45. package/dist/src/account-lib/util/ed25519KeyDeriver.d.ts.map +1 -0
  46. package/dist/src/account-lib/util/ed25519KeyDeriver.js +87 -0
  47. package/dist/src/index.d.ts +1 -0
  48. package/dist/src/index.d.ts.map +1 -1
  49. package/dist/src/index.js +2 -1
  50. package/dist/src/v2/environments.d.ts.map +1 -1
  51. package/dist/src/v2/environments.js +2 -2
  52. package/dist/tsconfig.tsbuildinfo +1679 -118
  53. package/package.json +23 -12
@@ -196,7 +196,7 @@
196
196
  "signature": "506b80b9951c9381dc5f11897b31fca5e2a65731d96ddefa19687fbc26b23c6e",
197
197
  "affectsGlobalScope": true
198
198
  },
199
- "../src/bigojsError.ts": {
199
+ "../src/bigojserror.ts": {
200
200
  "version": "c52a0da37f3e3da6039848cc58ccd652a3b7624c6caf8f0629ec1726e4a4cf9b",
201
201
  "signature": "06b80be02f2da3ec8aba93c32cd97e22abc8577be6a80b6bc22bcea7c7079fd7",
202
202
  "affectsGlobalScope": false
@@ -272,7 +272,7 @@
272
272
  "affectsGlobalScope": false
273
273
  },
274
274
  "../src/v2/environments.ts": {
275
- "version": "b6aa0ae0897f0396159323d37981337d61e04ec494753bd4c1711864409115d4",
275
+ "version": "5aa7a94472da930f1d6aca2702ce07b35339f1613545087000c85931383854b0",
276
276
  "signature": "77c0096e2419b04036cac2fbff4d2ba95a097a01df328bb2b20c4ccc51251f00",
277
277
  "affectsGlobalScope": false
278
278
  },
@@ -286,9 +286,49 @@
286
286
  "signature": "8520524cc2b6a69a6a8d874b784233a0f163d0d410da6f5912c799b2f7240cda",
287
287
  "affectsGlobalScope": false
288
288
  },
289
- "../src/index.ts": {
290
- "version": "7c2f0f760dcd9b0a91e41e26b6359e279b8c74933c538652a774bd502d0267f4",
291
- "signature": "73968bff060adc9004565476c8f1be7217ef939fc2f83e9e6fec37bdf01d8f35",
289
+ "../../statics/dist/src/networks.d.ts": {
290
+ "version": "a0b0aaee094c42a67b0bd93fde9c7ee09ade93b02f49d077fddbeeee46cc31ba",
291
+ "signature": "a0b0aaee094c42a67b0bd93fde9c7ee09ade93b02f49d077fddbeeee46cc31ba",
292
+ "affectsGlobalScope": false
293
+ },
294
+ "../../statics/dist/src/base.d.ts": {
295
+ "version": "84b227323f78607873454aed3ab57ee20ae787a6038ca6b9d6c040d391f98f33",
296
+ "signature": "84b227323f78607873454aed3ab57ee20ae787a6038ca6b9d6c040d391f98f33",
297
+ "affectsGlobalScope": false
298
+ },
299
+ "../../statics/dist/src/map.d.ts": {
300
+ "version": "15b9480d48ca80c146619e323ac449b2de500370434caf40138cf8656cf187bc",
301
+ "signature": "15b9480d48ca80c146619e323ac449b2de500370434caf40138cf8656cf187bc",
302
+ "affectsGlobalScope": false
303
+ },
304
+ "../../statics/dist/src/coins.d.ts": {
305
+ "version": "601447b3eeb6af532c1c4dcfcd248f84a3c22782f0b00f161119a773095b04d0",
306
+ "signature": "601447b3eeb6af532c1c4dcfcd248f84a3c22782f0b00f161119a773095b04d0",
307
+ "affectsGlobalScope": false
308
+ },
309
+ "../../statics/dist/src/errors.d.ts": {
310
+ "version": "e876f96ae506c3e4144c5e60005f52949b58ada255b5352ae580a5b9652f8d57",
311
+ "signature": "e876f96ae506c3e4144c5e60005f52949b58ada255b5352ae580a5b9652f8d57",
312
+ "affectsGlobalScope": false
313
+ },
314
+ "../../statics/dist/src/ofc.d.ts": {
315
+ "version": "388e9c521c006726ac50f48fc2ce2f94f3878495d9fa2f611a3fb977a703d2fb",
316
+ "signature": "388e9c521c006726ac50f48fc2ce2f94f3878495d9fa2f611a3fb977a703d2fb",
317
+ "affectsGlobalScope": false
318
+ },
319
+ "../../statics/dist/src/utxo.d.ts": {
320
+ "version": "b81d550b95d3e646309bdc55b56fbd6a92d6894f21f64846cd5d1900c989423f",
321
+ "signature": "b81d550b95d3e646309bdc55b56fbd6a92d6894f21f64846cd5d1900c989423f",
322
+ "affectsGlobalScope": false
323
+ },
324
+ "../../statics/dist/src/account.d.ts": {
325
+ "version": "379d2251821c3750a57c9b266c7111fd0899d251dbe3e7c26de1c413baabb56e",
326
+ "signature": "379d2251821c3750a57c9b266c7111fd0899d251dbe3e7c26de1c413baabb56e",
327
+ "affectsGlobalScope": false
328
+ },
329
+ "../../statics/dist/src/index.d.ts": {
330
+ "version": "7c5a913c2345be9ee1c7f4bf9ee14feaf2b5071a83c64e6e706294cbfd107308",
331
+ "signature": "7c5a913c2345be9ee1c7f4bf9ee14feaf2b5071a83c64e6e706294cbfd107308",
292
332
  "affectsGlobalScope": false
293
333
  },
294
334
  "../../../node_modules/bignumber.js/bignumber.d.ts": {
@@ -296,24 +336,49 @@
296
336
  "signature": "1d7d9e42cb2cc36dfc7ce35755ce67d5ff0f4a2ef72d3019f4c461bfd22123da",
297
337
  "affectsGlobalScope": false
298
338
  },
299
- "../../../types/bignumber.js/index.d.ts": {
300
- "version": "7440b4a4b965c74745cbbafdf32366de82b7dea1bdb85a472770a888d5201ff7",
301
- "signature": "7440b4a4b965c74745cbbafdf32366de82b7dea1bdb85a472770a888d5201ff7",
339
+ "../src/account-lib/basecoin/errors.ts": {
340
+ "version": "351ebd7cd8b57a6787549aa7447483f9f7e34c068509a8d08a46c17a4f3a6308",
341
+ "signature": "6e5f7358251923120cc05575b8d0e8077df0fd12ad03811bdd87a258fa71fc5a",
302
342
  "affectsGlobalScope": false
303
343
  },
304
- "../../../types/express/index.d.ts": {
305
- "version": "70f0ddc58f8b7283e1cffa39863938ab694e14fb3dcf0cac4d78b2d002f91255",
306
- "signature": "70f0ddc58f8b7283e1cffa39863938ab694e14fb3dcf0cac4d78b2d002f91255",
307
- "affectsGlobalScope": true
344
+ "../src/account-lib/basecoin/basetransactionbuilder.ts": {
345
+ "version": "94b9c6c1769ffe2c2986d561329dbd3e7508af6b41081916c6eb6d4bb24726a3",
346
+ "signature": "57e56b7ba4aaa93ea71d2cc6edcd8d76327e8cf63cb248fe93afd4fdbd732ec1",
347
+ "affectsGlobalScope": false
308
348
  },
309
- "../../../node_modules/should/should.d.ts": {
310
- "version": "79da89e1b61cecf107f52a0c2578f31528bc0accdc73bec7325f468a5706a559",
311
- "signature": "79da89e1b61cecf107f52a0c2578f31528bc0accdc73bec7325f468a5706a559",
312
- "affectsGlobalScope": true
349
+ "../src/account-lib/basecoin/basetransactionbuilderfactory.ts": {
350
+ "version": "1460929e2ae39ec90c36b483f5aa081957f5190701521affadca1327c75aa761",
351
+ "signature": "ef485ee43bbd8e74a3b4bc614a9cb5a3a7855a9102018159c272e22d38823c45",
352
+ "affectsGlobalScope": false
313
353
  },
314
- "../../../types/should-sinon/index.d.ts": {
315
- "version": "7ecc65228508df150b89095bee857e6306f44fa179c9f625613b1cef9e0c1883",
316
- "signature": "7ecc65228508df150b89095bee857e6306f44fa179c9f625613b1cef9e0c1883",
354
+ "../src/account-lib/basecoin/iface.ts": {
355
+ "version": "c9d1fd0606dcf25fa87c9ee079257f8afffd936ccdd199b64a153f44742648d7",
356
+ "signature": "1fa13cbdf8565f726d7d315ff4509d415967192d0d6df64d3e841657c024b0e5",
357
+ "affectsGlobalScope": false
358
+ },
359
+ "../src/account-lib/basecoin/enum.ts": {
360
+ "version": "c0753051676aac0c84626fe337ca6a6f31bf821d284a2766e264c7c505085e1e",
361
+ "signature": "01483ed2f339cc953f0a47699dbfaef990639f6e477e8c91448c397d6c7d51ef",
362
+ "affectsGlobalScope": false
363
+ },
364
+ "../src/account-lib/basecoin/basetransaction.ts": {
365
+ "version": "ae5e15c4ee2a43cde794e05dcba0a62769a44c8b49a13220ccbd3f78a6064409",
366
+ "signature": "8bdc9b1c40bfe6bae4a5d1d283dc40af77ffbd8f49fa0f02242b2ab9d7b5a3fd",
367
+ "affectsGlobalScope": false
368
+ },
369
+ "../src/account-lib/basecoin/baseutils.ts": {
370
+ "version": "60f1976fa671c2bedd4bab63c6b5d6441153fa7cde081e711875683365ed9d86",
371
+ "signature": "c8f09d1ceb9205104994673d40a4b3e3a7057e6ea6c2ff97b5b1e5b84ce34d53",
372
+ "affectsGlobalScope": false
373
+ },
374
+ "../src/account-lib/basecoin/basekeypair.ts": {
375
+ "version": "29c889672a037cd997f86e8987cb1cf0a1f990da0ee2c3ef419e9eb9a898d5bd",
376
+ "signature": "e97c8f3aa7ef7fecd709b62d111b1094479b284a44881bee32cb9c2c6738825c",
377
+ "affectsGlobalScope": false
378
+ },
379
+ "../../../node_modules/tweetnacl/nacl.d.ts": {
380
+ "version": "60592f5ae1b739c9607a99895d4a3ad5c865b16903e4180e50b256e360a4a104",
381
+ "signature": "60592f5ae1b739c9607a99895d4a3ad5c865b16903e4180e50b256e360a4a104",
317
382
  "affectsGlobalScope": false
318
383
  },
319
384
  "../../../node_modules/@types/node/assert.d.ts": {
@@ -571,6 +636,241 @@
571
636
  "signature": "9cafe917bf667f1027b2bb62e2de454ecd2119c80873ad76fc41d941089753b8",
572
637
  "affectsGlobalScope": false
573
638
  },
639
+ "../../../node_modules/bip32/types/bip32.d.ts": {
640
+ "version": "25d0893cf285d63492c8a0506bec26ac7e4790d46b5c582a89dd5ab9bc248c7a",
641
+ "signature": "25d0893cf285d63492c8a0506bec26ac7e4790d46b5c582a89dd5ab9bc248c7a",
642
+ "affectsGlobalScope": false
643
+ },
644
+ "../../../node_modules/bip32/types/index.d.ts": {
645
+ "version": "f74fee4ed5f77ed9e8ee0b2b6105cd5f0f123b64bbeeee7be551ec65a89a0ef4",
646
+ "signature": "f74fee4ed5f77ed9e8ee0b2b6105cd5f0f123b64bbeeee7be551ec65a89a0ef4",
647
+ "affectsGlobalScope": false
648
+ },
649
+ "../../../node_modules/bitcoinjs-lib/types/networks.d.ts": {
650
+ "version": "692cce8a36696e9df80910c05ae3b34340c278bbba03701a9ae92ae038663824",
651
+ "signature": "692cce8a36696e9df80910c05ae3b34340c278bbba03701a9ae92ae038663824",
652
+ "affectsGlobalScope": false
653
+ },
654
+ "../../../node_modules/bitcoinjs-lib/types/address.d.ts": {
655
+ "version": "035fd4564409153531cc683821b48048fd01982a8522c120b5a17f9a6320a229",
656
+ "signature": "035fd4564409153531cc683821b48048fd01982a8522c120b5a17f9a6320a229",
657
+ "affectsGlobalScope": false
658
+ },
659
+ "../../../node_modules/bitcoinjs-lib/types/classify.d.ts": {
660
+ "version": "1e9d8ebf3dfc7a42b29ea823ebbc333e6f37c6a890d5b13cc67958870c066fb7",
661
+ "signature": "1e9d8ebf3dfc7a42b29ea823ebbc333e6f37c6a890d5b13cc67958870c066fb7",
662
+ "affectsGlobalScope": false
663
+ },
664
+ "../../../node_modules/bitcoinjs-lib/types/crypto.d.ts": {
665
+ "version": "efa5b896b87da636844d0ab1d49ebf8951c07cd3814f664ad820af582fec60d7",
666
+ "signature": "efa5b896b87da636844d0ab1d49ebf8951c07cd3814f664ad820af582fec60d7",
667
+ "affectsGlobalScope": false
668
+ },
669
+ "../../../node_modules/bitcoinjs-lib/types/ecpair.d.ts": {
670
+ "version": "6d9f651e04cb8c78f8f2409978a1f137925a75c53561709a6cfd85d6a3bd1655",
671
+ "signature": "6d9f651e04cb8c78f8f2409978a1f137925a75c53561709a6cfd85d6a3bd1655",
672
+ "affectsGlobalScope": false
673
+ },
674
+ "../../../node_modules/bitcoinjs-lib/types/payments/embed.d.ts": {
675
+ "version": "a29a7b9ade7876d0f527b716a5bc5c7bc84554d155577020441f2d3c735589be",
676
+ "signature": "a29a7b9ade7876d0f527b716a5bc5c7bc84554d155577020441f2d3c735589be",
677
+ "affectsGlobalScope": false
678
+ },
679
+ "../../../node_modules/bitcoinjs-lib/types/payments/p2ms.d.ts": {
680
+ "version": "9cd42ff83837551961fa8788f14bd3498306fb2c1d35358f2b6bf3af05bf0890",
681
+ "signature": "9cd42ff83837551961fa8788f14bd3498306fb2c1d35358f2b6bf3af05bf0890",
682
+ "affectsGlobalScope": false
683
+ },
684
+ "../../../node_modules/bitcoinjs-lib/types/payments/p2pk.d.ts": {
685
+ "version": "5e51773d5624b8c871d8d140c88f944466338673fbc60ac4bf409eb60e6665cf",
686
+ "signature": "5e51773d5624b8c871d8d140c88f944466338673fbc60ac4bf409eb60e6665cf",
687
+ "affectsGlobalScope": false
688
+ },
689
+ "../../../node_modules/bitcoinjs-lib/types/payments/p2pkh.d.ts": {
690
+ "version": "39b10cd95b70bbdc1cf8c832002618c3f81cd980438fe5e3694d99286ef90911",
691
+ "signature": "39b10cd95b70bbdc1cf8c832002618c3f81cd980438fe5e3694d99286ef90911",
692
+ "affectsGlobalScope": false
693
+ },
694
+ "../../../node_modules/bitcoinjs-lib/types/payments/p2sh.d.ts": {
695
+ "version": "95244212208717085038a74378ea2a03e49c06a3a195b2826c01c978f14684c2",
696
+ "signature": "95244212208717085038a74378ea2a03e49c06a3a195b2826c01c978f14684c2",
697
+ "affectsGlobalScope": false
698
+ },
699
+ "../../../node_modules/bitcoinjs-lib/types/payments/p2tr.d.ts": {
700
+ "version": "c91084ba90468037b6d266f3cae698aaa76c0864cf076aa099d981d847b74c2d",
701
+ "signature": "c91084ba90468037b6d266f3cae698aaa76c0864cf076aa099d981d847b74c2d",
702
+ "affectsGlobalScope": false
703
+ },
704
+ "../../../node_modules/bitcoinjs-lib/types/payments/p2tr_ns.d.ts": {
705
+ "version": "dc58c9eb8817b8c46f40712df9e588c0c70357931f5ebebb3aa445949de993c8",
706
+ "signature": "dc58c9eb8817b8c46f40712df9e588c0c70357931f5ebebb3aa445949de993c8",
707
+ "affectsGlobalScope": false
708
+ },
709
+ "../../../node_modules/bitcoinjs-lib/types/payments/p2wpkh.d.ts": {
710
+ "version": "7362eeca79ce50eb72b2a0149e323f6d64daf4fbc8067592310859622c3dbcfe",
711
+ "signature": "7362eeca79ce50eb72b2a0149e323f6d64daf4fbc8067592310859622c3dbcfe",
712
+ "affectsGlobalScope": false
713
+ },
714
+ "../../../node_modules/bitcoinjs-lib/types/payments/p2wsh.d.ts": {
715
+ "version": "8c0a305a7b10513d9d07bf739456bf9845bd4336027c85442b674a417facb57a",
716
+ "signature": "8c0a305a7b10513d9d07bf739456bf9845bd4336027c85442b674a417facb57a",
717
+ "affectsGlobalScope": false
718
+ },
719
+ "../../../node_modules/bitcoinjs-lib/types/payments/index.d.ts": {
720
+ "version": "a0f499bc2d4bee1d480dc670db36c4656beac3e93cabc68c27625484f549484d",
721
+ "signature": "a0f499bc2d4bee1d480dc670db36c4656beac3e93cabc68c27625484f549484d",
722
+ "affectsGlobalScope": false
723
+ },
724
+ "../../../node_modules/bitcoinjs-lib/types/schnorrbip340.d.ts": {
725
+ "version": "c139fc3a11a170f34d076d65e40f7a52357a688a0507ba6b20d6fe276cd24c8a",
726
+ "signature": "c139fc3a11a170f34d076d65e40f7a52357a688a0507ba6b20d6fe276cd24c8a",
727
+ "affectsGlobalScope": false
728
+ },
729
+ "../../../node_modules/bitcoinjs-lib/types/script_number.d.ts": {
730
+ "version": "973d36af083ce019e3c38b99ca43cb6815b47082cf1e07215387df336192f447",
731
+ "signature": "973d36af083ce019e3c38b99ca43cb6815b47082cf1e07215387df336192f447",
732
+ "affectsGlobalScope": false
733
+ },
734
+ "../../../node_modules/bitcoinjs-lib/types/script_signature.d.ts": {
735
+ "version": "617012176a8cb5be290ae89040aac88ec74321c2a8b984f01a7ba6eb9a2eddc2",
736
+ "signature": "617012176a8cb5be290ae89040aac88ec74321c2a8b984f01a7ba6eb9a2eddc2",
737
+ "affectsGlobalScope": false
738
+ },
739
+ "../../../node_modules/bitcoinjs-lib/types/script.d.ts": {
740
+ "version": "452cea0fd78e7cc56bc4d54979f79625f50f0ee33213c51b8d361dca80dc9175",
741
+ "signature": "452cea0fd78e7cc56bc4d54979f79625f50f0ee33213c51b8d361dca80dc9175",
742
+ "affectsGlobalScope": false
743
+ },
744
+ "../../../node_modules/bitcoinjs-lib/types/taproot.d.ts": {
745
+ "version": "b63ba9f527c74718667338d6ca3ba3b35429500f7d63196e54d86a4ef28b36b4",
746
+ "signature": "b63ba9f527c74718667338d6ca3ba3b35429500f7d63196e54d86a4ef28b36b4",
747
+ "affectsGlobalScope": false
748
+ },
749
+ "../../../node_modules/bitcoinjs-lib/types/transaction.d.ts": {
750
+ "version": "fc2aced12725e81bbdb9e55a0efe1060cd4b6bbb6d1a5a23a09236a18c2d2323",
751
+ "signature": "fc2aced12725e81bbdb9e55a0efe1060cd4b6bbb6d1a5a23a09236a18c2d2323",
752
+ "affectsGlobalScope": false
753
+ },
754
+ "../../../node_modules/bitcoinjs-lib/types/block.d.ts": {
755
+ "version": "7340d9ad1f3f55e7be3a85a151ef25d7a8c0205904519940c9dcea0f61cb3292",
756
+ "signature": "7340d9ad1f3f55e7be3a85a151ef25d7a8c0205904519940c9dcea0f61cb3292",
757
+ "affectsGlobalScope": false
758
+ },
759
+ "../../../node_modules/bip174/src/lib/interfaces.d.ts": {
760
+ "version": "28fb03121a168f316264faaa3904381a3e902e008ab2e4350aefa5d9ccc48772",
761
+ "signature": "28fb03121a168f316264faaa3904381a3e902e008ab2e4350aefa5d9ccc48772",
762
+ "affectsGlobalScope": false
763
+ },
764
+ "../../../node_modules/bip174/src/lib/psbt.d.ts": {
765
+ "version": "3da723823982206178406b7c2b8570152c6347a047fa7e59fa46011d10ac26b6",
766
+ "signature": "3da723823982206178406b7c2b8570152c6347a047fa7e59fa46011d10ac26b6",
767
+ "affectsGlobalScope": false
768
+ },
769
+ "../../../node_modules/bitcoinjs-lib/types/psbt.d.ts": {
770
+ "version": "bddbf55f3238e6865800b6be9b1f7c6ecdd5049607109b35d0af2a3c4e24f48d",
771
+ "signature": "bddbf55f3238e6865800b6be9b1f7c6ecdd5049607109b35d0af2a3c4e24f48d",
772
+ "affectsGlobalScope": false
773
+ },
774
+ "../../../node_modules/bitcoinjs-lib/types/transaction_builder.d.ts": {
775
+ "version": "0354d500ee48bde1e4112b767fa58fe56eb9a790204aa0113ffd7aa8a046e01c",
776
+ "signature": "0354d500ee48bde1e4112b767fa58fe56eb9a790204aa0113ffd7aa8a046e01c",
777
+ "affectsGlobalScope": false
778
+ },
779
+ "../../../node_modules/bitcoinjs-lib/types/index.d.ts": {
780
+ "version": "9e278c765662847ae3711e917bce92d00fdb3724bf54cd3fcef5cb06039bd810",
781
+ "signature": "9e278c765662847ae3711e917bce92d00fdb3724bf54cd3fcef5cb06039bd810",
782
+ "affectsGlobalScope": false
783
+ },
784
+ "../../../node_modules/@stablelib/hex/lib/hex.d.ts": {
785
+ "version": "a79d5df3df6d6688b6b33cb5970757b89350ec8cca6696a9637fd8431e751766",
786
+ "signature": "a79d5df3df6d6688b6b33cb5970757b89350ec8cca6696a9637fd8431e751766",
787
+ "affectsGlobalScope": false
788
+ },
789
+ "../../../node_modules/noble-bls12-381/math.d.ts": {
790
+ "version": "ec6bebedf1805dc3459fb9b92746a2e330c9f018d1561207662b8509ab0b0782",
791
+ "signature": "ec6bebedf1805dc3459fb9b92746a2e330c9f018d1561207662b8509ab0b0782",
792
+ "affectsGlobalScope": false
793
+ },
794
+ "../../../node_modules/noble-bls12-381/index.d.ts": {
795
+ "version": "43e0ecc04c2dd89eafe3db81f3db486129fcacf9adba9fd4e10f90afca21656a",
796
+ "signature": "43e0ecc04c2dd89eafe3db81f3db486129fcacf9adba9fd4e10f90afca21656a",
797
+ "affectsGlobalScope": false
798
+ },
799
+ "../../../node_modules/base-x/src/index.d.ts": {
800
+ "version": "e91751abb2372a36a90869d36f6ad5d5e69a84c5513ca99d236554e4dd8b9aa1",
801
+ "signature": "e91751abb2372a36a90869d36f6ad5d5e69a84c5513ca99d236554e4dd8b9aa1",
802
+ "affectsGlobalScope": false
803
+ },
804
+ "../../../node_modules/@types/bs58/index.d.ts": {
805
+ "version": "5cbc27193321e6ba10f4e9f3c5519649d9e2716cf103efd7eaa7a89e0f8ed1d4",
806
+ "signature": "5cbc27193321e6ba10f4e9f3c5519649d9e2716cf103efd7eaa7a89e0f8ed1d4",
807
+ "affectsGlobalScope": false
808
+ },
809
+ "../src/account-lib/util/crypto.ts": {
810
+ "version": "78324abe792da57cfc588a791650cd96dcb5d6c74d1a6ec34c7a73ef332a8e24",
811
+ "signature": "e55c486a6fd3de69fc60ae70aea53f3776041d25ef0cf298ef6f582d875230fa",
812
+ "affectsGlobalScope": false
813
+ },
814
+ "../../../node_modules/@types/create-hmac/index.d.ts": {
815
+ "version": "f5011428f5bc27b1e1624e627a9c455185a15b762f23e4cdbdaf82e2dff767b9",
816
+ "signature": "f5011428f5bc27b1e1624e627a9c455185a15b762f23e4cdbdaf82e2dff767b9",
817
+ "affectsGlobalScope": false
818
+ },
819
+ "../src/account-lib/util/ed25519keyderiver.ts": {
820
+ "version": "09b354895c0d689c6b46cb2914a25d897907d35a395b487cbb2d83729cb182a3",
821
+ "signature": "0ec637dad45e4b4c85667013f17064264702fe07dafb71f66b3fa3d575a8d9b6",
822
+ "affectsGlobalScope": false
823
+ },
824
+ "../src/account-lib/basecoin/ed25519keypair.ts": {
825
+ "version": "69b8afa16dbbdf46881166149e51302acf8ffe062874d557ea631ec3691b66a8",
826
+ "signature": "feaaf67e0dae707bbf1336c97ccf0cfe88acadd54c14eef4a5781fdc4af539a7",
827
+ "affectsGlobalScope": false
828
+ },
829
+ "../src/account-lib/basecoin/blskeypair.ts": {
830
+ "version": "c7f62771400762d82302f4bc4b7d8ebae365c9b77a1512b664935a9dcc719995",
831
+ "signature": "db816dbd951deea934d1b684ec69537b56f645d374ceb3078bd62c75f50046de",
832
+ "affectsGlobalScope": false
833
+ },
834
+ "../src/account-lib/basecoin/secp256k1extendedkeypair.ts": {
835
+ "version": "874f1c5c98de81d50ca1c7b0dc312e0107c2f295a00e4cc9062d58c75fddd940",
836
+ "signature": "4b8cfd4ea3c402cd6e8d5455c1ec6f2833b9dee16d78079603bc042d2caf7ca7",
837
+ "affectsGlobalScope": false
838
+ },
839
+ "../src/account-lib/basecoin/index.ts": {
840
+ "version": "d3cb5ddfe3ea1f7fb03c62e70b155dfc55776c2a9bddc42973fd1a6725bc9ee8",
841
+ "signature": "ecb9167b5362720735aded469a61d077ea6884446b2c6c1921a4dcc4d887ff54",
842
+ "affectsGlobalScope": false
843
+ },
844
+ "../src/account-lib/index.ts": {
845
+ "version": "a8ccc254dd1ef4abcd7901eda9ebb380f57bb884262aa698bb2b2abf622c942b",
846
+ "signature": "ef2d8d8ffb9dc8ea0927d480d2c2ce44c883a11d9bedbe1eb72bd97e2f68f4b4",
847
+ "affectsGlobalScope": false
848
+ },
849
+ "../src/index.ts": {
850
+ "version": "1ce5499b7dbd34b4d6a5d62f9306782d3e47705ea3ac43ef84103fd57b5023f2",
851
+ "signature": "a607669d2bca387d0ce6849af11256037d3363066ad37855ddeacc0dfee47abd",
852
+ "affectsGlobalScope": false
853
+ },
854
+ "../../../types/bignumber.js/index.d.ts": {
855
+ "version": "7440b4a4b965c74745cbbafdf32366de82b7dea1bdb85a472770a888d5201ff7",
856
+ "signature": "7440b4a4b965c74745cbbafdf32366de82b7dea1bdb85a472770a888d5201ff7",
857
+ "affectsGlobalScope": false
858
+ },
859
+ "../../../types/express/index.d.ts": {
860
+ "version": "70f0ddc58f8b7283e1cffa39863938ab694e14fb3dcf0cac4d78b2d002f91255",
861
+ "signature": "70f0ddc58f8b7283e1cffa39863938ab694e14fb3dcf0cac4d78b2d002f91255",
862
+ "affectsGlobalScope": true
863
+ },
864
+ "../../../node_modules/should/should.d.ts": {
865
+ "version": "79da89e1b61cecf107f52a0c2578f31528bc0accdc73bec7325f468a5706a559",
866
+ "signature": "79da89e1b61cecf107f52a0c2578f31528bc0accdc73bec7325f468a5706a559",
867
+ "affectsGlobalScope": true
868
+ },
869
+ "../../../types/should-sinon/index.d.ts": {
870
+ "version": "7ecc65228508df150b89095bee857e6306f44fa179c9f625613b1cef9e0c1883",
871
+ "signature": "7ecc65228508df150b89095bee857e6306f44fa179c9f625613b1cef9e0c1883",
872
+ "affectsGlobalScope": false
873
+ },
574
874
  "../../../node_modules/@types/cookiejar/index.d.ts": {
575
875
  "version": "8d48b8f8a377ade8dd1f000625bc276eea067f2529cc9cafdf082d17142107d6",
576
876
  "signature": "8d48b8f8a377ade8dd1f000625bc276eea067f2529cc9cafdf082d17142107d6",
@@ -601,6 +901,11 @@
601
901
  "signature": "dc3b172ee27054dbcedcf5007b78c256021db936f6313a9ce9a3ecbb503fd646",
602
902
  "affectsGlobalScope": false
603
903
  },
904
+ "../../../node_modules/@types/aria-query/index.d.ts": {
905
+ "version": "5024433f8da3a7968f6d12cffd32f2cefae4442a9ad1c965fa2d23342338b700",
906
+ "signature": "5024433f8da3a7968f6d12cffd32f2cefae4442a9ad1c965fa2d23342338b700",
907
+ "affectsGlobalScope": false
908
+ },
604
909
  "../../../node_modules/@types/bluebird/index.d.ts": {
605
910
  "version": "338bd7c3518b05b4c473971be0e5f8f854aca7cdb00d1b97192c14860f4ebf2f",
606
911
  "signature": "338bd7c3518b05b4c473971be0e5f8f854aca7cdb00d1b97192c14860f4ebf2f",
@@ -621,14 +926,29 @@
621
926
  "signature": "afc559c1b93df37c25aef6b3dfa2d64325b0e112e887ee18bf7e6f4ec383fc90",
622
927
  "affectsGlobalScope": false
623
928
  },
624
- "../../../node_modules/base-x/src/index.d.ts": {
625
- "version": "e91751abb2372a36a90869d36f6ad5d5e69a84c5513ca99d236554e4dd8b9aa1",
626
- "signature": "e91751abb2372a36a90869d36f6ad5d5e69a84c5513ca99d236554e4dd8b9aa1",
929
+ "../../../node_modules/@types/bonjour/index.d.ts": {
930
+ "version": "d78e5898c8de5e0f934eee83f680262de005caa268d137101b833fd932f95e07",
931
+ "signature": "d78e5898c8de5e0f934eee83f680262de005caa268d137101b833fd932f95e07",
627
932
  "affectsGlobalScope": false
628
933
  },
629
- "../../../node_modules/@types/bs58/index.d.ts": {
630
- "version": "5cbc27193321e6ba10f4e9f3c5519649d9e2716cf103efd7eaa7a89e0f8ed1d4",
631
- "signature": "5cbc27193321e6ba10f4e9f3c5519649d9e2716cf103efd7eaa7a89e0f8ed1d4",
934
+ "../../../node_modules/@types/range-parser/index.d.ts": {
935
+ "version": "16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c",
936
+ "signature": "16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c",
937
+ "affectsGlobalScope": false
938
+ },
939
+ "../../../node_modules/@types/qs/index.d.ts": {
940
+ "version": "ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc",
941
+ "signature": "ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc",
942
+ "affectsGlobalScope": false
943
+ },
944
+ "../../../node_modules/@types/express-serve-static-core/index.d.ts": {
945
+ "version": "d2f7baf43dfa349d4010cbd9d64d84cdf3ec26c65fa5f44c8f74f052bedd0b49",
946
+ "signature": "d2f7baf43dfa349d4010cbd9d64d84cdf3ec26c65fa5f44c8f74f052bedd0b49",
947
+ "affectsGlobalScope": true
948
+ },
949
+ "../../../node_modules/@types/connect-history-api-fallback/index.d.ts": {
950
+ "version": "56cbe80e6c42d7e6e66b6f048add8b01c663797b843a074d9f19c4a3d63a269a",
951
+ "signature": "56cbe80e6c42d7e6e66b6f048add8b01c663797b843a074d9f19c4a3d63a269a",
632
952
  "affectsGlobalScope": false
633
953
  },
634
954
  "../../../node_modules/@types/country-data/index.d.ts": {
@@ -636,11 +956,6 @@
636
956
  "signature": "961162d2c2a86091832002f61b810676411eff71be20cfc5676f6e90b07b8235",
637
957
  "affectsGlobalScope": false
638
958
  },
639
- "../../../node_modules/@types/create-hmac/index.d.ts": {
640
- "version": "f5011428f5bc27b1e1624e627a9c455185a15b762f23e4cdbdaf82e2dff767b9",
641
- "signature": "f5011428f5bc27b1e1624e627a9c455185a15b762f23e4cdbdaf82e2dff767b9",
642
- "affectsGlobalScope": false
643
- },
644
959
  "../../../node_modules/@types/ms/index.d.ts": {
645
960
  "version": "6a9c5127096b35264eb7cd21b2417bfc1d42cceca9ba4ce2bb0c3410b7816042",
646
961
  "signature": "6a9c5127096b35264eb7cd21b2417bfc1d42cceca9ba4ce2bb0c3410b7816042",
@@ -716,21 +1031,6 @@
716
1031
  "signature": "975f84de013567851d216d78a3a86736bb330cae11fdc907b222dffa148b31d2",
717
1032
  "affectsGlobalScope": false
718
1033
  },
719
- "../../../node_modules/@types/range-parser/index.d.ts": {
720
- "version": "16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c",
721
- "signature": "16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c",
722
- "affectsGlobalScope": false
723
- },
724
- "../../../node_modules/@types/qs/index.d.ts": {
725
- "version": "ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc",
726
- "signature": "ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc",
727
- "affectsGlobalScope": false
728
- },
729
- "../../../node_modules/@types/express-serve-static-core/index.d.ts": {
730
- "version": "d2f7baf43dfa349d4010cbd9d64d84cdf3ec26c65fa5f44c8f74f052bedd0b49",
731
- "signature": "d2f7baf43dfa349d4010cbd9d64d84cdf3ec26c65fa5f44c8f74f052bedd0b49",
732
- "affectsGlobalScope": true
733
- },
734
1034
  "../../../node_modules/@types/fs-extra/index.d.ts": {
735
1035
  "version": "ed19da84b7dbf00952ad0b98ce5c194f1903bcf7c94d8103e8e0d63b271543ae",
736
1036
  "signature": "ed19da84b7dbf00952ad0b98ce5c194f1903bcf7c94d8103e8e0d63b271543ae",
@@ -751,11 +1051,46 @@
751
1051
  "signature": "603520edc473ed33d90f7598ebcca2e6c2fa2ad4393957a67482d9795f732c6d",
752
1052
  "affectsGlobalScope": true
753
1053
  },
1054
+ "../../../node_modules/@types/react/global.d.ts": {
1055
+ "version": "ecf78e637f710f340ec08d5d92b3f31b134a46a4fcf2e758690d8c46ce62cba6",
1056
+ "signature": "ecf78e637f710f340ec08d5d92b3f31b134a46a4fcf2e758690d8c46ce62cba6",
1057
+ "affectsGlobalScope": true
1058
+ },
1059
+ "../../../node_modules/csstype/index.d.ts": {
1060
+ "version": "ea0aa24a32c073b8639aa1f3130ba0add0f0f2f76b314d9ba988a5cb91d7e3c4",
1061
+ "signature": "ea0aa24a32c073b8639aa1f3130ba0add0f0f2f76b314d9ba988a5cb91d7e3c4",
1062
+ "affectsGlobalScope": false
1063
+ },
1064
+ "../../../node_modules/@types/prop-types/index.d.ts": {
1065
+ "version": "6a386ff939f180ae8ef064699d8b7b6e62bc2731a62d7fbf5e02589383838dea",
1066
+ "signature": "6a386ff939f180ae8ef064699d8b7b6e62bc2731a62d7fbf5e02589383838dea",
1067
+ "affectsGlobalScope": false
1068
+ },
1069
+ "../../../node_modules/@types/scheduler/tracing.d.ts": {
1070
+ "version": "f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",
1071
+ "signature": "f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",
1072
+ "affectsGlobalScope": false
1073
+ },
1074
+ "../../../node_modules/@types/react/index.d.ts": {
1075
+ "version": "7b4a3453c60663af7f58636bf4673bfcc540d83ce1c41b816a5cc2e924009880",
1076
+ "signature": "7b4a3453c60663af7f58636bf4673bfcc540d83ce1c41b816a5cc2e924009880",
1077
+ "affectsGlobalScope": true
1078
+ },
1079
+ "../../../node_modules/@types/hoist-non-react-statics/index.d.ts": {
1080
+ "version": "bfe1b52cf71aea9bf8815810cc5d9490fa9617313e3d3c2ee3809a28b80d0bb4",
1081
+ "signature": "bfe1b52cf71aea9bf8815810cc5d9490fa9617313e3d3c2ee3809a28b80d0bb4",
1082
+ "affectsGlobalScope": false
1083
+ },
754
1084
  "../../../node_modules/@types/html-minifier-terser/index.d.ts": {
755
1085
  "version": "ee65fe452abe1309389c5f50710f24114e08a302d40708101c4aa950a2a7d044",
756
1086
  "signature": "ee65fe452abe1309389c5f50710f24114e08a302d40708101c4aa950a2a7d044",
757
1087
  "affectsGlobalScope": false
758
1088
  },
1089
+ "../../../node_modules/@types/http-proxy/index.d.ts": {
1090
+ "version": "c1d5cc0286eef54f6246a972ec1720efbba6b7b0a53a303e1f2067ca229ecd16",
1091
+ "signature": "c1d5cc0286eef54f6246a972ec1720efbba6b7b0a53a303e1f2067ca229ecd16",
1092
+ "affectsGlobalScope": false
1093
+ },
759
1094
  "../../../node_modules/@types/jasmine/index.d.ts": {
760
1095
  "version": "40bfe085f4000d4b9e19660627190eed488ca950c7d9e5438a5ab4c6ed30d6ca",
761
1096
  "signature": "40bfe085f4000d4b9e19660627190eed488ca950c7d9e5438a5ab4c6ed30d6ca",
@@ -806,7 +1141,7 @@
806
1141
  "signature": "9c6b1825e26a38284f409378ff194eca46b40a659ca41169e0922fe18a996ad9",
807
1142
  "affectsGlobalScope": false
808
1143
  },
809
- "../../../node_modules/form-data/index.d.ts": {
1144
+ "../../../node_modules/@types/node-fetch/node_modules/form-data/index.d.ts": {
810
1145
  "version": "736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50",
811
1146
  "signature": "736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50",
812
1147
  "affectsGlobalScope": false
@@ -841,6 +1176,21 @@
841
1176
  "signature": "e109f5f766ef2fb64aa3c0a8918ebfb66c011f3f43611b536512675bc1d32834",
842
1177
  "affectsGlobalScope": false
843
1178
  },
1179
+ "../../../node_modules/@types/react-dom/index.d.ts": {
1180
+ "version": "af30b8feae6399905adeb5c938558e666dc81113ccf38032722583b95a65f9ab",
1181
+ "signature": "af30b8feae6399905adeb5c938558e666dc81113ccf38032722583b95a65f9ab",
1182
+ "affectsGlobalScope": false
1183
+ },
1184
+ "../../../node_modules/@types/retry/index.d.ts": {
1185
+ "version": "199f9ead0daf25ae4c5632e3d1f42570af59685294a38123eef457407e13f365",
1186
+ "signature": "199f9ead0daf25ae4c5632e3d1f42570af59685294a38123eef457407e13f365",
1187
+ "affectsGlobalScope": false
1188
+ },
1189
+ "../../../node_modules/@types/scheduler/index.d.ts": {
1190
+ "version": "74b0245c42990ed8a849df955db3f4362c81b13f799ebc981b7bec2d5b414a57",
1191
+ "signature": "74b0245c42990ed8a849df955db3f4362c81b13f799ebc981b7bec2d5b414a57",
1192
+ "affectsGlobalScope": false
1193
+ },
844
1194
  "../../../node_modules/@types/secp256k1/index.d.ts": {
845
1195
  "version": "3dce33e7eb25594863b8e615f14a45ab98190d85953436750644212d8a18c066",
846
1196
  "signature": "3dce33e7eb25594863b8e615f14a45ab98190d85953436750644212d8a18c066",
@@ -851,6 +1201,16 @@
851
1201
  "signature": "0b85cb069d0e427ba946e5eb2d86ef65ffd19867042810516d16919f6c1a5aec",
852
1202
  "affectsGlobalScope": false
853
1203
  },
1204
+ "../../../node_modules/@types/express/index.d.ts": {
1205
+ "version": "15c88bfd1b8dc7231ff828ae8df5d955bae5ebca4cf2bcb417af5821e52299ae",
1206
+ "signature": "15c88bfd1b8dc7231ff828ae8df5d955bae5ebca4cf2bcb417af5821e52299ae",
1207
+ "affectsGlobalScope": false
1208
+ },
1209
+ "../../../node_modules/@types/serve-index/index.d.ts": {
1210
+ "version": "acebfe99678cf7cddcddc3435222cf132052b1226e902daac9fbb495c321a9b5",
1211
+ "signature": "acebfe99678cf7cddcddc3435222cf132052b1226e902daac9fbb495c321a9b5",
1212
+ "affectsGlobalScope": false
1213
+ },
854
1214
  "../../../node_modules/@types/sha.js/index.d.ts": {
855
1215
  "version": "b6a6fb3519346f9cd67d89bb7455138328691b1780688fac1febe03ae3648cd9",
856
1216
  "signature": "b6a6fb3519346f9cd67d89bb7455138328691b1780688fac1febe03ae3648cd9",
@@ -866,11 +1226,46 @@
866
1226
  "signature": "f83b320cceccfc48457a818d18fc9a006ab18d0bdd727aa2c2e73dc1b4a45e98",
867
1227
  "affectsGlobalScope": false
868
1228
  },
1229
+ "../../../node_modules/@types/sizzle/index.d.ts": {
1230
+ "version": "ec89427601297d439c961528832a75017d9356bec2ee42c1d16f2274590d9330",
1231
+ "signature": "ec89427601297d439c961528832a75017d9356bec2ee42c1d16f2274590d9330",
1232
+ "affectsGlobalScope": false
1233
+ },
1234
+ "../../../node_modules/@types/sockjs/index.d.ts": {
1235
+ "version": "82b1f9a6eefef7386aebe22ac49f23b806421e82dbf35c6e5b7132d79e4165da",
1236
+ "signature": "82b1f9a6eefef7386aebe22ac49f23b806421e82dbf35c6e5b7132d79e4165da",
1237
+ "affectsGlobalScope": false
1238
+ },
1239
+ "../../../node_modules/@types/source-list-map/index.d.ts": {
1240
+ "version": "67fc055eb86a0632e2e072838f889ffe1754083cb13c8c80a06a7d895d877aae",
1241
+ "signature": "67fc055eb86a0632e2e072838f889ffe1754083cb13c8c80a06a7d895d877aae",
1242
+ "affectsGlobalScope": false
1243
+ },
1244
+ "../../../node_modules/@types/styled-components/index.d.ts": {
1245
+ "version": "a3bf3c1ad131df7a2b36c881232cf822c602396a88be8e3e3ece60e76e6fe8ee",
1246
+ "signature": "a3bf3c1ad131df7a2b36c881232cf822c602396a88be8e3e3ece60e76e6fe8ee",
1247
+ "affectsGlobalScope": true
1248
+ },
869
1249
  "../../../node_modules/@types/supertest/index.d.ts": {
870
1250
  "version": "76232dbb982272b182a76ad8745a9b02724dc9896e2328ce360e2c56c64c9778",
871
1251
  "signature": "76232dbb982272b182a76ad8745a9b02724dc9896e2328ce360e2c56c64c9778",
872
1252
  "affectsGlobalScope": false
873
1253
  },
1254
+ "../../../node_modules/@types/tapable/index.d.ts": {
1255
+ "version": "3833c70307dc3d2b46cb6f2a8b6a90e4d7e7367a21ab18c481d7de0909a43e67",
1256
+ "signature": "3833c70307dc3d2b46cb6f2a8b6a90e4d7e7367a21ab18c481d7de0909a43e67",
1257
+ "affectsGlobalScope": false
1258
+ },
1259
+ "../../../node_modules/source-map/source-map.d.ts": {
1260
+ "version": "2887592574fcdfd087647c539dcb0fbe5af2521270dad4a37f9d17c16190d579",
1261
+ "signature": "2887592574fcdfd087647c539dcb0fbe5af2521270dad4a37f9d17c16190d579",
1262
+ "affectsGlobalScope": false
1263
+ },
1264
+ "../../../node_modules/@types/uglify-js/index.d.ts": {
1265
+ "version": "c6c1427ba1efa270964d61564a3d99b59c0865a51dd55e4beb9f50e5c9aa8b51",
1266
+ "signature": "c6c1427ba1efa270964d61564a3d99b59c0865a51dd55e4beb9f50e5c9aa8b51",
1267
+ "affectsGlobalScope": false
1268
+ },
874
1269
  "../../../node_modules/@types/urijs/dom-monkeypatch.d.ts": {
875
1270
  "version": "159733de19927f949b83112a45b7c52ebc0bbad1605a668d5c19ba65e0ee9128",
876
1271
  "signature": "159733de19927f949b83112a45b7c52ebc0bbad1605a668d5c19ba65e0ee9128",
@@ -886,14 +1281,94 @@
886
1281
  "signature": "a6a80d576cb7beda26af64d1e0a23e382c9986fae214de994870f4cd7b4e0ea1",
887
1282
  "affectsGlobalScope": false
888
1283
  },
1284
+ "../../../node_modules/tapable/tapable.d.ts": {
1285
+ "version": "cd74c8275483d3fe0d07a9b4bba28845a8a611f0aa399e961dbd40e5d46dd9ad",
1286
+ "signature": "cd74c8275483d3fe0d07a9b4bba28845a8a611f0aa399e961dbd40e5d46dd9ad",
1287
+ "affectsGlobalScope": false
1288
+ },
1289
+ "../../../node_modules/anymatch/index.d.ts": {
1290
+ "version": "4fb0b7d532aa6fb850b6cd2f1ee4f00802d877b5c66a51903bc1fb0624126349",
1291
+ "signature": "4fb0b7d532aa6fb850b6cd2f1ee4f00802d877b5c66a51903bc1fb0624126349",
1292
+ "affectsGlobalScope": false
1293
+ },
1294
+ "../../../node_modules/@types/webpack-sources/node_modules/source-map/source-map.d.ts": {
1295
+ "version": "b90c59ac4682368a01c83881b814738eb151de8a58f52eb7edadea2bcffb11b9",
1296
+ "signature": "b90c59ac4682368a01c83881b814738eb151de8a58f52eb7edadea2bcffb11b9",
1297
+ "affectsGlobalScope": false
1298
+ },
1299
+ "../../../node_modules/@types/webpack-sources/lib/source.d.ts": {
1300
+ "version": "8560a87b2e9f8e2c3808c8f6172c9b7eb6c9b08cb9f937db71c285ecf292c81d",
1301
+ "signature": "8560a87b2e9f8e2c3808c8f6172c9b7eb6c9b08cb9f937db71c285ecf292c81d",
1302
+ "affectsGlobalScope": false
1303
+ },
1304
+ "../../../node_modules/@types/webpack-sources/lib/compatsource.d.ts": {
1305
+ "version": "ffe3931ff864f28d80ae2f33bd11123ad3d7bad9896b910a1e61504cc093e1f5",
1306
+ "signature": "ffe3931ff864f28d80ae2f33bd11123ad3d7bad9896b910a1e61504cc093e1f5",
1307
+ "affectsGlobalScope": false
1308
+ },
1309
+ "../../../node_modules/@types/webpack-sources/lib/concatsource.d.ts": {
1310
+ "version": "083c1bd82f8dc3a1ed6fc9e8eaddf141f7c05df418eca386598821e045253af9",
1311
+ "signature": "083c1bd82f8dc3a1ed6fc9e8eaddf141f7c05df418eca386598821e045253af9",
1312
+ "affectsGlobalScope": false
1313
+ },
1314
+ "../../../node_modules/@types/webpack-sources/lib/originalsource.d.ts": {
1315
+ "version": "274ebe605bd7f71ce161f9f5328febc7d547a2929f803f04b44ec4a7d8729517",
1316
+ "signature": "274ebe605bd7f71ce161f9f5328febc7d547a2929f803f04b44ec4a7d8729517",
1317
+ "affectsGlobalScope": false
1318
+ },
1319
+ "../../../node_modules/@types/webpack-sources/lib/prefixsource.d.ts": {
1320
+ "version": "6ca0207e70d985a24396583f55836b10dc181063ab6069733561bfde404d1bad",
1321
+ "signature": "6ca0207e70d985a24396583f55836b10dc181063ab6069733561bfde404d1bad",
1322
+ "affectsGlobalScope": false
1323
+ },
1324
+ "../../../node_modules/@types/webpack-sources/lib/rawsource.d.ts": {
1325
+ "version": "5908142efeaab38ffdf43927ee0af681ae77e0d7672b956dfb8b6c705dbfe106",
1326
+ "signature": "5908142efeaab38ffdf43927ee0af681ae77e0d7672b956dfb8b6c705dbfe106",
1327
+ "affectsGlobalScope": false
1328
+ },
1329
+ "../../../node_modules/@types/webpack-sources/lib/replacesource.d.ts": {
1330
+ "version": "f772b188b943549b5c5eb803133314b8aa7689eced80eed0b70e2f30ca07ab9c",
1331
+ "signature": "f772b188b943549b5c5eb803133314b8aa7689eced80eed0b70e2f30ca07ab9c",
1332
+ "affectsGlobalScope": false
1333
+ },
1334
+ "../../../node_modules/@types/webpack-sources/lib/sizeonlysource.d.ts": {
1335
+ "version": "0026b816ef05cfbf290e8585820eef0f13250438669107dfc44482bac007b14f",
1336
+ "signature": "0026b816ef05cfbf290e8585820eef0f13250438669107dfc44482bac007b14f",
1337
+ "affectsGlobalScope": false
1338
+ },
1339
+ "../../../node_modules/@types/webpack-sources/lib/sourcemapsource.d.ts": {
1340
+ "version": "05d64cc1118031b29786632a9a0f6d7cf1dcacb303f27023a466cf3cdc860538",
1341
+ "signature": "05d64cc1118031b29786632a9a0f6d7cf1dcacb303f27023a466cf3cdc860538",
1342
+ "affectsGlobalScope": false
1343
+ },
1344
+ "../../../node_modules/@types/webpack-sources/lib/index.d.ts": {
1345
+ "version": "e0fff9119e1a5d2fdd46345734126cd6cb99c2d98a9debf0257047fe3937cc3f",
1346
+ "signature": "e0fff9119e1a5d2fdd46345734126cd6cb99c2d98a9debf0257047fe3937cc3f",
1347
+ "affectsGlobalScope": false
1348
+ },
1349
+ "../../../node_modules/@types/webpack-sources/lib/cachedsource.d.ts": {
1350
+ "version": "d84398556ba4595ee6be554671da142cfe964cbdebb2f0c517a10f76f2b016c0",
1351
+ "signature": "d84398556ba4595ee6be554671da142cfe964cbdebb2f0c517a10f76f2b016c0",
1352
+ "affectsGlobalScope": false
1353
+ },
1354
+ "../../../node_modules/@types/webpack-sources/index.d.ts": {
1355
+ "version": "e275297155ec3251200abbb334c7f5641fecc68b2a9573e40eed50dff7584762",
1356
+ "signature": "e275297155ec3251200abbb334c7f5641fecc68b2a9573e40eed50dff7584762",
1357
+ "affectsGlobalScope": false
1358
+ },
1359
+ "../../../node_modules/@types/webpack/index.d.ts": {
1360
+ "version": "b2f006ee835f315d01c43c0f5d9e9ad78a5870b380899877b32a33078d065dbd",
1361
+ "signature": "b2f006ee835f315d01c43c0f5d9e9ad78a5870b380899877b32a33078d065dbd",
1362
+ "affectsGlobalScope": false
1363
+ },
889
1364
  "../../../node_modules/@types/websocket/index.d.ts": {
890
1365
  "version": "aec59f80c62291ec634283d443b27ebe6fc6cf57670057aa9a172927675bfbea",
891
1366
  "signature": "aec59f80c62291ec634283d443b27ebe6fc6cf57670057aa9a172927675bfbea",
892
1367
  "affectsGlobalScope": false
893
1368
  },
894
1369
  "../../../node_modules/@types/ws/index.d.ts": {
895
- "version": "829c6dfd3224be3b599c64ce7fa9136a3422ac7ab4569cc52469c65574facb23",
896
- "signature": "829c6dfd3224be3b599c64ce7fa9136a3422ac7ab4569cc52469c65574facb23",
1370
+ "version": "b4358a89fcd9c579f84a6c68e2ce44ca91b07e4db3f8f403c2b7a72c1a1e04b6",
1371
+ "signature": "b4358a89fcd9c579f84a6c68e2ce44ca91b07e4db3f8f403c2b7a72c1a1e04b6",
897
1372
  "affectsGlobalScope": false
898
1373
  },
899
1374
  "../../../node_modules/@types/yargs-parser/index.d.ts": {
@@ -905,6 +1380,11 @@
905
1380
  "version": "105b9a2234dcb06ae922f2cd8297201136d416503ff7d16c72bfc8791e9895c1",
906
1381
  "signature": "105b9a2234dcb06ae922f2cd8297201136d416503ff7d16c72bfc8791e9895c1",
907
1382
  "affectsGlobalScope": false
1383
+ },
1384
+ "../../../node_modules/@types/yauzl/index.d.ts": {
1385
+ "version": "65dfa4bc49ccd1355789abb6ae215b302a5b050fdee9651124fe7e826f33113c",
1386
+ "signature": "65dfa4bc49ccd1355789abb6ae215b302a5b050fdee9651124fe7e826f33113c",
1387
+ "affectsGlobalScope": false
908
1388
  }
909
1389
  },
910
1390
  "options": {
@@ -925,28 +1405,13 @@
925
1405
  "strictBindCallApply": true,
926
1406
  "strictFunctionTypes": true,
927
1407
  "strictNullChecks": true,
928
- "strictPropertyInitialization": true,
1408
+ "strictPropertyInitialization": false,
929
1409
  "target": 6,
930
1410
  "typeRoots": [
931
1411
  "../../../types",
932
1412
  "../node_modules/@types",
933
1413
  "../../../node_modules/@types"
934
1414
  ],
935
- "paths": {
936
- "@bitgo/sdk-api": [
937
- "modules/sdk-api/src/index"
938
- ],
939
- "@bitgo/sdk-core": [
940
- "modules/sdk-core/src/index"
941
- ],
942
- "@bitgo/utxo-lib": [
943
- "modules/utxo-lib/src/index"
944
- ],
945
- "@bitgo/statics": [
946
- "modules/statics/src/index"
947
- ]
948
- },
949
- "pathsBasePath": "/Users/tyler/src/bitgojs",
950
1415
  "outDir": "./",
951
1416
  "rootDir": "..",
952
1417
  "esModuleInterop": true,
@@ -954,7 +1419,106 @@
954
1419
  "configFilePath": "../tsconfig.json"
955
1420
  },
956
1421
  "referencedMap": {
957
- "../src/bigojsError.ts": [
1422
+ "../src/account-lib/basecoin/basekeypair.ts": [
1423
+ "../../../node_modules/@types/node/util.d.ts",
1424
+ "../src/account-lib/basecoin/enum.ts"
1425
+ ],
1426
+ "../src/account-lib/basecoin/basetransaction.ts": [
1427
+ "../../../node_modules/@types/node/util.d.ts",
1428
+ "../../statics/dist/src/index.d.ts",
1429
+ "../src/account-lib/basecoin/enum.ts",
1430
+ "../src/account-lib/basecoin/errors.ts",
1431
+ "../src/account-lib/basecoin/iface.ts"
1432
+ ],
1433
+ "../src/account-lib/basecoin/basetransactionbuilder.ts": [
1434
+ "../../../node_modules/@types/node/util.d.ts",
1435
+ "../../../node_modules/bignumber.js/bignumber.d.ts",
1436
+ "../../statics/dist/src/index.d.ts",
1437
+ "../src/account-lib/basecoin/basetransaction.ts",
1438
+ "../src/account-lib/basecoin/errors.ts",
1439
+ "../src/account-lib/basecoin/iface.ts"
1440
+ ],
1441
+ "../src/account-lib/basecoin/basetransactionbuilderfactory.ts": [
1442
+ "../../../node_modules/@types/node/util.d.ts",
1443
+ "../../statics/dist/src/index.d.ts"
1444
+ ],
1445
+ "../src/account-lib/basecoin/baseutils.ts": [
1446
+ "../../../node_modules/@types/node/util.d.ts"
1447
+ ],
1448
+ "../src/account-lib/basecoin/blskeypair.ts": [
1449
+ "../../../node_modules/@types/node/assert.d.ts",
1450
+ "../../../node_modules/@types/node/util.d.ts",
1451
+ "../src/account-lib/basecoin/basekeypair.ts",
1452
+ "../src/account-lib/basecoin/enum.ts",
1453
+ "../src/account-lib/basecoin/errors.ts",
1454
+ "../src/account-lib/basecoin/iface.ts",
1455
+ "../src/account-lib/util/crypto.ts"
1456
+ ],
1457
+ "../src/account-lib/basecoin/ed25519keypair.ts": [
1458
+ "../../../node_modules/@types/node/util.d.ts",
1459
+ "../../../node_modules/tweetnacl/nacl.d.ts",
1460
+ "../src/account-lib/basecoin/basekeypair.ts",
1461
+ "../src/account-lib/basecoin/enum.ts",
1462
+ "../src/account-lib/basecoin/iface.ts",
1463
+ "../src/account-lib/util/crypto.ts",
1464
+ "../src/account-lib/util/ed25519keyderiver.ts"
1465
+ ],
1466
+ "../src/account-lib/basecoin/enum.ts": [
1467
+ "../../../node_modules/@types/node/util.d.ts"
1468
+ ],
1469
+ "../src/account-lib/basecoin/errors.ts": [
1470
+ "../../../node_modules/@types/node/util.d.ts"
1471
+ ],
1472
+ "../src/account-lib/basecoin/iface.ts": [
1473
+ "../../../node_modules/@types/node/util.d.ts",
1474
+ "../src/account-lib/basecoin/basetransactionbuilder.ts",
1475
+ "../src/account-lib/basecoin/basetransactionbuilderfactory.ts"
1476
+ ],
1477
+ "../src/account-lib/basecoin/index.ts": [
1478
+ "../../../node_modules/@types/node/util.d.ts",
1479
+ "../src/account-lib/basecoin/basekeypair.ts",
1480
+ "../src/account-lib/basecoin/basetransaction.ts",
1481
+ "../src/account-lib/basecoin/basetransactionbuilder.ts",
1482
+ "../src/account-lib/basecoin/basetransactionbuilderfactory.ts",
1483
+ "../src/account-lib/basecoin/baseutils.ts",
1484
+ "../src/account-lib/basecoin/blskeypair.ts",
1485
+ "../src/account-lib/basecoin/ed25519keypair.ts",
1486
+ "../src/account-lib/basecoin/enum.ts",
1487
+ "../src/account-lib/basecoin/errors.ts",
1488
+ "../src/account-lib/basecoin/iface.ts",
1489
+ "../src/account-lib/basecoin/secp256k1extendedkeypair.ts"
1490
+ ],
1491
+ "../src/account-lib/basecoin/secp256k1extendedkeypair.ts": [
1492
+ "../../../node_modules/@types/node/util.d.ts",
1493
+ "../../../node_modules/bip32/types/index.d.ts",
1494
+ "../../../node_modules/bitcoinjs-lib/types/index.d.ts",
1495
+ "../src/account-lib/basecoin/basekeypair.ts",
1496
+ "../src/account-lib/basecoin/enum.ts",
1497
+ "../src/account-lib/basecoin/errors.ts",
1498
+ "../src/account-lib/basecoin/iface.ts",
1499
+ "../src/account-lib/util/crypto.ts"
1500
+ ],
1501
+ "../src/account-lib/index.ts": [
1502
+ "../../../node_modules/@types/node/util.d.ts",
1503
+ "../src/account-lib/basecoin/index.ts",
1504
+ "../src/account-lib/util/crypto.ts",
1505
+ "../src/account-lib/util/ed25519keyderiver.ts"
1506
+ ],
1507
+ "../src/account-lib/util/crypto.ts": [
1508
+ "../../../node_modules/@stablelib/hex/lib/hex.d.ts",
1509
+ "../../../node_modules/@types/bs58/index.d.ts",
1510
+ "../../../node_modules/@types/node/util.d.ts",
1511
+ "../../../node_modules/bip32/types/index.d.ts",
1512
+ "../../../node_modules/bitcoinjs-lib/types/index.d.ts",
1513
+ "../../../node_modules/noble-bls12-381/index.d.ts",
1514
+ "../../../node_modules/tweetnacl/nacl.d.ts",
1515
+ "../src/account-lib/basecoin/iface.ts"
1516
+ ],
1517
+ "../src/account-lib/util/ed25519keyderiver.ts": [
1518
+ "../../../node_modules/@types/create-hmac/index.d.ts",
1519
+ "../../../node_modules/@types/node/util.d.ts"
1520
+ ],
1521
+ "../src/bigojserror.ts": [
958
1522
  "../../../node_modules/@types/node/util.d.ts"
959
1523
  ],
960
1524
  "../src/common.ts": [
@@ -964,7 +1528,8 @@
964
1528
  ],
965
1529
  "../src/index.ts": [
966
1530
  "../../../node_modules/@types/node/util.d.ts",
967
- "../src/bigojsError.ts",
1531
+ "../src/account-lib/index.ts",
1532
+ "../src/bigojserror.ts",
968
1533
  "../src/common.ts",
969
1534
  "../src/v2/index.ts"
970
1535
  ],
@@ -980,12 +1545,64 @@
980
1545
  "../src/v2/types.ts": [
981
1546
  "../../../node_modules/@types/node/util.d.ts"
982
1547
  ],
1548
+ "../../statics/dist/src/account.d.ts": [
1549
+ "../../../node_modules/@types/node/util.d.ts",
1550
+ "../../statics/dist/src/base.d.ts",
1551
+ "../../statics/dist/src/networks.d.ts"
1552
+ ],
1553
+ "../../statics/dist/src/base.d.ts": [
1554
+ "../../../node_modules/@types/node/util.d.ts",
1555
+ "../../statics/dist/src/networks.d.ts"
1556
+ ],
1557
+ "../../statics/dist/src/coins.d.ts": [
1558
+ "../../../node_modules/@types/node/util.d.ts",
1559
+ "../../statics/dist/src/map.d.ts"
1560
+ ],
1561
+ "../../statics/dist/src/errors.d.ts": [
1562
+ "../../../node_modules/@types/node/util.d.ts",
1563
+ "../../statics/dist/src/base.d.ts"
1564
+ ],
1565
+ "../../statics/dist/src/index.d.ts": [
1566
+ "../../../node_modules/@types/node/util.d.ts",
1567
+ "../../statics/dist/src/account.d.ts",
1568
+ "../../statics/dist/src/base.d.ts",
1569
+ "../../statics/dist/src/coins.d.ts",
1570
+ "../../statics/dist/src/errors.d.ts",
1571
+ "../../statics/dist/src/map.d.ts",
1572
+ "../../statics/dist/src/networks.d.ts",
1573
+ "../../statics/dist/src/ofc.d.ts",
1574
+ "../../statics/dist/src/utxo.d.ts"
1575
+ ],
1576
+ "../../statics/dist/src/map.d.ts": [
1577
+ "../../../node_modules/@types/node/util.d.ts",
1578
+ "../../statics/dist/src/base.d.ts"
1579
+ ],
1580
+ "../../statics/dist/src/networks.d.ts": [
1581
+ "../../../node_modules/@types/node/util.d.ts",
1582
+ "../../statics/dist/src/base.d.ts"
1583
+ ],
1584
+ "../../statics/dist/src/ofc.d.ts": [
1585
+ "../../../node_modules/@types/node/util.d.ts",
1586
+ "../../statics/dist/src/base.d.ts",
1587
+ "../../statics/dist/src/networks.d.ts"
1588
+ ],
1589
+ "../../statics/dist/src/utxo.d.ts": [
1590
+ "../../../node_modules/@types/node/util.d.ts",
1591
+ "../../statics/dist/src/base.d.ts",
1592
+ "../../statics/dist/src/networks.d.ts"
1593
+ ],
1594
+ "../../../node_modules/@stablelib/hex/lib/hex.d.ts": [
1595
+ "../../../node_modules/@types/node/util.d.ts"
1596
+ ],
983
1597
  "../../../node_modules/@types/archy/index.d.ts": [
984
1598
  "../../../node_modules/@types/node/util.d.ts"
985
1599
  ],
986
1600
  "../../../node_modules/@types/argparse/index.d.ts": [
987
1601
  "../../../node_modules/@types/node/util.d.ts"
988
1602
  ],
1603
+ "../../../node_modules/@types/aria-query/index.d.ts": [
1604
+ "../../../node_modules/@types/node/util.d.ts"
1605
+ ],
989
1606
  "../../../node_modules/@types/bluebird/index.d.ts": [
990
1607
  "../../../node_modules/@types/node/util.d.ts"
991
1608
  ],
@@ -999,10 +1616,21 @@
999
1616
  "../../../node_modules/@types/node/index.d.ts",
1000
1617
  "../../../node_modules/@types/node/util.d.ts"
1001
1618
  ],
1619
+ "../../../node_modules/@types/bonjour/index.d.ts": [
1620
+ "../../../node_modules/@types/node/dgram.d.ts",
1621
+ "../../../node_modules/@types/node/index.d.ts",
1622
+ "../../../node_modules/@types/node/util.d.ts"
1623
+ ],
1002
1624
  "../../../node_modules/@types/bs58/index.d.ts": [
1003
1625
  "../../../node_modules/@types/node/util.d.ts",
1004
1626
  "../../../node_modules/base-x/src/index.d.ts"
1005
1627
  ],
1628
+ "../../../node_modules/@types/connect-history-api-fallback/index.d.ts": [
1629
+ "../../../node_modules/@types/express-serve-static-core/index.d.ts",
1630
+ "../../../node_modules/@types/node/index.d.ts",
1631
+ "../../../node_modules/@types/node/url.d.ts",
1632
+ "../../../node_modules/@types/node/util.d.ts"
1633
+ ],
1006
1634
  "../../../node_modules/@types/connect/index.d.ts": [
1007
1635
  "../../../node_modules/@types/node/http.d.ts",
1008
1636
  "../../../node_modules/@types/node/index.d.ts",
@@ -1079,6 +1707,13 @@
1079
1707
  "../../../node_modules/@types/qs/index.d.ts",
1080
1708
  "../../../node_modules/@types/range-parser/index.d.ts"
1081
1709
  ],
1710
+ "../../../node_modules/@types/express/index.d.ts": [
1711
+ "../../../node_modules/@types/body-parser/index.d.ts",
1712
+ "../../../node_modules/@types/express-serve-static-core/index.d.ts",
1713
+ "../../../node_modules/@types/node/util.d.ts",
1714
+ "../../../node_modules/@types/qs/index.d.ts",
1715
+ "../../../node_modules/@types/serve-static/index.d.ts"
1716
+ ],
1082
1717
  "../../../node_modules/@types/fs-extra/index.d.ts": [
1083
1718
  "../../../node_modules/@types/node/fs.d.ts",
1084
1719
  "../../../node_modules/@types/node/index.d.ts",
@@ -1094,9 +1729,23 @@
1094
1729
  "../../../node_modules/@types/google-libphonenumber/index.d.ts": [
1095
1730
  "../../../node_modules/@types/node/util.d.ts"
1096
1731
  ],
1732
+ "../../../node_modules/@types/hoist-non-react-statics/index.d.ts": [
1733
+ "../../../node_modules/@types/node/util.d.ts",
1734
+ "../../../node_modules/@types/react/index.d.ts"
1735
+ ],
1097
1736
  "../../../node_modules/@types/html-minifier-terser/index.d.ts": [
1098
1737
  "../../../node_modules/@types/node/util.d.ts"
1099
1738
  ],
1739
+ "../../../node_modules/@types/http-proxy/index.d.ts": [
1740
+ "../../../node_modules/@types/node/events.d.ts",
1741
+ "../../../node_modules/@types/node/http.d.ts",
1742
+ "../../../node_modules/@types/node/https.d.ts",
1743
+ "../../../node_modules/@types/node/index.d.ts",
1744
+ "../../../node_modules/@types/node/net.d.ts",
1745
+ "../../../node_modules/@types/node/stream.d.ts",
1746
+ "../../../node_modules/@types/node/url.d.ts",
1747
+ "../../../node_modules/@types/node/util.d.ts"
1748
+ ],
1100
1749
  "../../../node_modules/@types/jasmine/index.d.ts": [
1101
1750
  "../../../node_modules/@types/node/util.d.ts"
1102
1751
  ],
@@ -1340,11 +1989,17 @@
1340
1989
  ],
1341
1990
  "../../../node_modules/@types/node-fetch/index.d.ts": [
1342
1991
  "../../../node_modules/@types/node-fetch/externals.d.ts",
1992
+ "../../../node_modules/@types/node-fetch/node_modules/form-data/index.d.ts",
1343
1993
  "../../../node_modules/@types/node/http.d.ts",
1344
1994
  "../../../node_modules/@types/node/index.d.ts",
1345
1995
  "../../../node_modules/@types/node/url.d.ts",
1346
- "../../../node_modules/@types/node/util.d.ts",
1347
- "../../../node_modules/form-data/index.d.ts"
1996
+ "../../../node_modules/@types/node/util.d.ts"
1997
+ ],
1998
+ "../../../node_modules/@types/node-fetch/node_modules/form-data/index.d.ts": [
1999
+ "../../../node_modules/@types/node/http.d.ts",
2000
+ "../../../node_modules/@types/node/index.d.ts",
2001
+ "../../../node_modules/@types/node/stream.d.ts",
2002
+ "../../../node_modules/@types/node/util.d.ts"
1348
2003
  ],
1349
2004
  "../../../node_modules/@types/node/assert.d.ts": [
1350
2005
  "../../../node_modules/@types/node/assert.d.ts",
@@ -1683,6 +2338,9 @@
1683
2338
  "../../../node_modules/@types/node/index.d.ts",
1684
2339
  "../../../node_modules/@types/node/util.d.ts"
1685
2340
  ],
2341
+ "../../../node_modules/@types/prop-types/index.d.ts": [
2342
+ "../../../node_modules/@types/node/util.d.ts"
2343
+ ],
1686
2344
  "../../../node_modules/@types/qs/index.d.ts": [
1687
2345
  "../../../node_modules/@types/node/util.d.ts"
1688
2346
  ],
@@ -1694,10 +2352,38 @@
1694
2352
  "../../../node_modules/@types/range-parser/index.d.ts": [
1695
2353
  "../../../node_modules/@types/node/util.d.ts"
1696
2354
  ],
2355
+ "../../../node_modules/@types/react-dom/index.d.ts": [
2356
+ "../../../node_modules/@types/node/util.d.ts",
2357
+ "../../../node_modules/@types/react/index.d.ts"
2358
+ ],
2359
+ "../../../node_modules/@types/react/global.d.ts": [
2360
+ "../../../node_modules/@types/node/util.d.ts"
2361
+ ],
2362
+ "../../../node_modules/@types/react/index.d.ts": [
2363
+ "../../../node_modules/@types/node/util.d.ts",
2364
+ "../../../node_modules/@types/prop-types/index.d.ts",
2365
+ "../../../node_modules/@types/react/global.d.ts",
2366
+ "../../../node_modules/@types/scheduler/tracing.d.ts",
2367
+ "../../../node_modules/csstype/index.d.ts"
2368
+ ],
2369
+ "../../../node_modules/@types/retry/index.d.ts": [
2370
+ "../../../node_modules/@types/node/util.d.ts"
2371
+ ],
2372
+ "../../../node_modules/@types/scheduler/index.d.ts": [
2373
+ "../../../node_modules/@types/node/util.d.ts"
2374
+ ],
2375
+ "../../../node_modules/@types/scheduler/tracing.d.ts": [
2376
+ "../../../node_modules/@types/node/util.d.ts"
2377
+ ],
1697
2378
  "../../../node_modules/@types/secp256k1/index.d.ts": [
1698
2379
  "../../../node_modules/@types/node/index.d.ts",
1699
2380
  "../../../node_modules/@types/node/util.d.ts"
1700
2381
  ],
2382
+ "../../../node_modules/@types/serve-index/index.d.ts": [
2383
+ "../../../node_modules/@types/express/index.d.ts",
2384
+ "../../../node_modules/@types/node/fs.d.ts",
2385
+ "../../../node_modules/@types/node/util.d.ts"
2386
+ ],
1701
2387
  "../../../node_modules/@types/serve-static/index.d.ts": [
1702
2388
  "../../../node_modules/@types/mime/index.d.ts",
1703
2389
  "../../../node_modules/@types/node/http.d.ts",
@@ -1712,75 +2398,374 @@
1712
2398
  "../../../node_modules/@types/sinon/ts3.1/index.d.ts": [
1713
2399
  "../../../node_modules/@types/node/util.d.ts"
1714
2400
  ],
1715
- "../../../node_modules/@types/sinonjs__fake-timers/index.d.ts": [
1716
- "../../../node_modules/@types/node/util.d.ts"
2401
+ "../../../node_modules/@types/sinonjs__fake-timers/index.d.ts": [
2402
+ "../../../node_modules/@types/node/util.d.ts"
2403
+ ],
2404
+ "../../../node_modules/@types/sizzle/index.d.ts": [
2405
+ "../../../node_modules/@types/node/util.d.ts"
2406
+ ],
2407
+ "../../../node_modules/@types/sockjs/index.d.ts": [
2408
+ "../../../node_modules/@types/node/http.d.ts",
2409
+ "../../../node_modules/@types/node/index.d.ts",
2410
+ "../../../node_modules/@types/node/util.d.ts"
2411
+ ],
2412
+ "../../../node_modules/@types/source-list-map/index.d.ts": [
2413
+ "../../../node_modules/@types/node/util.d.ts"
2414
+ ],
2415
+ "../../../node_modules/@types/styled-components/index.d.ts": [
2416
+ "../../../node_modules/@types/hoist-non-react-statics/index.d.ts",
2417
+ "../../../node_modules/@types/node/util.d.ts",
2418
+ "../../../node_modules/@types/react/index.d.ts",
2419
+ "../../../node_modules/csstype/index.d.ts"
2420
+ ],
2421
+ "../../../node_modules/@types/superagent/index.d.ts": [
2422
+ "../../../node_modules/@types/cookiejar/index.d.ts",
2423
+ "../../../node_modules/@types/node/buffer.d.ts",
2424
+ "../../../node_modules/@types/node/fs.d.ts",
2425
+ "../../../node_modules/@types/node/http.d.ts",
2426
+ "../../../node_modules/@types/node/index.d.ts",
2427
+ "../../../node_modules/@types/node/stream.d.ts",
2428
+ "../../../node_modules/@types/node/util.d.ts"
2429
+ ],
2430
+ "../../../node_modules/@types/supertest/index.d.ts": [
2431
+ "../../../node_modules/@types/node/util.d.ts",
2432
+ "../../../node_modules/@types/superagent/index.d.ts"
2433
+ ],
2434
+ "../../../node_modules/@types/tapable/index.d.ts": [
2435
+ "../../../node_modules/@types/node/util.d.ts"
2436
+ ],
2437
+ "../../../node_modules/@types/uglify-js/index.d.ts": [
2438
+ "../../../node_modules/@types/node/util.d.ts",
2439
+ "../../../node_modules/source-map/source-map.d.ts"
2440
+ ],
2441
+ "../../../node_modules/@types/urijs/dom-monkeypatch.d.ts": [
2442
+ "../../../node_modules/@types/node/util.d.ts"
2443
+ ],
2444
+ "../../../node_modules/@types/urijs/index.d.ts": [
2445
+ "../../../node_modules/@types/node/util.d.ts",
2446
+ "../../../node_modules/@types/urijs/dom-monkeypatch.d.ts"
2447
+ ],
2448
+ "../../../node_modules/@types/utf8/index.d.ts": [
2449
+ "../../../node_modules/@types/node/util.d.ts"
2450
+ ],
2451
+ "../../../node_modules/@types/webpack-sources/index.d.ts": [
2452
+ "../../../node_modules/@types/node/index.d.ts",
2453
+ "../../../node_modules/@types/node/util.d.ts",
2454
+ "../../../node_modules/@types/webpack-sources/lib/cachedsource.d.ts",
2455
+ "../../../node_modules/@types/webpack-sources/lib/compatsource.d.ts",
2456
+ "../../../node_modules/@types/webpack-sources/lib/concatsource.d.ts",
2457
+ "../../../node_modules/@types/webpack-sources/lib/index.d.ts",
2458
+ "../../../node_modules/@types/webpack-sources/lib/originalsource.d.ts",
2459
+ "../../../node_modules/@types/webpack-sources/lib/prefixsource.d.ts",
2460
+ "../../../node_modules/@types/webpack-sources/lib/rawsource.d.ts",
2461
+ "../../../node_modules/@types/webpack-sources/lib/replacesource.d.ts",
2462
+ "../../../node_modules/@types/webpack-sources/lib/sizeonlysource.d.ts",
2463
+ "../../../node_modules/@types/webpack-sources/lib/source.d.ts",
2464
+ "../../../node_modules/@types/webpack-sources/lib/sourcemapsource.d.ts"
2465
+ ],
2466
+ "../../../node_modules/@types/webpack-sources/lib/cachedsource.d.ts": [
2467
+ "../../../node_modules/@types/node/util.d.ts",
2468
+ "../../../node_modules/@types/webpack-sources/lib/index.d.ts",
2469
+ "../../../node_modules/@types/webpack-sources/lib/source.d.ts",
2470
+ "../../../node_modules/@types/webpack-sources/node_modules/source-map/source-map.d.ts"
2471
+ ],
2472
+ "../../../node_modules/@types/webpack-sources/lib/compatsource.d.ts": [
2473
+ "../../../node_modules/@types/node/util.d.ts",
2474
+ "../../../node_modules/@types/webpack-sources/lib/index.d.ts",
2475
+ "../../../node_modules/@types/webpack-sources/lib/source.d.ts"
2476
+ ],
2477
+ "../../../node_modules/@types/webpack-sources/lib/concatsource.d.ts": [
2478
+ "../../../node_modules/@types/node/util.d.ts",
2479
+ "../../../node_modules/@types/source-list-map/index.d.ts",
2480
+ "../../../node_modules/@types/webpack-sources/lib/index.d.ts",
2481
+ "../../../node_modules/@types/webpack-sources/lib/source.d.ts",
2482
+ "../../../node_modules/@types/webpack-sources/node_modules/source-map/source-map.d.ts"
2483
+ ],
2484
+ "../../../node_modules/@types/webpack-sources/lib/index.d.ts": [
2485
+ "../../../node_modules/@types/node/util.d.ts",
2486
+ "../../../node_modules/@types/webpack-sources/lib/cachedsource.d.ts",
2487
+ "../../../node_modules/@types/webpack-sources/lib/compatsource.d.ts",
2488
+ "../../../node_modules/@types/webpack-sources/lib/concatsource.d.ts",
2489
+ "../../../node_modules/@types/webpack-sources/lib/originalsource.d.ts",
2490
+ "../../../node_modules/@types/webpack-sources/lib/prefixsource.d.ts",
2491
+ "../../../node_modules/@types/webpack-sources/lib/rawsource.d.ts",
2492
+ "../../../node_modules/@types/webpack-sources/lib/replacesource.d.ts",
2493
+ "../../../node_modules/@types/webpack-sources/lib/sizeonlysource.d.ts",
2494
+ "../../../node_modules/@types/webpack-sources/lib/source.d.ts",
2495
+ "../../../node_modules/@types/webpack-sources/lib/sourcemapsource.d.ts",
2496
+ "../../../node_modules/@types/webpack-sources/node_modules/source-map/source-map.d.ts"
2497
+ ],
2498
+ "../../../node_modules/@types/webpack-sources/lib/originalsource.d.ts": [
2499
+ "../../../node_modules/@types/node/util.d.ts",
2500
+ "../../../node_modules/@types/source-list-map/index.d.ts",
2501
+ "../../../node_modules/@types/webpack-sources/lib/index.d.ts",
2502
+ "../../../node_modules/@types/webpack-sources/lib/source.d.ts",
2503
+ "../../../node_modules/@types/webpack-sources/node_modules/source-map/source-map.d.ts"
2504
+ ],
2505
+ "../../../node_modules/@types/webpack-sources/lib/prefixsource.d.ts": [
2506
+ "../../../node_modules/@types/node/util.d.ts",
2507
+ "../../../node_modules/@types/webpack-sources/lib/index.d.ts",
2508
+ "../../../node_modules/@types/webpack-sources/lib/source.d.ts"
2509
+ ],
2510
+ "../../../node_modules/@types/webpack-sources/lib/rawsource.d.ts": [
2511
+ "../../../node_modules/@types/node/util.d.ts",
2512
+ "../../../node_modules/@types/webpack-sources/lib/index.d.ts",
2513
+ "../../../node_modules/@types/webpack-sources/lib/source.d.ts"
2514
+ ],
2515
+ "../../../node_modules/@types/webpack-sources/lib/replacesource.d.ts": [
2516
+ "../../../node_modules/@types/node/util.d.ts",
2517
+ "../../../node_modules/@types/webpack-sources/lib/index.d.ts",
2518
+ "../../../node_modules/@types/webpack-sources/lib/source.d.ts"
2519
+ ],
2520
+ "../../../node_modules/@types/webpack-sources/lib/sizeonlysource.d.ts": [
2521
+ "../../../node_modules/@types/node/util.d.ts",
2522
+ "../../../node_modules/@types/webpack-sources/lib/source.d.ts"
2523
+ ],
2524
+ "../../../node_modules/@types/webpack-sources/lib/source.d.ts": [
2525
+ "../../../node_modules/@types/node/crypto.d.ts",
2526
+ "../../../node_modules/@types/node/util.d.ts",
2527
+ "../../../node_modules/@types/webpack-sources/lib/index.d.ts",
2528
+ "../../../node_modules/@types/webpack-sources/node_modules/source-map/source-map.d.ts"
2529
+ ],
2530
+ "../../../node_modules/@types/webpack-sources/lib/sourcemapsource.d.ts": [
2531
+ "../../../node_modules/@types/node/util.d.ts",
2532
+ "../../../node_modules/@types/webpack-sources/lib/index.d.ts",
2533
+ "../../../node_modules/@types/webpack-sources/lib/source.d.ts",
2534
+ "../../../node_modules/@types/webpack-sources/node_modules/source-map/source-map.d.ts"
2535
+ ],
2536
+ "../../../node_modules/@types/webpack-sources/node_modules/source-map/source-map.d.ts": [
2537
+ "../../../node_modules/@types/node/util.d.ts"
2538
+ ],
2539
+ "../../../node_modules/@types/webpack/index.d.ts": [
2540
+ "../../../node_modules/@types/node/crypto.d.ts",
2541
+ "../../../node_modules/@types/node/index.d.ts",
2542
+ "../../../node_modules/@types/node/util.d.ts",
2543
+ "../../../node_modules/@types/uglify-js/index.d.ts",
2544
+ "../../../node_modules/@types/webpack-sources/index.d.ts",
2545
+ "../../../node_modules/anymatch/index.d.ts",
2546
+ "../../../node_modules/source-map/source-map.d.ts",
2547
+ "../../../node_modules/tapable/tapable.d.ts"
2548
+ ],
2549
+ "../../../node_modules/@types/websocket/index.d.ts": [
2550
+ "../../../node_modules/@types/node/events.d.ts",
2551
+ "../../../node_modules/@types/node/http.d.ts",
2552
+ "../../../node_modules/@types/node/https.d.ts",
2553
+ "../../../node_modules/@types/node/index.d.ts",
2554
+ "../../../node_modules/@types/node/net.d.ts",
2555
+ "../../../node_modules/@types/node/url.d.ts",
2556
+ "../../../node_modules/@types/node/util.d.ts"
2557
+ ],
2558
+ "../../../node_modules/@types/ws/index.d.ts": [
2559
+ "../../../node_modules/@types/node/events.d.ts",
2560
+ "../../../node_modules/@types/node/http.d.ts",
2561
+ "../../../node_modules/@types/node/https.d.ts",
2562
+ "../../../node_modules/@types/node/index.d.ts",
2563
+ "../../../node_modules/@types/node/stream.d.ts",
2564
+ "../../../node_modules/@types/node/tls.d.ts",
2565
+ "../../../node_modules/@types/node/url.d.ts",
2566
+ "../../../node_modules/@types/node/util.d.ts",
2567
+ "../../../node_modules/@types/node/zlib.d.ts"
2568
+ ],
2569
+ "../../../node_modules/@types/yargs-parser/index.d.ts": [
2570
+ "../../../node_modules/@types/node/util.d.ts"
2571
+ ],
2572
+ "../../../node_modules/@types/yargs/index.d.ts": [
2573
+ "../../../node_modules/@types/node/util.d.ts",
2574
+ "../../../node_modules/@types/yargs-parser/index.d.ts"
2575
+ ],
2576
+ "../../../node_modules/@types/yauzl/index.d.ts": [
2577
+ "../../../node_modules/@types/node/events.d.ts",
2578
+ "../../../node_modules/@types/node/index.d.ts",
2579
+ "../../../node_modules/@types/node/stream.d.ts",
2580
+ "../../../node_modules/@types/node/util.d.ts"
2581
+ ],
2582
+ "../../../node_modules/anymatch/index.d.ts": [
2583
+ "../../../node_modules/@types/node/util.d.ts"
2584
+ ],
2585
+ "../../../node_modules/base-x/src/index.d.ts": [
2586
+ "../../../node_modules/@types/node/index.d.ts",
2587
+ "../../../node_modules/@types/node/util.d.ts"
2588
+ ],
2589
+ "../../../node_modules/bignumber.js/bignumber.d.ts": [
2590
+ "../../../node_modules/@types/node/util.d.ts"
2591
+ ],
2592
+ "../../../node_modules/bip174/src/lib/interfaces.d.ts": [
2593
+ "../../../node_modules/@types/node/index.d.ts",
2594
+ "../../../node_modules/@types/node/util.d.ts"
2595
+ ],
2596
+ "../../../node_modules/bip174/src/lib/psbt.d.ts": [
2597
+ "../../../node_modules/@types/node/index.d.ts",
2598
+ "../../../node_modules/@types/node/util.d.ts",
2599
+ "../../../node_modules/bip174/src/lib/interfaces.d.ts"
2600
+ ],
2601
+ "../../../node_modules/bip32/types/bip32.d.ts": [
2602
+ "../../../node_modules/@types/node/index.d.ts",
2603
+ "../../../node_modules/@types/node/util.d.ts"
2604
+ ],
2605
+ "../../../node_modules/bip32/types/index.d.ts": [
2606
+ "../../../node_modules/@types/node/util.d.ts",
2607
+ "../../../node_modules/bip32/types/bip32.d.ts"
2608
+ ],
2609
+ "../../../node_modules/bitcoinjs-lib/types/address.d.ts": [
2610
+ "../../../node_modules/@types/node/index.d.ts",
2611
+ "../../../node_modules/@types/node/util.d.ts",
2612
+ "../../../node_modules/bitcoinjs-lib/types/networks.d.ts"
2613
+ ],
2614
+ "../../../node_modules/bitcoinjs-lib/types/block.d.ts": [
2615
+ "../../../node_modules/@types/node/index.d.ts",
2616
+ "../../../node_modules/@types/node/util.d.ts",
2617
+ "../../../node_modules/bitcoinjs-lib/types/transaction.d.ts"
2618
+ ],
2619
+ "../../../node_modules/bitcoinjs-lib/types/classify.d.ts": [
2620
+ "../../../node_modules/@types/node/index.d.ts",
2621
+ "../../../node_modules/@types/node/util.d.ts"
2622
+ ],
2623
+ "../../../node_modules/bitcoinjs-lib/types/crypto.d.ts": [
2624
+ "../../../node_modules/@types/node/index.d.ts",
2625
+ "../../../node_modules/@types/node/util.d.ts"
2626
+ ],
2627
+ "../../../node_modules/bitcoinjs-lib/types/ecpair.d.ts": [
2628
+ "../../../node_modules/@types/node/index.d.ts",
2629
+ "../../../node_modules/@types/node/util.d.ts",
2630
+ "../../../node_modules/bitcoinjs-lib/types/networks.d.ts"
2631
+ ],
2632
+ "../../../node_modules/bitcoinjs-lib/types/index.d.ts": [
2633
+ "../../../node_modules/@types/node/util.d.ts",
2634
+ "../../../node_modules/bip32/types/index.d.ts",
2635
+ "../../../node_modules/bitcoinjs-lib/types/address.d.ts",
2636
+ "../../../node_modules/bitcoinjs-lib/types/block.d.ts",
2637
+ "../../../node_modules/bitcoinjs-lib/types/classify.d.ts",
2638
+ "../../../node_modules/bitcoinjs-lib/types/crypto.d.ts",
2639
+ "../../../node_modules/bitcoinjs-lib/types/ecpair.d.ts",
2640
+ "../../../node_modules/bitcoinjs-lib/types/networks.d.ts",
2641
+ "../../../node_modules/bitcoinjs-lib/types/payments/index.d.ts",
2642
+ "../../../node_modules/bitcoinjs-lib/types/psbt.d.ts",
2643
+ "../../../node_modules/bitcoinjs-lib/types/schnorrbip340.d.ts",
2644
+ "../../../node_modules/bitcoinjs-lib/types/script.d.ts",
2645
+ "../../../node_modules/bitcoinjs-lib/types/script_signature.d.ts",
2646
+ "../../../node_modules/bitcoinjs-lib/types/taproot.d.ts",
2647
+ "../../../node_modules/bitcoinjs-lib/types/transaction.d.ts",
2648
+ "../../../node_modules/bitcoinjs-lib/types/transaction_builder.d.ts"
2649
+ ],
2650
+ "../../../node_modules/bitcoinjs-lib/types/networks.d.ts": [
2651
+ "../../../node_modules/@types/node/util.d.ts"
2652
+ ],
2653
+ "../../../node_modules/bitcoinjs-lib/types/payments/embed.d.ts": [
2654
+ "../../../node_modules/@types/node/util.d.ts",
2655
+ "../../../node_modules/bitcoinjs-lib/types/payments/index.d.ts"
2656
+ ],
2657
+ "../../../node_modules/bitcoinjs-lib/types/payments/index.d.ts": [
2658
+ "../../../node_modules/@types/node/index.d.ts",
2659
+ "../../../node_modules/@types/node/util.d.ts",
2660
+ "../../../node_modules/bitcoinjs-lib/types/networks.d.ts",
2661
+ "../../../node_modules/bitcoinjs-lib/types/payments/embed.d.ts",
2662
+ "../../../node_modules/bitcoinjs-lib/types/payments/p2ms.d.ts",
2663
+ "../../../node_modules/bitcoinjs-lib/types/payments/p2pk.d.ts",
2664
+ "../../../node_modules/bitcoinjs-lib/types/payments/p2pkh.d.ts",
2665
+ "../../../node_modules/bitcoinjs-lib/types/payments/p2sh.d.ts",
2666
+ "../../../node_modules/bitcoinjs-lib/types/payments/p2tr.d.ts",
2667
+ "../../../node_modules/bitcoinjs-lib/types/payments/p2tr_ns.d.ts",
2668
+ "../../../node_modules/bitcoinjs-lib/types/payments/p2wpkh.d.ts",
2669
+ "../../../node_modules/bitcoinjs-lib/types/payments/p2wsh.d.ts"
2670
+ ],
2671
+ "../../../node_modules/bitcoinjs-lib/types/payments/p2ms.d.ts": [
2672
+ "../../../node_modules/@types/node/util.d.ts",
2673
+ "../../../node_modules/bitcoinjs-lib/types/payments/index.d.ts"
2674
+ ],
2675
+ "../../../node_modules/bitcoinjs-lib/types/payments/p2pk.d.ts": [
2676
+ "../../../node_modules/@types/node/util.d.ts",
2677
+ "../../../node_modules/bitcoinjs-lib/types/payments/index.d.ts"
2678
+ ],
2679
+ "../../../node_modules/bitcoinjs-lib/types/payments/p2pkh.d.ts": [
2680
+ "../../../node_modules/@types/node/util.d.ts",
2681
+ "../../../node_modules/bitcoinjs-lib/types/payments/index.d.ts"
2682
+ ],
2683
+ "../../../node_modules/bitcoinjs-lib/types/payments/p2sh.d.ts": [
2684
+ "../../../node_modules/@types/node/util.d.ts",
2685
+ "../../../node_modules/bitcoinjs-lib/types/payments/index.d.ts"
2686
+ ],
2687
+ "../../../node_modules/bitcoinjs-lib/types/payments/p2tr.d.ts": [
2688
+ "../../../node_modules/@types/node/util.d.ts",
2689
+ "../../../node_modules/bitcoinjs-lib/types/payments/index.d.ts"
2690
+ ],
2691
+ "../../../node_modules/bitcoinjs-lib/types/payments/p2tr_ns.d.ts": [
2692
+ "../../../node_modules/@types/node/util.d.ts",
2693
+ "../../../node_modules/bitcoinjs-lib/types/payments/index.d.ts"
2694
+ ],
2695
+ "../../../node_modules/bitcoinjs-lib/types/payments/p2wpkh.d.ts": [
2696
+ "../../../node_modules/@types/node/util.d.ts",
2697
+ "../../../node_modules/bitcoinjs-lib/types/payments/index.d.ts"
2698
+ ],
2699
+ "../../../node_modules/bitcoinjs-lib/types/payments/p2wsh.d.ts": [
2700
+ "../../../node_modules/@types/node/util.d.ts",
2701
+ "../../../node_modules/bitcoinjs-lib/types/payments/index.d.ts"
2702
+ ],
2703
+ "../../../node_modules/bitcoinjs-lib/types/psbt.d.ts": [
2704
+ "../../../node_modules/@types/node/index.d.ts",
2705
+ "../../../node_modules/@types/node/util.d.ts",
2706
+ "../../../node_modules/bip174/src/lib/interfaces.d.ts",
2707
+ "../../../node_modules/bip174/src/lib/psbt.d.ts",
2708
+ "../../../node_modules/bitcoinjs-lib/types/ecpair.d.ts",
2709
+ "../../../node_modules/bitcoinjs-lib/types/networks.d.ts",
2710
+ "../../../node_modules/bitcoinjs-lib/types/transaction.d.ts"
1717
2711
  ],
1718
- "../../../node_modules/@types/superagent/index.d.ts": [
1719
- "../../../node_modules/@types/cookiejar/index.d.ts",
1720
- "../../../node_modules/@types/node/buffer.d.ts",
1721
- "../../../node_modules/@types/node/fs.d.ts",
1722
- "../../../node_modules/@types/node/http.d.ts",
2712
+ "../../../node_modules/bitcoinjs-lib/types/schnorrbip340.d.ts": [
1723
2713
  "../../../node_modules/@types/node/index.d.ts",
1724
- "../../../node_modules/@types/node/stream.d.ts",
1725
2714
  "../../../node_modules/@types/node/util.d.ts"
1726
2715
  ],
1727
- "../../../node_modules/@types/supertest/index.d.ts": [
2716
+ "../../../node_modules/bitcoinjs-lib/types/script.d.ts": [
2717
+ "../../../node_modules/@types/node/index.d.ts",
1728
2718
  "../../../node_modules/@types/node/util.d.ts",
1729
- "../../../node_modules/@types/superagent/index.d.ts"
2719
+ "../../../node_modules/bitcoinjs-lib/types/payments/index.d.ts",
2720
+ "../../../node_modules/bitcoinjs-lib/types/script_number.d.ts",
2721
+ "../../../node_modules/bitcoinjs-lib/types/script_signature.d.ts"
1730
2722
  ],
1731
- "../../../node_modules/@types/urijs/dom-monkeypatch.d.ts": [
2723
+ "../../../node_modules/bitcoinjs-lib/types/script_number.d.ts": [
2724
+ "../../../node_modules/@types/node/index.d.ts",
1732
2725
  "../../../node_modules/@types/node/util.d.ts"
1733
2726
  ],
1734
- "../../../node_modules/@types/urijs/index.d.ts": [
1735
- "../../../node_modules/@types/node/util.d.ts",
1736
- "../../../node_modules/@types/urijs/dom-monkeypatch.d.ts"
2727
+ "../../../node_modules/bitcoinjs-lib/types/script_signature.d.ts": [
2728
+ "../../../node_modules/@types/node/index.d.ts",
2729
+ "../../../node_modules/@types/node/util.d.ts"
1737
2730
  ],
1738
- "../../../node_modules/@types/utf8/index.d.ts": [
2731
+ "../../../node_modules/bitcoinjs-lib/types/taproot.d.ts": [
2732
+ "../../../node_modules/@types/node/index.d.ts",
1739
2733
  "../../../node_modules/@types/node/util.d.ts"
1740
2734
  ],
1741
- "../../../node_modules/@types/websocket/index.d.ts": [
1742
- "../../../node_modules/@types/node/events.d.ts",
1743
- "../../../node_modules/@types/node/http.d.ts",
1744
- "../../../node_modules/@types/node/https.d.ts",
2735
+ "../../../node_modules/bitcoinjs-lib/types/transaction.d.ts": [
1745
2736
  "../../../node_modules/@types/node/index.d.ts",
1746
- "../../../node_modules/@types/node/net.d.ts",
1747
- "../../../node_modules/@types/node/url.d.ts",
1748
2737
  "../../../node_modules/@types/node/util.d.ts"
1749
2738
  ],
1750
- "../../../node_modules/@types/ws/index.d.ts": [
1751
- "../../../node_modules/@types/node/events.d.ts",
1752
- "../../../node_modules/@types/node/http.d.ts",
1753
- "../../../node_modules/@types/node/https.d.ts",
2739
+ "../../../node_modules/bitcoinjs-lib/types/transaction_builder.d.ts": [
1754
2740
  "../../../node_modules/@types/node/index.d.ts",
1755
- "../../../node_modules/@types/node/net.d.ts",
1756
- "../../../node_modules/@types/node/url.d.ts",
1757
2741
  "../../../node_modules/@types/node/util.d.ts",
1758
- "../../../node_modules/@types/node/zlib.d.ts"
2742
+ "../../../node_modules/bitcoinjs-lib/types/ecpair.d.ts",
2743
+ "../../../node_modules/bitcoinjs-lib/types/networks.d.ts",
2744
+ "../../../node_modules/bitcoinjs-lib/types/transaction.d.ts"
1759
2745
  ],
1760
- "../../../node_modules/@types/yargs-parser/index.d.ts": [
2746
+ "../../../node_modules/buffer/index.d.ts": [
1761
2747
  "../../../node_modules/@types/node/util.d.ts"
1762
2748
  ],
1763
- "../../../node_modules/@types/yargs/index.d.ts": [
2749
+ "../../../node_modules/csstype/index.d.ts": [
2750
+ "../../../node_modules/@types/node/util.d.ts"
2751
+ ],
2752
+ "../../../node_modules/noble-bls12-381/index.d.ts": [
1764
2753
  "../../../node_modules/@types/node/util.d.ts",
1765
- "../../../node_modules/@types/yargs-parser/index.d.ts"
2754
+ "../../../node_modules/noble-bls12-381/math.d.ts"
1766
2755
  ],
1767
- "../../../node_modules/base-x/src/index.d.ts": [
1768
- "../../../node_modules/@types/node/index.d.ts",
2756
+ "../../../node_modules/noble-bls12-381/math.d.ts": [
1769
2757
  "../../../node_modules/@types/node/util.d.ts"
1770
2758
  ],
1771
- "../../../node_modules/bignumber.js/bignumber.d.ts": [
2759
+ "../../../node_modules/should/should.d.ts": [
1772
2760
  "../../../node_modules/@types/node/util.d.ts"
1773
2761
  ],
1774
- "../../../node_modules/buffer/index.d.ts": [
2762
+ "../../../node_modules/source-map/source-map.d.ts": [
1775
2763
  "../../../node_modules/@types/node/util.d.ts"
1776
2764
  ],
1777
- "../../../node_modules/form-data/index.d.ts": [
1778
- "../../../node_modules/@types/node/http.d.ts",
1779
- "../../../node_modules/@types/node/index.d.ts",
1780
- "../../../node_modules/@types/node/stream.d.ts",
2765
+ "../../../node_modules/tapable/tapable.d.ts": [
1781
2766
  "../../../node_modules/@types/node/util.d.ts"
1782
2767
  ],
1783
- "../../../node_modules/should/should.d.ts": [
2768
+ "../../../node_modules/tweetnacl/nacl.d.ts": [
1784
2769
  "../../../node_modules/@types/node/util.d.ts"
1785
2770
  ],
1786
2771
  "../../../node_modules/typescript/lib/lib.dom.d.ts": [
@@ -1917,11 +2902,71 @@
1917
2902
  ]
1918
2903
  },
1919
2904
  "exportedModulesMap": {
2905
+ "../src/account-lib/basecoin/basekeypair.ts": [
2906
+ "../src/account-lib/basecoin/enum.ts"
2907
+ ],
2908
+ "../src/account-lib/basecoin/basetransaction.ts": [
2909
+ "../../statics/dist/src/index.d.ts",
2910
+ "../src/account-lib/basecoin/enum.ts",
2911
+ "../src/account-lib/basecoin/iface.ts"
2912
+ ],
2913
+ "../src/account-lib/basecoin/basetransactionbuilder.ts": [
2914
+ "../../../node_modules/bignumber.js/bignumber.d.ts",
2915
+ "../../statics/dist/src/index.d.ts",
2916
+ "../src/account-lib/basecoin/basetransaction.ts",
2917
+ "../src/account-lib/basecoin/iface.ts"
2918
+ ],
2919
+ "../src/account-lib/basecoin/basetransactionbuilderfactory.ts": [
2920
+ "../../statics/dist/src/index.d.ts"
2921
+ ],
2922
+ "../src/account-lib/basecoin/blskeypair.ts": [
2923
+ "../src/account-lib/basecoin/basekeypair.ts",
2924
+ "../src/account-lib/basecoin/enum.ts",
2925
+ "../src/account-lib/basecoin/iface.ts"
2926
+ ],
2927
+ "../src/account-lib/basecoin/ed25519keypair.ts": [
2928
+ "../src/account-lib/basecoin/basekeypair.ts",
2929
+ "../src/account-lib/basecoin/enum.ts",
2930
+ "../src/account-lib/basecoin/iface.ts"
2931
+ ],
2932
+ "../src/account-lib/basecoin/iface.ts": [
2933
+ "../src/account-lib/basecoin/basetransactionbuilder.ts",
2934
+ "../src/account-lib/basecoin/basetransactionbuilderfactory.ts"
2935
+ ],
2936
+ "../src/account-lib/basecoin/index.ts": [
2937
+ "../src/account-lib/basecoin/basekeypair.ts",
2938
+ "../src/account-lib/basecoin/basetransaction.ts",
2939
+ "../src/account-lib/basecoin/basetransactionbuilder.ts",
2940
+ "../src/account-lib/basecoin/basetransactionbuilderfactory.ts",
2941
+ "../src/account-lib/basecoin/baseutils.ts",
2942
+ "../src/account-lib/basecoin/blskeypair.ts",
2943
+ "../src/account-lib/basecoin/ed25519keypair.ts",
2944
+ "../src/account-lib/basecoin/enum.ts",
2945
+ "../src/account-lib/basecoin/errors.ts",
2946
+ "../src/account-lib/basecoin/iface.ts",
2947
+ "../src/account-lib/basecoin/secp256k1extendedkeypair.ts"
2948
+ ],
2949
+ "../src/account-lib/basecoin/secp256k1extendedkeypair.ts": [
2950
+ "../../../node_modules/bip32/types/index.d.ts",
2951
+ "../../../node_modules/bitcoinjs-lib/types/index.d.ts",
2952
+ "../src/account-lib/basecoin/basekeypair.ts",
2953
+ "../src/account-lib/basecoin/enum.ts",
2954
+ "../src/account-lib/basecoin/iface.ts"
2955
+ ],
2956
+ "../src/account-lib/index.ts": [
2957
+ "../src/account-lib/basecoin/index.ts",
2958
+ "../src/account-lib/util/crypto.ts",
2959
+ "../src/account-lib/util/ed25519keyderiver.ts"
2960
+ ],
2961
+ "../src/account-lib/util/crypto.ts": [
2962
+ "../src/account-lib/basecoin/iface.ts"
2963
+ ],
1920
2964
  "../src/common.ts": [
1921
2965
  "../src/v2/index.ts"
1922
2966
  ],
1923
2967
  "../src/index.ts": [
1924
- "../src/bigojsError.ts",
2968
+ "../src/account-lib/index.ts",
2969
+ "../src/bigojserror.ts",
1925
2970
  "../src/common.ts",
1926
2971
  "../src/v2/index.ts"
1927
2972
  ],
@@ -1932,12 +2977,64 @@
1932
2977
  "../src/v2/environments.ts",
1933
2978
  "../src/v2/types.ts"
1934
2979
  ],
2980
+ "../../statics/dist/src/account.d.ts": [
2981
+ "../../../node_modules/@types/node/util.d.ts",
2982
+ "../../statics/dist/src/base.d.ts",
2983
+ "../../statics/dist/src/networks.d.ts"
2984
+ ],
2985
+ "../../statics/dist/src/base.d.ts": [
2986
+ "../../../node_modules/@types/node/util.d.ts",
2987
+ "../../statics/dist/src/networks.d.ts"
2988
+ ],
2989
+ "../../statics/dist/src/coins.d.ts": [
2990
+ "../../../node_modules/@types/node/util.d.ts",
2991
+ "../../statics/dist/src/map.d.ts"
2992
+ ],
2993
+ "../../statics/dist/src/errors.d.ts": [
2994
+ "../../../node_modules/@types/node/util.d.ts",
2995
+ "../../statics/dist/src/base.d.ts"
2996
+ ],
2997
+ "../../statics/dist/src/index.d.ts": [
2998
+ "../../../node_modules/@types/node/util.d.ts",
2999
+ "../../statics/dist/src/account.d.ts",
3000
+ "../../statics/dist/src/base.d.ts",
3001
+ "../../statics/dist/src/coins.d.ts",
3002
+ "../../statics/dist/src/errors.d.ts",
3003
+ "../../statics/dist/src/map.d.ts",
3004
+ "../../statics/dist/src/networks.d.ts",
3005
+ "../../statics/dist/src/ofc.d.ts",
3006
+ "../../statics/dist/src/utxo.d.ts"
3007
+ ],
3008
+ "../../statics/dist/src/map.d.ts": [
3009
+ "../../../node_modules/@types/node/util.d.ts",
3010
+ "../../statics/dist/src/base.d.ts"
3011
+ ],
3012
+ "../../statics/dist/src/networks.d.ts": [
3013
+ "../../../node_modules/@types/node/util.d.ts",
3014
+ "../../statics/dist/src/base.d.ts"
3015
+ ],
3016
+ "../../statics/dist/src/ofc.d.ts": [
3017
+ "../../../node_modules/@types/node/util.d.ts",
3018
+ "../../statics/dist/src/base.d.ts",
3019
+ "../../statics/dist/src/networks.d.ts"
3020
+ ],
3021
+ "../../statics/dist/src/utxo.d.ts": [
3022
+ "../../../node_modules/@types/node/util.d.ts",
3023
+ "../../statics/dist/src/base.d.ts",
3024
+ "../../statics/dist/src/networks.d.ts"
3025
+ ],
3026
+ "../../../node_modules/@stablelib/hex/lib/hex.d.ts": [
3027
+ "../../../node_modules/@types/node/util.d.ts"
3028
+ ],
1935
3029
  "../../../node_modules/@types/archy/index.d.ts": [
1936
3030
  "../../../node_modules/@types/node/util.d.ts"
1937
3031
  ],
1938
3032
  "../../../node_modules/@types/argparse/index.d.ts": [
1939
3033
  "../../../node_modules/@types/node/util.d.ts"
1940
3034
  ],
3035
+ "../../../node_modules/@types/aria-query/index.d.ts": [
3036
+ "../../../node_modules/@types/node/util.d.ts"
3037
+ ],
1941
3038
  "../../../node_modules/@types/bluebird/index.d.ts": [
1942
3039
  "../../../node_modules/@types/node/util.d.ts"
1943
3040
  ],
@@ -1951,10 +3048,21 @@
1951
3048
  "../../../node_modules/@types/node/index.d.ts",
1952
3049
  "../../../node_modules/@types/node/util.d.ts"
1953
3050
  ],
3051
+ "../../../node_modules/@types/bonjour/index.d.ts": [
3052
+ "../../../node_modules/@types/node/dgram.d.ts",
3053
+ "../../../node_modules/@types/node/index.d.ts",
3054
+ "../../../node_modules/@types/node/util.d.ts"
3055
+ ],
1954
3056
  "../../../node_modules/@types/bs58/index.d.ts": [
1955
3057
  "../../../node_modules/@types/node/util.d.ts",
1956
3058
  "../../../node_modules/base-x/src/index.d.ts"
1957
3059
  ],
3060
+ "../../../node_modules/@types/connect-history-api-fallback/index.d.ts": [
3061
+ "../../../node_modules/@types/express-serve-static-core/index.d.ts",
3062
+ "../../../node_modules/@types/node/index.d.ts",
3063
+ "../../../node_modules/@types/node/url.d.ts",
3064
+ "../../../node_modules/@types/node/util.d.ts"
3065
+ ],
1958
3066
  "../../../node_modules/@types/connect/index.d.ts": [
1959
3067
  "../../../node_modules/@types/node/http.d.ts",
1960
3068
  "../../../node_modules/@types/node/index.d.ts",
@@ -2031,6 +3139,13 @@
2031
3139
  "../../../node_modules/@types/qs/index.d.ts",
2032
3140
  "../../../node_modules/@types/range-parser/index.d.ts"
2033
3141
  ],
3142
+ "../../../node_modules/@types/express/index.d.ts": [
3143
+ "../../../node_modules/@types/body-parser/index.d.ts",
3144
+ "../../../node_modules/@types/express-serve-static-core/index.d.ts",
3145
+ "../../../node_modules/@types/node/util.d.ts",
3146
+ "../../../node_modules/@types/qs/index.d.ts",
3147
+ "../../../node_modules/@types/serve-static/index.d.ts"
3148
+ ],
2034
3149
  "../../../node_modules/@types/fs-extra/index.d.ts": [
2035
3150
  "../../../node_modules/@types/node/fs.d.ts",
2036
3151
  "../../../node_modules/@types/node/index.d.ts",
@@ -2046,9 +3161,23 @@
2046
3161
  "../../../node_modules/@types/google-libphonenumber/index.d.ts": [
2047
3162
  "../../../node_modules/@types/node/util.d.ts"
2048
3163
  ],
3164
+ "../../../node_modules/@types/hoist-non-react-statics/index.d.ts": [
3165
+ "../../../node_modules/@types/node/util.d.ts",
3166
+ "../../../node_modules/@types/react/index.d.ts"
3167
+ ],
2049
3168
  "../../../node_modules/@types/html-minifier-terser/index.d.ts": [
2050
3169
  "../../../node_modules/@types/node/util.d.ts"
2051
3170
  ],
3171
+ "../../../node_modules/@types/http-proxy/index.d.ts": [
3172
+ "../../../node_modules/@types/node/events.d.ts",
3173
+ "../../../node_modules/@types/node/http.d.ts",
3174
+ "../../../node_modules/@types/node/https.d.ts",
3175
+ "../../../node_modules/@types/node/index.d.ts",
3176
+ "../../../node_modules/@types/node/net.d.ts",
3177
+ "../../../node_modules/@types/node/stream.d.ts",
3178
+ "../../../node_modules/@types/node/url.d.ts",
3179
+ "../../../node_modules/@types/node/util.d.ts"
3180
+ ],
2052
3181
  "../../../node_modules/@types/jasmine/index.d.ts": [
2053
3182
  "../../../node_modules/@types/node/util.d.ts"
2054
3183
  ],
@@ -2292,11 +3421,17 @@
2292
3421
  ],
2293
3422
  "../../../node_modules/@types/node-fetch/index.d.ts": [
2294
3423
  "../../../node_modules/@types/node-fetch/externals.d.ts",
3424
+ "../../../node_modules/@types/node-fetch/node_modules/form-data/index.d.ts",
2295
3425
  "../../../node_modules/@types/node/http.d.ts",
2296
3426
  "../../../node_modules/@types/node/index.d.ts",
2297
3427
  "../../../node_modules/@types/node/url.d.ts",
2298
- "../../../node_modules/@types/node/util.d.ts",
2299
- "../../../node_modules/form-data/index.d.ts"
3428
+ "../../../node_modules/@types/node/util.d.ts"
3429
+ ],
3430
+ "../../../node_modules/@types/node-fetch/node_modules/form-data/index.d.ts": [
3431
+ "../../../node_modules/@types/node/http.d.ts",
3432
+ "../../../node_modules/@types/node/index.d.ts",
3433
+ "../../../node_modules/@types/node/stream.d.ts",
3434
+ "../../../node_modules/@types/node/util.d.ts"
2300
3435
  ],
2301
3436
  "../../../node_modules/@types/node/assert.d.ts": [
2302
3437
  "../../../node_modules/@types/node/assert.d.ts",
@@ -2635,6 +3770,9 @@
2635
3770
  "../../../node_modules/@types/node/index.d.ts",
2636
3771
  "../../../node_modules/@types/node/util.d.ts"
2637
3772
  ],
3773
+ "../../../node_modules/@types/prop-types/index.d.ts": [
3774
+ "../../../node_modules/@types/node/util.d.ts"
3775
+ ],
2638
3776
  "../../../node_modules/@types/qs/index.d.ts": [
2639
3777
  "../../../node_modules/@types/node/util.d.ts"
2640
3778
  ],
@@ -2646,10 +3784,38 @@
2646
3784
  "../../../node_modules/@types/range-parser/index.d.ts": [
2647
3785
  "../../../node_modules/@types/node/util.d.ts"
2648
3786
  ],
3787
+ "../../../node_modules/@types/react-dom/index.d.ts": [
3788
+ "../../../node_modules/@types/node/util.d.ts",
3789
+ "../../../node_modules/@types/react/index.d.ts"
3790
+ ],
3791
+ "../../../node_modules/@types/react/global.d.ts": [
3792
+ "../../../node_modules/@types/node/util.d.ts"
3793
+ ],
3794
+ "../../../node_modules/@types/react/index.d.ts": [
3795
+ "../../../node_modules/@types/node/util.d.ts",
3796
+ "../../../node_modules/@types/prop-types/index.d.ts",
3797
+ "../../../node_modules/@types/react/global.d.ts",
3798
+ "../../../node_modules/@types/scheduler/tracing.d.ts",
3799
+ "../../../node_modules/csstype/index.d.ts"
3800
+ ],
3801
+ "../../../node_modules/@types/retry/index.d.ts": [
3802
+ "../../../node_modules/@types/node/util.d.ts"
3803
+ ],
3804
+ "../../../node_modules/@types/scheduler/index.d.ts": [
3805
+ "../../../node_modules/@types/node/util.d.ts"
3806
+ ],
3807
+ "../../../node_modules/@types/scheduler/tracing.d.ts": [
3808
+ "../../../node_modules/@types/node/util.d.ts"
3809
+ ],
2649
3810
  "../../../node_modules/@types/secp256k1/index.d.ts": [
2650
3811
  "../../../node_modules/@types/node/index.d.ts",
2651
3812
  "../../../node_modules/@types/node/util.d.ts"
2652
3813
  ],
3814
+ "../../../node_modules/@types/serve-index/index.d.ts": [
3815
+ "../../../node_modules/@types/express/index.d.ts",
3816
+ "../../../node_modules/@types/node/fs.d.ts",
3817
+ "../../../node_modules/@types/node/util.d.ts"
3818
+ ],
2653
3819
  "../../../node_modules/@types/serve-static/index.d.ts": [
2654
3820
  "../../../node_modules/@types/mime/index.d.ts",
2655
3821
  "../../../node_modules/@types/node/http.d.ts",
@@ -2667,6 +3833,23 @@
2667
3833
  "../../../node_modules/@types/sinonjs__fake-timers/index.d.ts": [
2668
3834
  "../../../node_modules/@types/node/util.d.ts"
2669
3835
  ],
3836
+ "../../../node_modules/@types/sizzle/index.d.ts": [
3837
+ "../../../node_modules/@types/node/util.d.ts"
3838
+ ],
3839
+ "../../../node_modules/@types/sockjs/index.d.ts": [
3840
+ "../../../node_modules/@types/node/http.d.ts",
3841
+ "../../../node_modules/@types/node/index.d.ts",
3842
+ "../../../node_modules/@types/node/util.d.ts"
3843
+ ],
3844
+ "../../../node_modules/@types/source-list-map/index.d.ts": [
3845
+ "../../../node_modules/@types/node/util.d.ts"
3846
+ ],
3847
+ "../../../node_modules/@types/styled-components/index.d.ts": [
3848
+ "../../../node_modules/@types/hoist-non-react-statics/index.d.ts",
3849
+ "../../../node_modules/@types/node/util.d.ts",
3850
+ "../../../node_modules/@types/react/index.d.ts",
3851
+ "../../../node_modules/csstype/index.d.ts"
3852
+ ],
2670
3853
  "../../../node_modules/@types/superagent/index.d.ts": [
2671
3854
  "../../../node_modules/@types/cookiejar/index.d.ts",
2672
3855
  "../../../node_modules/@types/node/buffer.d.ts",
@@ -2680,6 +3863,13 @@
2680
3863
  "../../../node_modules/@types/node/util.d.ts",
2681
3864
  "../../../node_modules/@types/superagent/index.d.ts"
2682
3865
  ],
3866
+ "../../../node_modules/@types/tapable/index.d.ts": [
3867
+ "../../../node_modules/@types/node/util.d.ts"
3868
+ ],
3869
+ "../../../node_modules/@types/uglify-js/index.d.ts": [
3870
+ "../../../node_modules/@types/node/util.d.ts",
3871
+ "../../../node_modules/source-map/source-map.d.ts"
3872
+ ],
2683
3873
  "../../../node_modules/@types/urijs/dom-monkeypatch.d.ts": [
2684
3874
  "../../../node_modules/@types/node/util.d.ts"
2685
3875
  ],
@@ -2690,6 +3880,104 @@
2690
3880
  "../../../node_modules/@types/utf8/index.d.ts": [
2691
3881
  "../../../node_modules/@types/node/util.d.ts"
2692
3882
  ],
3883
+ "../../../node_modules/@types/webpack-sources/index.d.ts": [
3884
+ "../../../node_modules/@types/node/index.d.ts",
3885
+ "../../../node_modules/@types/node/util.d.ts",
3886
+ "../../../node_modules/@types/webpack-sources/lib/cachedsource.d.ts",
3887
+ "../../../node_modules/@types/webpack-sources/lib/compatsource.d.ts",
3888
+ "../../../node_modules/@types/webpack-sources/lib/concatsource.d.ts",
3889
+ "../../../node_modules/@types/webpack-sources/lib/index.d.ts",
3890
+ "../../../node_modules/@types/webpack-sources/lib/originalsource.d.ts",
3891
+ "../../../node_modules/@types/webpack-sources/lib/prefixsource.d.ts",
3892
+ "../../../node_modules/@types/webpack-sources/lib/rawsource.d.ts",
3893
+ "../../../node_modules/@types/webpack-sources/lib/replacesource.d.ts",
3894
+ "../../../node_modules/@types/webpack-sources/lib/sizeonlysource.d.ts",
3895
+ "../../../node_modules/@types/webpack-sources/lib/source.d.ts",
3896
+ "../../../node_modules/@types/webpack-sources/lib/sourcemapsource.d.ts"
3897
+ ],
3898
+ "../../../node_modules/@types/webpack-sources/lib/cachedsource.d.ts": [
3899
+ "../../../node_modules/@types/node/util.d.ts",
3900
+ "../../../node_modules/@types/webpack-sources/lib/index.d.ts",
3901
+ "../../../node_modules/@types/webpack-sources/lib/source.d.ts",
3902
+ "../../../node_modules/@types/webpack-sources/node_modules/source-map/source-map.d.ts"
3903
+ ],
3904
+ "../../../node_modules/@types/webpack-sources/lib/compatsource.d.ts": [
3905
+ "../../../node_modules/@types/node/util.d.ts",
3906
+ "../../../node_modules/@types/webpack-sources/lib/index.d.ts",
3907
+ "../../../node_modules/@types/webpack-sources/lib/source.d.ts"
3908
+ ],
3909
+ "../../../node_modules/@types/webpack-sources/lib/concatsource.d.ts": [
3910
+ "../../../node_modules/@types/node/util.d.ts",
3911
+ "../../../node_modules/@types/source-list-map/index.d.ts",
3912
+ "../../../node_modules/@types/webpack-sources/lib/index.d.ts",
3913
+ "../../../node_modules/@types/webpack-sources/lib/source.d.ts",
3914
+ "../../../node_modules/@types/webpack-sources/node_modules/source-map/source-map.d.ts"
3915
+ ],
3916
+ "../../../node_modules/@types/webpack-sources/lib/index.d.ts": [
3917
+ "../../../node_modules/@types/node/util.d.ts",
3918
+ "../../../node_modules/@types/webpack-sources/lib/cachedsource.d.ts",
3919
+ "../../../node_modules/@types/webpack-sources/lib/compatsource.d.ts",
3920
+ "../../../node_modules/@types/webpack-sources/lib/concatsource.d.ts",
3921
+ "../../../node_modules/@types/webpack-sources/lib/originalsource.d.ts",
3922
+ "../../../node_modules/@types/webpack-sources/lib/prefixsource.d.ts",
3923
+ "../../../node_modules/@types/webpack-sources/lib/rawsource.d.ts",
3924
+ "../../../node_modules/@types/webpack-sources/lib/replacesource.d.ts",
3925
+ "../../../node_modules/@types/webpack-sources/lib/sizeonlysource.d.ts",
3926
+ "../../../node_modules/@types/webpack-sources/lib/source.d.ts",
3927
+ "../../../node_modules/@types/webpack-sources/lib/sourcemapsource.d.ts",
3928
+ "../../../node_modules/@types/webpack-sources/node_modules/source-map/source-map.d.ts"
3929
+ ],
3930
+ "../../../node_modules/@types/webpack-sources/lib/originalsource.d.ts": [
3931
+ "../../../node_modules/@types/node/util.d.ts",
3932
+ "../../../node_modules/@types/source-list-map/index.d.ts",
3933
+ "../../../node_modules/@types/webpack-sources/lib/index.d.ts",
3934
+ "../../../node_modules/@types/webpack-sources/lib/source.d.ts",
3935
+ "../../../node_modules/@types/webpack-sources/node_modules/source-map/source-map.d.ts"
3936
+ ],
3937
+ "../../../node_modules/@types/webpack-sources/lib/prefixsource.d.ts": [
3938
+ "../../../node_modules/@types/node/util.d.ts",
3939
+ "../../../node_modules/@types/webpack-sources/lib/index.d.ts",
3940
+ "../../../node_modules/@types/webpack-sources/lib/source.d.ts"
3941
+ ],
3942
+ "../../../node_modules/@types/webpack-sources/lib/rawsource.d.ts": [
3943
+ "../../../node_modules/@types/node/util.d.ts",
3944
+ "../../../node_modules/@types/webpack-sources/lib/index.d.ts",
3945
+ "../../../node_modules/@types/webpack-sources/lib/source.d.ts"
3946
+ ],
3947
+ "../../../node_modules/@types/webpack-sources/lib/replacesource.d.ts": [
3948
+ "../../../node_modules/@types/node/util.d.ts",
3949
+ "../../../node_modules/@types/webpack-sources/lib/index.d.ts",
3950
+ "../../../node_modules/@types/webpack-sources/lib/source.d.ts"
3951
+ ],
3952
+ "../../../node_modules/@types/webpack-sources/lib/sizeonlysource.d.ts": [
3953
+ "../../../node_modules/@types/node/util.d.ts",
3954
+ "../../../node_modules/@types/webpack-sources/lib/source.d.ts"
3955
+ ],
3956
+ "../../../node_modules/@types/webpack-sources/lib/source.d.ts": [
3957
+ "../../../node_modules/@types/node/crypto.d.ts",
3958
+ "../../../node_modules/@types/node/util.d.ts",
3959
+ "../../../node_modules/@types/webpack-sources/lib/index.d.ts",
3960
+ "../../../node_modules/@types/webpack-sources/node_modules/source-map/source-map.d.ts"
3961
+ ],
3962
+ "../../../node_modules/@types/webpack-sources/lib/sourcemapsource.d.ts": [
3963
+ "../../../node_modules/@types/node/util.d.ts",
3964
+ "../../../node_modules/@types/webpack-sources/lib/index.d.ts",
3965
+ "../../../node_modules/@types/webpack-sources/lib/source.d.ts",
3966
+ "../../../node_modules/@types/webpack-sources/node_modules/source-map/source-map.d.ts"
3967
+ ],
3968
+ "../../../node_modules/@types/webpack-sources/node_modules/source-map/source-map.d.ts": [
3969
+ "../../../node_modules/@types/node/util.d.ts"
3970
+ ],
3971
+ "../../../node_modules/@types/webpack/index.d.ts": [
3972
+ "../../../node_modules/@types/node/crypto.d.ts",
3973
+ "../../../node_modules/@types/node/index.d.ts",
3974
+ "../../../node_modules/@types/node/util.d.ts",
3975
+ "../../../node_modules/@types/uglify-js/index.d.ts",
3976
+ "../../../node_modules/@types/webpack-sources/index.d.ts",
3977
+ "../../../node_modules/anymatch/index.d.ts",
3978
+ "../../../node_modules/source-map/source-map.d.ts",
3979
+ "../../../node_modules/tapable/tapable.d.ts"
3980
+ ],
2693
3981
  "../../../node_modules/@types/websocket/index.d.ts": [
2694
3982
  "../../../node_modules/@types/node/events.d.ts",
2695
3983
  "../../../node_modules/@types/node/http.d.ts",
@@ -2704,7 +3992,8 @@
2704
3992
  "../../../node_modules/@types/node/http.d.ts",
2705
3993
  "../../../node_modules/@types/node/https.d.ts",
2706
3994
  "../../../node_modules/@types/node/index.d.ts",
2707
- "../../../node_modules/@types/node/net.d.ts",
3995
+ "../../../node_modules/@types/node/stream.d.ts",
3996
+ "../../../node_modules/@types/node/tls.d.ts",
2708
3997
  "../../../node_modules/@types/node/url.d.ts",
2709
3998
  "../../../node_modules/@types/node/util.d.ts",
2710
3999
  "../../../node_modules/@types/node/zlib.d.ts"
@@ -2716,6 +4005,15 @@
2716
4005
  "../../../node_modules/@types/node/util.d.ts",
2717
4006
  "../../../node_modules/@types/yargs-parser/index.d.ts"
2718
4007
  ],
4008
+ "../../../node_modules/@types/yauzl/index.d.ts": [
4009
+ "../../../node_modules/@types/node/events.d.ts",
4010
+ "../../../node_modules/@types/node/index.d.ts",
4011
+ "../../../node_modules/@types/node/stream.d.ts",
4012
+ "../../../node_modules/@types/node/util.d.ts"
4013
+ ],
4014
+ "../../../node_modules/anymatch/index.d.ts": [
4015
+ "../../../node_modules/@types/node/util.d.ts"
4016
+ ],
2719
4017
  "../../../node_modules/base-x/src/index.d.ts": [
2720
4018
  "../../../node_modules/@types/node/index.d.ts",
2721
4019
  "../../../node_modules/@types/node/util.d.ts"
@@ -2723,18 +4021,185 @@
2723
4021
  "../../../node_modules/bignumber.js/bignumber.d.ts": [
2724
4022
  "../../../node_modules/@types/node/util.d.ts"
2725
4023
  ],
2726
- "../../../node_modules/buffer/index.d.ts": [
4024
+ "../../../node_modules/bip174/src/lib/interfaces.d.ts": [
4025
+ "../../../node_modules/@types/node/index.d.ts",
2727
4026
  "../../../node_modules/@types/node/util.d.ts"
2728
4027
  ],
2729
- "../../../node_modules/form-data/index.d.ts": [
2730
- "../../../node_modules/@types/node/http.d.ts",
4028
+ "../../../node_modules/bip174/src/lib/psbt.d.ts": [
2731
4029
  "../../../node_modules/@types/node/index.d.ts",
2732
- "../../../node_modules/@types/node/stream.d.ts",
4030
+ "../../../node_modules/@types/node/util.d.ts",
4031
+ "../../../node_modules/bip174/src/lib/interfaces.d.ts"
4032
+ ],
4033
+ "../../../node_modules/bip32/types/bip32.d.ts": [
4034
+ "../../../node_modules/@types/node/index.d.ts",
4035
+ "../../../node_modules/@types/node/util.d.ts"
4036
+ ],
4037
+ "../../../node_modules/bip32/types/index.d.ts": [
4038
+ "../../../node_modules/@types/node/util.d.ts",
4039
+ "../../../node_modules/bip32/types/bip32.d.ts"
4040
+ ],
4041
+ "../../../node_modules/bitcoinjs-lib/types/address.d.ts": [
4042
+ "../../../node_modules/@types/node/index.d.ts",
4043
+ "../../../node_modules/@types/node/util.d.ts",
4044
+ "../../../node_modules/bitcoinjs-lib/types/networks.d.ts"
4045
+ ],
4046
+ "../../../node_modules/bitcoinjs-lib/types/block.d.ts": [
4047
+ "../../../node_modules/@types/node/index.d.ts",
4048
+ "../../../node_modules/@types/node/util.d.ts",
4049
+ "../../../node_modules/bitcoinjs-lib/types/transaction.d.ts"
4050
+ ],
4051
+ "../../../node_modules/bitcoinjs-lib/types/classify.d.ts": [
4052
+ "../../../node_modules/@types/node/index.d.ts",
4053
+ "../../../node_modules/@types/node/util.d.ts"
4054
+ ],
4055
+ "../../../node_modules/bitcoinjs-lib/types/crypto.d.ts": [
4056
+ "../../../node_modules/@types/node/index.d.ts",
4057
+ "../../../node_modules/@types/node/util.d.ts"
4058
+ ],
4059
+ "../../../node_modules/bitcoinjs-lib/types/ecpair.d.ts": [
4060
+ "../../../node_modules/@types/node/index.d.ts",
4061
+ "../../../node_modules/@types/node/util.d.ts",
4062
+ "../../../node_modules/bitcoinjs-lib/types/networks.d.ts"
4063
+ ],
4064
+ "../../../node_modules/bitcoinjs-lib/types/index.d.ts": [
4065
+ "../../../node_modules/@types/node/util.d.ts",
4066
+ "../../../node_modules/bip32/types/index.d.ts",
4067
+ "../../../node_modules/bitcoinjs-lib/types/address.d.ts",
4068
+ "../../../node_modules/bitcoinjs-lib/types/block.d.ts",
4069
+ "../../../node_modules/bitcoinjs-lib/types/classify.d.ts",
4070
+ "../../../node_modules/bitcoinjs-lib/types/crypto.d.ts",
4071
+ "../../../node_modules/bitcoinjs-lib/types/ecpair.d.ts",
4072
+ "../../../node_modules/bitcoinjs-lib/types/networks.d.ts",
4073
+ "../../../node_modules/bitcoinjs-lib/types/payments/index.d.ts",
4074
+ "../../../node_modules/bitcoinjs-lib/types/psbt.d.ts",
4075
+ "../../../node_modules/bitcoinjs-lib/types/schnorrbip340.d.ts",
4076
+ "../../../node_modules/bitcoinjs-lib/types/script.d.ts",
4077
+ "../../../node_modules/bitcoinjs-lib/types/script_signature.d.ts",
4078
+ "../../../node_modules/bitcoinjs-lib/types/taproot.d.ts",
4079
+ "../../../node_modules/bitcoinjs-lib/types/transaction.d.ts",
4080
+ "../../../node_modules/bitcoinjs-lib/types/transaction_builder.d.ts"
4081
+ ],
4082
+ "../../../node_modules/bitcoinjs-lib/types/networks.d.ts": [
4083
+ "../../../node_modules/@types/node/util.d.ts"
4084
+ ],
4085
+ "../../../node_modules/bitcoinjs-lib/types/payments/embed.d.ts": [
4086
+ "../../../node_modules/@types/node/util.d.ts",
4087
+ "../../../node_modules/bitcoinjs-lib/types/payments/index.d.ts"
4088
+ ],
4089
+ "../../../node_modules/bitcoinjs-lib/types/payments/index.d.ts": [
4090
+ "../../../node_modules/@types/node/index.d.ts",
4091
+ "../../../node_modules/@types/node/util.d.ts",
4092
+ "../../../node_modules/bitcoinjs-lib/types/networks.d.ts",
4093
+ "../../../node_modules/bitcoinjs-lib/types/payments/embed.d.ts",
4094
+ "../../../node_modules/bitcoinjs-lib/types/payments/p2ms.d.ts",
4095
+ "../../../node_modules/bitcoinjs-lib/types/payments/p2pk.d.ts",
4096
+ "../../../node_modules/bitcoinjs-lib/types/payments/p2pkh.d.ts",
4097
+ "../../../node_modules/bitcoinjs-lib/types/payments/p2sh.d.ts",
4098
+ "../../../node_modules/bitcoinjs-lib/types/payments/p2tr.d.ts",
4099
+ "../../../node_modules/bitcoinjs-lib/types/payments/p2tr_ns.d.ts",
4100
+ "../../../node_modules/bitcoinjs-lib/types/payments/p2wpkh.d.ts",
4101
+ "../../../node_modules/bitcoinjs-lib/types/payments/p2wsh.d.ts"
4102
+ ],
4103
+ "../../../node_modules/bitcoinjs-lib/types/payments/p2ms.d.ts": [
4104
+ "../../../node_modules/@types/node/util.d.ts",
4105
+ "../../../node_modules/bitcoinjs-lib/types/payments/index.d.ts"
4106
+ ],
4107
+ "../../../node_modules/bitcoinjs-lib/types/payments/p2pk.d.ts": [
4108
+ "../../../node_modules/@types/node/util.d.ts",
4109
+ "../../../node_modules/bitcoinjs-lib/types/payments/index.d.ts"
4110
+ ],
4111
+ "../../../node_modules/bitcoinjs-lib/types/payments/p2pkh.d.ts": [
4112
+ "../../../node_modules/@types/node/util.d.ts",
4113
+ "../../../node_modules/bitcoinjs-lib/types/payments/index.d.ts"
4114
+ ],
4115
+ "../../../node_modules/bitcoinjs-lib/types/payments/p2sh.d.ts": [
4116
+ "../../../node_modules/@types/node/util.d.ts",
4117
+ "../../../node_modules/bitcoinjs-lib/types/payments/index.d.ts"
4118
+ ],
4119
+ "../../../node_modules/bitcoinjs-lib/types/payments/p2tr.d.ts": [
4120
+ "../../../node_modules/@types/node/util.d.ts",
4121
+ "../../../node_modules/bitcoinjs-lib/types/payments/index.d.ts"
4122
+ ],
4123
+ "../../../node_modules/bitcoinjs-lib/types/payments/p2tr_ns.d.ts": [
4124
+ "../../../node_modules/@types/node/util.d.ts",
4125
+ "../../../node_modules/bitcoinjs-lib/types/payments/index.d.ts"
4126
+ ],
4127
+ "../../../node_modules/bitcoinjs-lib/types/payments/p2wpkh.d.ts": [
4128
+ "../../../node_modules/@types/node/util.d.ts",
4129
+ "../../../node_modules/bitcoinjs-lib/types/payments/index.d.ts"
4130
+ ],
4131
+ "../../../node_modules/bitcoinjs-lib/types/payments/p2wsh.d.ts": [
4132
+ "../../../node_modules/@types/node/util.d.ts",
4133
+ "../../../node_modules/bitcoinjs-lib/types/payments/index.d.ts"
4134
+ ],
4135
+ "../../../node_modules/bitcoinjs-lib/types/psbt.d.ts": [
4136
+ "../../../node_modules/@types/node/index.d.ts",
4137
+ "../../../node_modules/@types/node/util.d.ts",
4138
+ "../../../node_modules/bip174/src/lib/interfaces.d.ts",
4139
+ "../../../node_modules/bip174/src/lib/psbt.d.ts",
4140
+ "../../../node_modules/bitcoinjs-lib/types/ecpair.d.ts",
4141
+ "../../../node_modules/bitcoinjs-lib/types/networks.d.ts",
4142
+ "../../../node_modules/bitcoinjs-lib/types/transaction.d.ts"
4143
+ ],
4144
+ "../../../node_modules/bitcoinjs-lib/types/schnorrbip340.d.ts": [
4145
+ "../../../node_modules/@types/node/index.d.ts",
4146
+ "../../../node_modules/@types/node/util.d.ts"
4147
+ ],
4148
+ "../../../node_modules/bitcoinjs-lib/types/script.d.ts": [
4149
+ "../../../node_modules/@types/node/index.d.ts",
4150
+ "../../../node_modules/@types/node/util.d.ts",
4151
+ "../../../node_modules/bitcoinjs-lib/types/payments/index.d.ts",
4152
+ "../../../node_modules/bitcoinjs-lib/types/script_number.d.ts",
4153
+ "../../../node_modules/bitcoinjs-lib/types/script_signature.d.ts"
4154
+ ],
4155
+ "../../../node_modules/bitcoinjs-lib/types/script_number.d.ts": [
4156
+ "../../../node_modules/@types/node/index.d.ts",
4157
+ "../../../node_modules/@types/node/util.d.ts"
4158
+ ],
4159
+ "../../../node_modules/bitcoinjs-lib/types/script_signature.d.ts": [
4160
+ "../../../node_modules/@types/node/index.d.ts",
4161
+ "../../../node_modules/@types/node/util.d.ts"
4162
+ ],
4163
+ "../../../node_modules/bitcoinjs-lib/types/taproot.d.ts": [
4164
+ "../../../node_modules/@types/node/index.d.ts",
4165
+ "../../../node_modules/@types/node/util.d.ts"
4166
+ ],
4167
+ "../../../node_modules/bitcoinjs-lib/types/transaction.d.ts": [
4168
+ "../../../node_modules/@types/node/index.d.ts",
4169
+ "../../../node_modules/@types/node/util.d.ts"
4170
+ ],
4171
+ "../../../node_modules/bitcoinjs-lib/types/transaction_builder.d.ts": [
4172
+ "../../../node_modules/@types/node/index.d.ts",
4173
+ "../../../node_modules/@types/node/util.d.ts",
4174
+ "../../../node_modules/bitcoinjs-lib/types/ecpair.d.ts",
4175
+ "../../../node_modules/bitcoinjs-lib/types/networks.d.ts",
4176
+ "../../../node_modules/bitcoinjs-lib/types/transaction.d.ts"
4177
+ ],
4178
+ "../../../node_modules/buffer/index.d.ts": [
4179
+ "../../../node_modules/@types/node/util.d.ts"
4180
+ ],
4181
+ "../../../node_modules/csstype/index.d.ts": [
4182
+ "../../../node_modules/@types/node/util.d.ts"
4183
+ ],
4184
+ "../../../node_modules/noble-bls12-381/index.d.ts": [
4185
+ "../../../node_modules/@types/node/util.d.ts",
4186
+ "../../../node_modules/noble-bls12-381/math.d.ts"
4187
+ ],
4188
+ "../../../node_modules/noble-bls12-381/math.d.ts": [
2733
4189
  "../../../node_modules/@types/node/util.d.ts"
2734
4190
  ],
2735
4191
  "../../../node_modules/should/should.d.ts": [
2736
4192
  "../../../node_modules/@types/node/util.d.ts"
2737
4193
  ],
4194
+ "../../../node_modules/source-map/source-map.d.ts": [
4195
+ "../../../node_modules/@types/node/util.d.ts"
4196
+ ],
4197
+ "../../../node_modules/tapable/tapable.d.ts": [
4198
+ "../../../node_modules/@types/node/util.d.ts"
4199
+ ],
4200
+ "../../../node_modules/tweetnacl/nacl.d.ts": [
4201
+ "../../../node_modules/@types/node/util.d.ts"
4202
+ ],
2738
4203
  "../../../node_modules/typescript/lib/lib.dom.d.ts": [
2739
4204
  "../../../node_modules/@types/node/util.d.ts"
2740
4205
  ],
@@ -2869,18 +4334,46 @@
2869
4334
  ]
2870
4335
  },
2871
4336
  "semanticDiagnosticsPerFile": [
2872
- "../src/bigojsError.ts",
4337
+ "../src/account-lib/basecoin/basekeypair.ts",
4338
+ "../src/account-lib/basecoin/basetransaction.ts",
4339
+ "../src/account-lib/basecoin/basetransactionbuilder.ts",
4340
+ "../src/account-lib/basecoin/basetransactionbuilderfactory.ts",
4341
+ "../src/account-lib/basecoin/baseutils.ts",
4342
+ "../src/account-lib/basecoin/blskeypair.ts",
4343
+ "../src/account-lib/basecoin/ed25519keypair.ts",
4344
+ "../src/account-lib/basecoin/enum.ts",
4345
+ "../src/account-lib/basecoin/errors.ts",
4346
+ "../src/account-lib/basecoin/iface.ts",
4347
+ "../src/account-lib/basecoin/index.ts",
4348
+ "../src/account-lib/basecoin/secp256k1extendedkeypair.ts",
4349
+ "../src/account-lib/index.ts",
4350
+ "../src/account-lib/util/crypto.ts",
4351
+ "../src/account-lib/util/ed25519keyderiver.ts",
4352
+ "../src/bigojserror.ts",
2873
4353
  "../src/common.ts",
2874
4354
  "../src/index.ts",
2875
4355
  "../src/v2/environments.ts",
2876
4356
  "../src/v2/index.ts",
2877
4357
  "../src/v2/types.ts",
4358
+ "../../statics/dist/src/account.d.ts",
4359
+ "../../statics/dist/src/base.d.ts",
4360
+ "../../statics/dist/src/coins.d.ts",
4361
+ "../../statics/dist/src/errors.d.ts",
4362
+ "../../statics/dist/src/index.d.ts",
4363
+ "../../statics/dist/src/map.d.ts",
4364
+ "../../statics/dist/src/networks.d.ts",
4365
+ "../../statics/dist/src/ofc.d.ts",
4366
+ "../../statics/dist/src/utxo.d.ts",
4367
+ "../../../node_modules/@stablelib/hex/lib/hex.d.ts",
2878
4368
  "../../../node_modules/@types/archy/index.d.ts",
2879
4369
  "../../../node_modules/@types/argparse/index.d.ts",
4370
+ "../../../node_modules/@types/aria-query/index.d.ts",
2880
4371
  "../../../node_modules/@types/bluebird/index.d.ts",
2881
4372
  "../../../node_modules/@types/bn.js/index.d.ts",
2882
4373
  "../../../node_modules/@types/body-parser/index.d.ts",
4374
+ "../../../node_modules/@types/bonjour/index.d.ts",
2883
4375
  "../../../node_modules/@types/bs58/index.d.ts",
4376
+ "../../../node_modules/@types/connect-history-api-fallback/index.d.ts",
2884
4377
  "../../../node_modules/@types/connect/index.d.ts",
2885
4378
  "../../../node_modules/@types/cookiejar/index.d.ts",
2886
4379
  "../../../node_modules/@types/country-data/index.d.ts",
@@ -2899,10 +4392,13 @@
2899
4392
  "../../../node_modules/@types/eventsource/index.d.ts",
2900
4393
  "../../../node_modules/@types/expect/index.d.ts",
2901
4394
  "../../../node_modules/@types/express-serve-static-core/index.d.ts",
4395
+ "../../../node_modules/@types/express/index.d.ts",
2902
4396
  "../../../node_modules/@types/fs-extra/index.d.ts",
2903
4397
  "../../../node_modules/@types/glob/index.d.ts",
2904
4398
  "../../../node_modules/@types/google-libphonenumber/index.d.ts",
4399
+ "../../../node_modules/@types/hoist-non-react-statics/index.d.ts",
2905
4400
  "../../../node_modules/@types/html-minifier-terser/index.d.ts",
4401
+ "../../../node_modules/@types/http-proxy/index.d.ts",
2906
4402
  "../../../node_modules/@types/jasmine/index.d.ts",
2907
4403
  "../../../node_modules/@types/json-schema/index.d.ts",
2908
4404
  "../../../node_modules/@types/json5/index.d.ts",
@@ -2931,6 +4427,7 @@
2931
4427
  "../../../node_modules/@types/nock/index.d.ts",
2932
4428
  "../../../node_modules/@types/node-fetch/externals.d.ts",
2933
4429
  "../../../node_modules/@types/node-fetch/index.d.ts",
4430
+ "../../../node_modules/@types/node-fetch/node_modules/form-data/index.d.ts",
2934
4431
  "../../../node_modules/@types/node/assert.d.ts",
2935
4432
  "../../../node_modules/@types/node/assert/strict.d.ts",
2936
4433
  "../../../node_modules/@types/node/async_hooks.d.ts",
@@ -2985,28 +4482,92 @@
2985
4482
  "../../../node_modules/@types/normalize-package-data/index.d.ts",
2986
4483
  "../../../node_modules/@types/parse-json/index.d.ts",
2987
4484
  "../../../node_modules/@types/pbkdf2/index.d.ts",
4485
+ "../../../node_modules/@types/prop-types/index.d.ts",
2988
4486
  "../../../node_modules/@types/qs/index.d.ts",
2989
4487
  "../../../node_modules/@types/randombytes/index.d.ts",
2990
4488
  "../../../node_modules/@types/range-parser/index.d.ts",
4489
+ "../../../node_modules/@types/react-dom/index.d.ts",
4490
+ "../../../node_modules/@types/react/global.d.ts",
4491
+ "../../../node_modules/@types/react/index.d.ts",
4492
+ "../../../node_modules/@types/retry/index.d.ts",
4493
+ "../../../node_modules/@types/scheduler/index.d.ts",
4494
+ "../../../node_modules/@types/scheduler/tracing.d.ts",
2991
4495
  "../../../node_modules/@types/secp256k1/index.d.ts",
4496
+ "../../../node_modules/@types/serve-index/index.d.ts",
2992
4497
  "../../../node_modules/@types/serve-static/index.d.ts",
2993
4498
  "../../../node_modules/@types/sha.js/index.d.ts",
2994
4499
  "../../../node_modules/@types/sinon/ts3.1/index.d.ts",
2995
4500
  "../../../node_modules/@types/sinonjs__fake-timers/index.d.ts",
4501
+ "../../../node_modules/@types/sizzle/index.d.ts",
4502
+ "../../../node_modules/@types/sockjs/index.d.ts",
4503
+ "../../../node_modules/@types/source-list-map/index.d.ts",
4504
+ "../../../node_modules/@types/styled-components/index.d.ts",
2996
4505
  "../../../node_modules/@types/superagent/index.d.ts",
2997
4506
  "../../../node_modules/@types/supertest/index.d.ts",
4507
+ "../../../node_modules/@types/tapable/index.d.ts",
4508
+ "../../../node_modules/@types/uglify-js/index.d.ts",
2998
4509
  "../../../node_modules/@types/urijs/dom-monkeypatch.d.ts",
2999
4510
  "../../../node_modules/@types/urijs/index.d.ts",
3000
4511
  "../../../node_modules/@types/utf8/index.d.ts",
4512
+ "../../../node_modules/@types/webpack-sources/index.d.ts",
4513
+ "../../../node_modules/@types/webpack-sources/lib/cachedsource.d.ts",
4514
+ "../../../node_modules/@types/webpack-sources/lib/compatsource.d.ts",
4515
+ "../../../node_modules/@types/webpack-sources/lib/concatsource.d.ts",
4516
+ "../../../node_modules/@types/webpack-sources/lib/index.d.ts",
4517
+ "../../../node_modules/@types/webpack-sources/lib/originalsource.d.ts",
4518
+ "../../../node_modules/@types/webpack-sources/lib/prefixsource.d.ts",
4519
+ "../../../node_modules/@types/webpack-sources/lib/rawsource.d.ts",
4520
+ "../../../node_modules/@types/webpack-sources/lib/replacesource.d.ts",
4521
+ "../../../node_modules/@types/webpack-sources/lib/sizeonlysource.d.ts",
4522
+ "../../../node_modules/@types/webpack-sources/lib/source.d.ts",
4523
+ "../../../node_modules/@types/webpack-sources/lib/sourcemapsource.d.ts",
4524
+ "../../../node_modules/@types/webpack-sources/node_modules/source-map/source-map.d.ts",
4525
+ "../../../node_modules/@types/webpack/index.d.ts",
3001
4526
  "../../../node_modules/@types/websocket/index.d.ts",
3002
4527
  "../../../node_modules/@types/ws/index.d.ts",
3003
4528
  "../../../node_modules/@types/yargs-parser/index.d.ts",
3004
4529
  "../../../node_modules/@types/yargs/index.d.ts",
4530
+ "../../../node_modules/@types/yauzl/index.d.ts",
4531
+ "../../../node_modules/anymatch/index.d.ts",
3005
4532
  "../../../node_modules/base-x/src/index.d.ts",
3006
4533
  "../../../node_modules/bignumber.js/bignumber.d.ts",
4534
+ "../../../node_modules/bip174/src/lib/interfaces.d.ts",
4535
+ "../../../node_modules/bip174/src/lib/psbt.d.ts",
4536
+ "../../../node_modules/bip32/types/bip32.d.ts",
4537
+ "../../../node_modules/bip32/types/index.d.ts",
4538
+ "../../../node_modules/bitcoinjs-lib/types/address.d.ts",
4539
+ "../../../node_modules/bitcoinjs-lib/types/block.d.ts",
4540
+ "../../../node_modules/bitcoinjs-lib/types/classify.d.ts",
4541
+ "../../../node_modules/bitcoinjs-lib/types/crypto.d.ts",
4542
+ "../../../node_modules/bitcoinjs-lib/types/ecpair.d.ts",
4543
+ "../../../node_modules/bitcoinjs-lib/types/index.d.ts",
4544
+ "../../../node_modules/bitcoinjs-lib/types/networks.d.ts",
4545
+ "../../../node_modules/bitcoinjs-lib/types/payments/embed.d.ts",
4546
+ "../../../node_modules/bitcoinjs-lib/types/payments/index.d.ts",
4547
+ "../../../node_modules/bitcoinjs-lib/types/payments/p2ms.d.ts",
4548
+ "../../../node_modules/bitcoinjs-lib/types/payments/p2pk.d.ts",
4549
+ "../../../node_modules/bitcoinjs-lib/types/payments/p2pkh.d.ts",
4550
+ "../../../node_modules/bitcoinjs-lib/types/payments/p2sh.d.ts",
4551
+ "../../../node_modules/bitcoinjs-lib/types/payments/p2tr.d.ts",
4552
+ "../../../node_modules/bitcoinjs-lib/types/payments/p2tr_ns.d.ts",
4553
+ "../../../node_modules/bitcoinjs-lib/types/payments/p2wpkh.d.ts",
4554
+ "../../../node_modules/bitcoinjs-lib/types/payments/p2wsh.d.ts",
4555
+ "../../../node_modules/bitcoinjs-lib/types/psbt.d.ts",
4556
+ "../../../node_modules/bitcoinjs-lib/types/schnorrbip340.d.ts",
4557
+ "../../../node_modules/bitcoinjs-lib/types/script.d.ts",
4558
+ "../../../node_modules/bitcoinjs-lib/types/script_number.d.ts",
4559
+ "../../../node_modules/bitcoinjs-lib/types/script_signature.d.ts",
4560
+ "../../../node_modules/bitcoinjs-lib/types/taproot.d.ts",
4561
+ "../../../node_modules/bitcoinjs-lib/types/transaction.d.ts",
4562
+ "../../../node_modules/bitcoinjs-lib/types/transaction_builder.d.ts",
3007
4563
  "../../../node_modules/buffer/index.d.ts",
3008
- "../../../node_modules/form-data/index.d.ts",
4564
+ "../../../node_modules/csstype/index.d.ts",
4565
+ "../../../node_modules/noble-bls12-381/index.d.ts",
4566
+ "../../../node_modules/noble-bls12-381/math.d.ts",
3009
4567
  "../../../node_modules/should/should.d.ts",
4568
+ "../../../node_modules/source-map/source-map.d.ts",
4569
+ "../../../node_modules/tapable/tapable.d.ts",
4570
+ "../../../node_modules/tweetnacl/nacl.d.ts",
3010
4571
  "../../../node_modules/typescript/lib/lib.dom.d.ts",
3011
4572
  "../../../node_modules/typescript/lib/lib.es2015.collection.d.ts",
3012
4573
  "../../../node_modules/typescript/lib/lib.es2015.core.d.ts",