@bitgo/sdk-core 2.0.0-rc.0 → 2.0.0-rc.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +157 -0
- package/dist/src/account-lib/baseCoin/blsKeyPair.d.ts +2 -0
- package/dist/src/account-lib/baseCoin/blsKeyPair.d.ts.map +1 -1
- package/dist/src/account-lib/baseCoin/blsKeyPair.js +49 -19
- package/dist/src/account-lib/baseCoin/errors.d.ts +3 -0
- package/dist/src/account-lib/baseCoin/errors.d.ts.map +1 -1
- package/dist/src/account-lib/baseCoin/errors.js +8 -2
- package/dist/src/account-lib/baseCoin/iface.d.ts +2 -0
- package/dist/src/account-lib/baseCoin/iface.d.ts.map +1 -1
- package/dist/src/account-lib/baseCoin/iface.js +1 -1
- package/dist/src/account-lib/baseCoin/secp256k1ExtendedKeyPair.d.ts +5 -5
- package/dist/src/account-lib/baseCoin/secp256k1ExtendedKeyPair.d.ts.map +1 -1
- package/dist/src/account-lib/baseCoin/secp256k1ExtendedKeyPair.js +9 -10
- package/dist/src/account-lib/mpc/index.d.ts +2 -1
- package/dist/src/account-lib/mpc/index.d.ts.map +1 -1
- package/dist/src/account-lib/mpc/index.js +7 -2
- package/dist/src/account-lib/mpc/shamir.d.ts +3 -2
- package/dist/src/account-lib/mpc/shamir.d.ts.map +1 -1
- package/dist/src/account-lib/mpc/shamir.js +41 -27
- package/dist/src/account-lib/mpc/tss/ecdsa/ecdsa.d.ts +5 -2
- package/dist/src/account-lib/mpc/tss/ecdsa/ecdsa.d.ts.map +1 -1
- package/dist/src/account-lib/mpc/tss/ecdsa/ecdsa.js +7 -5
- package/dist/src/account-lib/mpc/tss/eddsa/eddsa.d.ts.map +1 -1
- package/dist/src/account-lib/mpc/tss/eddsa/eddsa.js +4 -3
- package/dist/src/account-lib/util/crypto.d.ts +1 -1
- package/dist/src/account-lib/util/crypto.d.ts.map +1 -1
- package/dist/src/account-lib/util/crypto.js +17 -14
- package/dist/src/bitgo/baseCoin/baseCoin.d.ts +10 -1
- package/dist/src/bitgo/baseCoin/baseCoin.d.ts.map +1 -1
- package/dist/src/bitgo/baseCoin/baseCoin.js +17 -4
- package/dist/src/bitgo/baseCoin/iBaseCoin.d.ts +8 -2
- package/dist/src/bitgo/baseCoin/iBaseCoin.d.ts.map +1 -1
- package/dist/src/bitgo/baseCoin/iBaseCoin.js +1 -1
- package/dist/src/bitgo/bip32util.d.ts +3 -3
- package/dist/src/bitgo/bip32util.d.ts.map +1 -1
- package/dist/src/bitgo/bip32util.js +1 -1
- package/dist/src/bitgo/bitcoin.d.ts +4 -3
- package/dist/src/bitgo/bitcoin.d.ts.map +1 -1
- package/dist/src/bitgo/bitcoin.js +1 -1
- package/dist/src/bitgo/config.d.ts +12 -0
- package/dist/src/bitgo/config.d.ts.map +1 -1
- package/dist/src/bitgo/ecdh.d.ts +3 -3
- package/dist/src/bitgo/ecdh.d.ts.map +1 -1
- package/dist/src/bitgo/ecdh.js +1 -1
- package/dist/src/bitgo/environments.d.ts +1 -0
- package/dist/src/bitgo/environments.d.ts.map +1 -1
- package/dist/src/bitgo/environments.js +3 -1
- package/dist/src/bitgo/index.d.ts +2 -0
- package/dist/src/bitgo/index.d.ts.map +1 -1
- package/dist/src/bitgo/index.js +4 -2
- package/dist/src/bitgo/keychain/keychains.d.ts.map +1 -1
- package/dist/src/bitgo/keychain/keychains.js +2 -2
- package/dist/src/bitgo/legacyBitcoin.d.ts +38 -0
- package/dist/src/bitgo/legacyBitcoin.d.ts.map +1 -0
- package/dist/src/bitgo/legacyBitcoin.js +97 -0
- package/dist/src/bitgo/lightning/iLightning.d.ts +180 -0
- package/dist/src/bitgo/lightning/iLightning.d.ts.map +1 -0
- package/dist/src/bitgo/lightning/iLightning.js +92 -0
- package/dist/src/bitgo/lightning/index.d.ts +5 -0
- package/dist/src/bitgo/lightning/index.d.ts.map +1 -0
- package/dist/src/bitgo/lightning/index.js +17 -0
- package/dist/src/bitgo/lightning/lightning.d.ts +19 -0
- package/dist/src/bitgo/lightning/lightning.d.ts.map +1 -0
- package/dist/src/bitgo/lightning/lightning.js +92 -0
- package/dist/src/bitgo/lightning/lightningUtils.d.ts +26 -0
- package/dist/src/bitgo/lightning/lightningUtils.d.ts.map +1 -0
- package/dist/src/bitgo/lightning/lightningUtils.js +123 -0
- package/dist/src/bitgo/lightning/lnurlCodec.d.ts +3 -0
- package/dist/src/bitgo/lightning/lnurlCodec.d.ts.map +1 -0
- package/dist/src/bitgo/lightning/lnurlCodec.js +28 -0
- package/dist/src/bitgo/pendingApproval/pendingApproval.d.ts.map +1 -1
- package/dist/src/bitgo/pendingApproval/pendingApproval.js +3 -2
- package/dist/src/bitgo/recovery/initiate.d.ts +3 -3
- package/dist/src/bitgo/recovery/initiate.d.ts.map +1 -1
- package/dist/src/bitgo/recovery/initiate.js +5 -24
- package/dist/src/bitgo/staking/iStakingWallet.d.ts +32 -0
- package/dist/src/bitgo/staking/iStakingWallet.d.ts.map +1 -1
- package/dist/src/bitgo/staking/iStakingWallet.js +10 -1
- package/dist/src/bitgo/staking/stakingWallet.d.ts +9 -1
- package/dist/src/bitgo/staking/stakingWallet.d.ts.map +1 -1
- package/dist/src/bitgo/staking/stakingWallet.js +19 -4
- package/dist/src/bitgo/tss/ecdsa/ecdsa.d.ts +10 -1
- package/dist/src/bitgo/tss/ecdsa/ecdsa.d.ts.map +1 -1
- package/dist/src/bitgo/tss/ecdsa/ecdsa.js +44 -12
- package/dist/src/bitgo/tss/ecdsa/types.d.ts +5 -0
- package/dist/src/bitgo/tss/ecdsa/types.d.ts.map +1 -1
- package/dist/src/bitgo/tss/ecdsa/types.js +8 -2
- package/dist/src/bitgo/utils/blsUtils.d.ts.map +1 -1
- package/dist/src/bitgo/utils/blsUtils.js +93 -32
- package/dist/src/bitgo/utils/decode.d.ts +15 -0
- package/dist/src/bitgo/utils/decode.d.ts.map +1 -0
- package/dist/src/bitgo/utils/decode.js +56 -0
- package/dist/src/bitgo/utils/opengpgUtils.d.ts +33 -0
- package/dist/src/bitgo/utils/opengpgUtils.d.ts.map +1 -1
- package/dist/src/bitgo/utils/opengpgUtils.js +106 -2
- package/dist/src/bitgo/utils/tss/index.d.ts +1 -1
- package/dist/src/bitgo/utils/tss/index.js +2 -2
- package/dist/src/bitgo/utils/util.js +4 -4
- package/dist/src/bitgo/wallet/iWallet.d.ts +3 -0
- package/dist/src/bitgo/wallet/iWallet.d.ts.map +1 -1
- package/dist/src/bitgo/wallet/iWallet.js +1 -1
- package/dist/src/bitgo/wallet/iWallets.d.ts +1 -0
- package/dist/src/bitgo/wallet/iWallets.d.ts.map +1 -1
- package/dist/src/bitgo/wallet/iWallets.js +1 -1
- package/dist/src/bitgo/wallet/wallet.d.ts +11 -0
- package/dist/src/bitgo/wallet/wallet.d.ts.map +1 -1
- package/dist/src/bitgo/wallet/wallet.js +78 -11
- package/dist/src/bitgo/wallet/wallets.d.ts.map +1 -1
- package/dist/src/bitgo/wallet/wallets.js +5 -3
- package/dist/src/coins/ofc.js +4 -23
- package/dist/tsconfig.tsbuildinfo +1847 -807
- package/package.json +10 -7
|
@@ -197,8 +197,8 @@
|
|
|
197
197
|
"affectsGlobalScope": false
|
|
198
198
|
},
|
|
199
199
|
"../../../node_modules/@types/lodash/common/lang.d.ts": {
|
|
200
|
-
"version": "
|
|
201
|
-
"signature": "
|
|
200
|
+
"version": "6702a1cd8818cb22ee95c85dcf2c31c117bde892e1afd2bc254bd720f4c6263c",
|
|
201
|
+
"signature": "6702a1cd8818cb22ee95c85dcf2c31c117bde892e1afd2bc254bd720f4c6263c",
|
|
202
202
|
"affectsGlobalScope": false
|
|
203
203
|
},
|
|
204
204
|
"../../../node_modules/@types/lodash/common/math.d.ts": {
|
|
@@ -222,8 +222,8 @@
|
|
|
222
222
|
"affectsGlobalScope": false
|
|
223
223
|
},
|
|
224
224
|
"../../../node_modules/@types/lodash/common/string.d.ts": {
|
|
225
|
-
"version": "
|
|
226
|
-
"signature": "
|
|
225
|
+
"version": "3cf0d343c2276842a5b617f22ba82af6322c7cfe8bb52238ffc0c491a3c21019",
|
|
226
|
+
"signature": "3cf0d343c2276842a5b617f22ba82af6322c7cfe8bb52238ffc0c491a3c21019",
|
|
227
227
|
"affectsGlobalScope": false
|
|
228
228
|
},
|
|
229
229
|
"../../../node_modules/@types/lodash/common/util.d.ts": {
|
|
@@ -232,8 +232,8 @@
|
|
|
232
232
|
"affectsGlobalScope": false
|
|
233
233
|
},
|
|
234
234
|
"../../../node_modules/@types/lodash/index.d.ts": {
|
|
235
|
-
"version": "
|
|
236
|
-
"signature": "
|
|
235
|
+
"version": "f2eff8704452659641164876c1ef0df4174659ce7311b0665798ea3f556fa9ad",
|
|
236
|
+
"signature": "f2eff8704452659641164876c1ef0df4174659ce7311b0665798ea3f556fa9ad",
|
|
237
237
|
"affectsGlobalScope": true
|
|
238
238
|
},
|
|
239
239
|
"../../../node_modules/@types/node/globals.d.ts": {
|
|
@@ -451,129 +451,114 @@
|
|
|
451
451
|
"signature": "a2267091f78b005b511883f9f9c464189bdb7550932f9d0f0f79d4301788cba2",
|
|
452
452
|
"affectsGlobalScope": false
|
|
453
453
|
},
|
|
454
|
-
"../../../node_modules/
|
|
455
|
-
"version": "25d0893cf285d63492c8a0506bec26ac7e4790d46b5c582a89dd5ab9bc248c7a",
|
|
456
|
-
"signature": "25d0893cf285d63492c8a0506bec26ac7e4790d46b5c582a89dd5ab9bc248c7a",
|
|
457
|
-
"affectsGlobalScope": false
|
|
458
|
-
},
|
|
459
|
-
"../../../node_modules/bip32/types/index.d.ts": {
|
|
460
|
-
"version": "f74fee4ed5f77ed9e8ee0b2b6105cd5f0f123b64bbeeee7be551ec65a89a0ef4",
|
|
461
|
-
"signature": "f74fee4ed5f77ed9e8ee0b2b6105cd5f0f123b64bbeeee7be551ec65a89a0ef4",
|
|
462
|
-
"affectsGlobalScope": false
|
|
463
|
-
},
|
|
464
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/networks.d.ts": {
|
|
454
|
+
"../../../node_modules/bitcoinjs-lib/src/networks.d.ts": {
|
|
465
455
|
"version": "692cce8a36696e9df80910c05ae3b34340c278bbba03701a9ae92ae038663824",
|
|
466
456
|
"signature": "692cce8a36696e9df80910c05ae3b34340c278bbba03701a9ae92ae038663824",
|
|
467
457
|
"affectsGlobalScope": false
|
|
468
458
|
},
|
|
469
|
-
"
|
|
459
|
+
"../../../node_modules/bitcoinjs-lib/src/address.d.ts": {
|
|
470
460
|
"version": "035fd4564409153531cc683821b48048fd01982a8522c120b5a17f9a6320a229",
|
|
471
461
|
"signature": "035fd4564409153531cc683821b48048fd01982a8522c120b5a17f9a6320a229",
|
|
472
462
|
"affectsGlobalScope": false
|
|
473
463
|
},
|
|
474
|
-
"
|
|
475
|
-
"version": "
|
|
476
|
-
"signature": "
|
|
477
|
-
"affectsGlobalScope": false
|
|
478
|
-
},
|
|
479
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/crypto.d.ts": {
|
|
480
|
-
"version": "efa5b896b87da636844d0ab1d49ebf8951c07cd3814f664ad820af582fec60d7",
|
|
481
|
-
"signature": "efa5b896b87da636844d0ab1d49ebf8951c07cd3814f664ad820af582fec60d7",
|
|
464
|
+
"../../../node_modules/bitcoinjs-lib/src/crypto.d.ts": {
|
|
465
|
+
"version": "f491f3939bf1c85ad2ebe4cdd99d09c2efda9589f5405256bcdd8ff8492f662b",
|
|
466
|
+
"signature": "f491f3939bf1c85ad2ebe4cdd99d09c2efda9589f5405256bcdd8ff8492f662b",
|
|
482
467
|
"affectsGlobalScope": false
|
|
483
468
|
},
|
|
484
|
-
"
|
|
485
|
-
"version": "
|
|
486
|
-
"signature": "
|
|
469
|
+
"../../../node_modules/bitcoinjs-lib/src/types.d.ts": {
|
|
470
|
+
"version": "66978ea7a01c26f9a0432f4c41e7060b4d327f56e243cd297f8a5c77a72b8cf7",
|
|
471
|
+
"signature": "66978ea7a01c26f9a0432f4c41e7060b4d327f56e243cd297f8a5c77a72b8cf7",
|
|
487
472
|
"affectsGlobalScope": false
|
|
488
473
|
},
|
|
489
|
-
"
|
|
474
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/embed.d.ts": {
|
|
490
475
|
"version": "a29a7b9ade7876d0f527b716a5bc5c7bc84554d155577020441f2d3c735589be",
|
|
491
476
|
"signature": "a29a7b9ade7876d0f527b716a5bc5c7bc84554d155577020441f2d3c735589be",
|
|
492
477
|
"affectsGlobalScope": false
|
|
493
478
|
},
|
|
494
|
-
"
|
|
479
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/p2ms.d.ts": {
|
|
495
480
|
"version": "9cd42ff83837551961fa8788f14bd3498306fb2c1d35358f2b6bf3af05bf0890",
|
|
496
481
|
"signature": "9cd42ff83837551961fa8788f14bd3498306fb2c1d35358f2b6bf3af05bf0890",
|
|
497
482
|
"affectsGlobalScope": false
|
|
498
483
|
},
|
|
499
|
-
"
|
|
484
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/p2pk.d.ts": {
|
|
500
485
|
"version": "5e51773d5624b8c871d8d140c88f944466338673fbc60ac4bf409eb60e6665cf",
|
|
501
486
|
"signature": "5e51773d5624b8c871d8d140c88f944466338673fbc60ac4bf409eb60e6665cf",
|
|
502
487
|
"affectsGlobalScope": false
|
|
503
488
|
},
|
|
504
|
-
"
|
|
489
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/p2pkh.d.ts": {
|
|
505
490
|
"version": "39b10cd95b70bbdc1cf8c832002618c3f81cd980438fe5e3694d99286ef90911",
|
|
506
491
|
"signature": "39b10cd95b70bbdc1cf8c832002618c3f81cd980438fe5e3694d99286ef90911",
|
|
507
492
|
"affectsGlobalScope": false
|
|
508
493
|
},
|
|
509
|
-
"
|
|
494
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/p2sh.d.ts": {
|
|
510
495
|
"version": "95244212208717085038a74378ea2a03e49c06a3a195b2826c01c978f14684c2",
|
|
511
496
|
"signature": "95244212208717085038a74378ea2a03e49c06a3a195b2826c01c978f14684c2",
|
|
512
497
|
"affectsGlobalScope": false
|
|
513
498
|
},
|
|
514
|
-
"
|
|
499
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/p2tr.d.ts": {
|
|
515
500
|
"version": "c91084ba90468037b6d266f3cae698aaa76c0864cf076aa099d981d847b74c2d",
|
|
516
501
|
"signature": "c91084ba90468037b6d266f3cae698aaa76c0864cf076aa099d981d847b74c2d",
|
|
517
502
|
"affectsGlobalScope": false
|
|
518
503
|
},
|
|
519
|
-
"
|
|
504
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/p2tr_ns.d.ts": {
|
|
520
505
|
"version": "dc58c9eb8817b8c46f40712df9e588c0c70357931f5ebebb3aa445949de993c8",
|
|
521
506
|
"signature": "dc58c9eb8817b8c46f40712df9e588c0c70357931f5ebebb3aa445949de993c8",
|
|
522
507
|
"affectsGlobalScope": false
|
|
523
508
|
},
|
|
524
|
-
"
|
|
509
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/p2wpkh.d.ts": {
|
|
525
510
|
"version": "7362eeca79ce50eb72b2a0149e323f6d64daf4fbc8067592310859622c3dbcfe",
|
|
526
511
|
"signature": "7362eeca79ce50eb72b2a0149e323f6d64daf4fbc8067592310859622c3dbcfe",
|
|
527
512
|
"affectsGlobalScope": false
|
|
528
513
|
},
|
|
529
|
-
"
|
|
514
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/p2wsh.d.ts": {
|
|
530
515
|
"version": "8c0a305a7b10513d9d07bf739456bf9845bd4336027c85442b674a417facb57a",
|
|
531
516
|
"signature": "8c0a305a7b10513d9d07bf739456bf9845bd4336027c85442b674a417facb57a",
|
|
532
517
|
"affectsGlobalScope": false
|
|
533
518
|
},
|
|
534
|
-
"
|
|
535
|
-
"version": "
|
|
536
|
-
"signature": "
|
|
519
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/index.d.ts": {
|
|
520
|
+
"version": "5d568ba98cf99cc1213089f5ca6cf0ca07bce4b63693ec6722a986149e1519df",
|
|
521
|
+
"signature": "5d568ba98cf99cc1213089f5ca6cf0ca07bce4b63693ec6722a986149e1519df",
|
|
537
522
|
"affectsGlobalScope": false
|
|
538
523
|
},
|
|
539
|
-
"
|
|
540
|
-
"version": "
|
|
541
|
-
"signature": "
|
|
524
|
+
"../../../node_modules/bitcoinjs-lib/src/ops.d.ts": {
|
|
525
|
+
"version": "0f3fa7383d3f2ebed173ff59c102b4a68d10acdff5db4a009b73429ddaa15768",
|
|
526
|
+
"signature": "0f3fa7383d3f2ebed173ff59c102b4a68d10acdff5db4a009b73429ddaa15768",
|
|
542
527
|
"affectsGlobalScope": false
|
|
543
528
|
},
|
|
544
|
-
"
|
|
529
|
+
"../../../node_modules/bitcoinjs-lib/src/script_number.d.ts": {
|
|
545
530
|
"version": "973d36af083ce019e3c38b99ca43cb6815b47082cf1e07215387df336192f447",
|
|
546
531
|
"signature": "973d36af083ce019e3c38b99ca43cb6815b47082cf1e07215387df336192f447",
|
|
547
532
|
"affectsGlobalScope": false
|
|
548
533
|
},
|
|
549
|
-
"
|
|
534
|
+
"../../../node_modules/bitcoinjs-lib/src/script_signature.d.ts": {
|
|
550
535
|
"version": "617012176a8cb5be290ae89040aac88ec74321c2a8b984f01a7ba6eb9a2eddc2",
|
|
551
536
|
"signature": "617012176a8cb5be290ae89040aac88ec74321c2a8b984f01a7ba6eb9a2eddc2",
|
|
552
537
|
"affectsGlobalScope": false
|
|
553
538
|
},
|
|
554
|
-
"
|
|
555
|
-
"version": "
|
|
556
|
-
"signature": "
|
|
539
|
+
"../../../node_modules/bitcoinjs-lib/src/script.d.ts": {
|
|
540
|
+
"version": "2f25953a957da0ad16d44dbdca3b1c9b9ea5e891c011e3533e374aab8c2d2131",
|
|
541
|
+
"signature": "2f25953a957da0ad16d44dbdca3b1c9b9ea5e891c011e3533e374aab8c2d2131",
|
|
557
542
|
"affectsGlobalScope": false
|
|
558
543
|
},
|
|
559
|
-
"
|
|
560
|
-
"version": "
|
|
561
|
-
"signature": "
|
|
544
|
+
"../../../node_modules/bitcoinjs-lib/src/taproot.d.ts": {
|
|
545
|
+
"version": "7dcd5506be87415c2082b7fa5be42ea8013628cc6f5efde6a44c0b37dc07776b",
|
|
546
|
+
"signature": "7dcd5506be87415c2082b7fa5be42ea8013628cc6f5efde6a44c0b37dc07776b",
|
|
562
547
|
"affectsGlobalScope": false
|
|
563
548
|
},
|
|
564
|
-
"
|
|
549
|
+
"../../../node_modules/bitcoinjs-lib/src/transaction.d.ts": {
|
|
565
550
|
"version": "1baeeeb997db8aed5316c164bb2dbae7cc3ac8ba5dadd2c49b5ecdd0d7d4b480",
|
|
566
551
|
"signature": "1baeeeb997db8aed5316c164bb2dbae7cc3ac8ba5dadd2c49b5ecdd0d7d4b480",
|
|
567
552
|
"affectsGlobalScope": false
|
|
568
553
|
},
|
|
569
|
-
"
|
|
554
|
+
"../../../node_modules/bitcoinjs-lib/src/block.d.ts": {
|
|
570
555
|
"version": "83a8c6dbc3c4a5eac6e4e0328bd9e30fdaf53e02eeac194442c2f6aded8f6c3c",
|
|
571
556
|
"signature": "83a8c6dbc3c4a5eac6e4e0328bd9e30fdaf53e02eeac194442c2f6aded8f6c3c",
|
|
572
557
|
"affectsGlobalScope": false
|
|
573
558
|
},
|
|
574
559
|
"../../../node_modules/bip174/src/lib/interfaces.d.ts": {
|
|
575
|
-
"version": "
|
|
576
|
-
"signature": "
|
|
560
|
+
"version": "b971737f2191d0a1c89bbbe3ce9d125726e047be6a72c5508859ac59dfb1b00d",
|
|
561
|
+
"signature": "b971737f2191d0a1c89bbbe3ce9d125726e047be6a72c5508859ac59dfb1b00d",
|
|
577
562
|
"affectsGlobalScope": false
|
|
578
563
|
},
|
|
579
564
|
"../../../node_modules/bip174/src/lib/psbt.d.ts": {
|
|
@@ -581,19 +566,14 @@
|
|
|
581
566
|
"signature": "3da723823982206178406b7c2b8570152c6347a047fa7e59fa46011d10ac26b6",
|
|
582
567
|
"affectsGlobalScope": false
|
|
583
568
|
},
|
|
584
|
-
"
|
|
585
|
-
"version": "
|
|
586
|
-
"signature": "
|
|
569
|
+
"../../../node_modules/bitcoinjs-lib/src/psbt.d.ts": {
|
|
570
|
+
"version": "3b70cf278267beb4992330fa646919943ff90fca4e976df25a535190c4b8cdff",
|
|
571
|
+
"signature": "3b70cf278267beb4992330fa646919943ff90fca4e976df25a535190c4b8cdff",
|
|
587
572
|
"affectsGlobalScope": false
|
|
588
573
|
},
|
|
589
|
-
"
|
|
590
|
-
"version": "
|
|
591
|
-
"signature": "
|
|
592
|
-
"affectsGlobalScope": false
|
|
593
|
-
},
|
|
594
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/index.d.ts": {
|
|
595
|
-
"version": "9e278c765662847ae3711e917bce92d00fdb3724bf54cd3fcef5cb06039bd810",
|
|
596
|
-
"signature": "9e278c765662847ae3711e917bce92d00fdb3724bf54cd3fcef5cb06039bd810",
|
|
574
|
+
"../../../node_modules/bitcoinjs-lib/src/index.d.ts": {
|
|
575
|
+
"version": "daad1018d8845bafd23bb4f09c31cf91d05c462614eba1c1eb9e0f0fa2b248d5",
|
|
576
|
+
"signature": "daad1018d8845bafd23bb4f09c31cf91d05c462614eba1c1eb9e0f0fa2b248d5",
|
|
597
577
|
"affectsGlobalScope": false
|
|
598
578
|
},
|
|
599
579
|
"../../utxo-lib/dist/src/networks.d.ts": {
|
|
@@ -616,9 +596,24 @@
|
|
|
616
596
|
"signature": "b838405edd6c2e68b261abb25dcb55bd223a310541016208ee1b93ba179dfb64",
|
|
617
597
|
"affectsGlobalScope": false
|
|
618
598
|
},
|
|
599
|
+
"../../../node_modules/ecpair/src/networks.d.ts": {
|
|
600
|
+
"version": "27b68a2ade07610435252159b312e3faebd27f2cff4a9c2c6e46669ed0c807ad",
|
|
601
|
+
"signature": "27b68a2ade07610435252159b312e3faebd27f2cff4a9c2c6e46669ed0c807ad",
|
|
602
|
+
"affectsGlobalScope": false
|
|
603
|
+
},
|
|
604
|
+
"../../../node_modules/ecpair/src/ecpair.d.ts": {
|
|
605
|
+
"version": "e6dd511da469bbff19305df11e84ce1701238a27d81837e6b0ee20f5346a6f86",
|
|
606
|
+
"signature": "e6dd511da469bbff19305df11e84ce1701238a27d81837e6b0ee20f5346a6f86",
|
|
607
|
+
"affectsGlobalScope": false
|
|
608
|
+
},
|
|
609
|
+
"../../../node_modules/ecpair/src/index.d.ts": {
|
|
610
|
+
"version": "22efdd0b3d0d96510bb03ffc515cf533e0ba710dcad568dee1cf66df28a69125",
|
|
611
|
+
"signature": "22efdd0b3d0d96510bb03ffc515cf533e0ba710dcad568dee1cf66df28a69125",
|
|
612
|
+
"affectsGlobalScope": false
|
|
613
|
+
},
|
|
619
614
|
"../../utxo-lib/dist/src/bitgo/keyutil.d.ts": {
|
|
620
|
-
"version": "
|
|
621
|
-
"signature": "
|
|
615
|
+
"version": "d2d155d8c33c15911e0a80478505927400c751435746672406b2c2be64d83b0c",
|
|
616
|
+
"signature": "d2d155d8c33c15911e0a80478505927400c751435746672406b2c2be64d83b0c",
|
|
622
617
|
"affectsGlobalScope": false
|
|
623
618
|
},
|
|
624
619
|
"../../utxo-lib/dist/src/bitgo/nonstandardhalfsigned.d.ts": {
|
|
@@ -632,8 +627,8 @@
|
|
|
632
627
|
"affectsGlobalScope": false
|
|
633
628
|
},
|
|
634
629
|
"../../utxo-lib/dist/src/bitgo/wallet/chains.d.ts": {
|
|
635
|
-
"version": "
|
|
636
|
-
"signature": "
|
|
630
|
+
"version": "041ccd5d169a07c5ba644cfb55d73c86e009daaf3f038e2c33203b984101382c",
|
|
631
|
+
"signature": "041ccd5d169a07c5ba644cfb55d73c86e009daaf3f038e2c33203b984101382c",
|
|
637
632
|
"affectsGlobalScope": false
|
|
638
633
|
},
|
|
639
634
|
"../../utxo-lib/dist/src/bitgo/outputscripts.d.ts": {
|
|
@@ -651,14 +646,19 @@
|
|
|
651
646
|
"signature": "8b692ea08b1eede18fe0af17426b994c4bd0a20663ff1162df589edfb4cd2900",
|
|
652
647
|
"affectsGlobalScope": false
|
|
653
648
|
},
|
|
649
|
+
"../../utxo-lib/dist/src/transaction_builder.d.ts": {
|
|
650
|
+
"version": "95421ece564c0907214c3f19268801b864b751d49328e1e01a9ba4603770f408",
|
|
651
|
+
"signature": "95421ece564c0907214c3f19268801b864b751d49328e1e01a9ba4603770f408",
|
|
652
|
+
"affectsGlobalScope": false
|
|
653
|
+
},
|
|
654
654
|
"../../utxo-lib/dist/src/bitgo/utxotransactionbuilder.d.ts": {
|
|
655
|
-
"version": "
|
|
656
|
-
"signature": "
|
|
655
|
+
"version": "0d7703a928e424d0a72e8f77c238aa74c832e3aaaaf0cf7934e6453ff0b7b5ab",
|
|
656
|
+
"signature": "0d7703a928e424d0a72e8f77c238aa74c832e3aaaaf0cf7934e6453ff0b7b5ab",
|
|
657
657
|
"affectsGlobalScope": false
|
|
658
658
|
},
|
|
659
659
|
"../../utxo-lib/dist/src/bitgo/dash/dashtransactionbuilder.d.ts": {
|
|
660
|
-
"version": "
|
|
661
|
-
"signature": "
|
|
660
|
+
"version": "bd3bb76314551916cda12ea08686bb9e17d1eb4fc1edf066a03875ba99527c6a",
|
|
661
|
+
"signature": "bd3bb76314551916cda12ea08686bb9e17d1eb4fc1edf066a03875ba99527c6a",
|
|
662
662
|
"affectsGlobalScope": false
|
|
663
663
|
},
|
|
664
664
|
"../../utxo-lib/dist/src/bitgo/dash/index.d.ts": {
|
|
@@ -666,9 +666,19 @@
|
|
|
666
666
|
"signature": "574eb3378daa80e1fdeb1548684419b9953ffc12df979e7cc2bfb831f5fd40b9",
|
|
667
667
|
"affectsGlobalScope": false
|
|
668
668
|
},
|
|
669
|
+
"../../../node_modules/bip32/types/bip32.d.ts": {
|
|
670
|
+
"version": "6e682801b0e90cf453b542e98aa2080c21332e65c3b459ba95f27b21c11dfafc",
|
|
671
|
+
"signature": "6e682801b0e90cf453b542e98aa2080c21332e65c3b459ba95f27b21c11dfafc",
|
|
672
|
+
"affectsGlobalScope": false
|
|
673
|
+
},
|
|
674
|
+
"../../../node_modules/bip32/types/index.d.ts": {
|
|
675
|
+
"version": "6bc78ca431af68b902781d24cbf7c6ae662e6b1610e56ed6173f3a9384c50304",
|
|
676
|
+
"signature": "6bc78ca431af68b902781d24cbf7c6ae662e6b1610e56ed6173f3a9384c50304",
|
|
677
|
+
"affectsGlobalScope": false
|
|
678
|
+
},
|
|
669
679
|
"../../utxo-lib/dist/src/bitgo/signature.d.ts": {
|
|
670
|
-
"version": "
|
|
671
|
-
"signature": "
|
|
680
|
+
"version": "fae946d42ecd5ab4379da14d3628dc1a83e857456856e980c8c2cd5719d07a14",
|
|
681
|
+
"signature": "fae946d42ecd5ab4379da14d3628dc1a83e857456856e980c8c2cd5719d07a14",
|
|
672
682
|
"affectsGlobalScope": false
|
|
673
683
|
},
|
|
674
684
|
"../../utxo-lib/dist/src/bitgo/transaction.d.ts": {
|
|
@@ -682,13 +692,13 @@
|
|
|
682
692
|
"affectsGlobalScope": false
|
|
683
693
|
},
|
|
684
694
|
"../../utxo-lib/dist/src/bitgo/wallet/walletkeys.d.ts": {
|
|
685
|
-
"version": "
|
|
686
|
-
"signature": "
|
|
695
|
+
"version": "809e35d90434ff962b831d80adb048f12d42e188cdcc21bba7ca3afe48bc4ee0",
|
|
696
|
+
"signature": "809e35d90434ff962b831d80adb048f12d42e188cdcc21bba7ca3afe48bc4ee0",
|
|
687
697
|
"affectsGlobalScope": false
|
|
688
698
|
},
|
|
689
699
|
"../../utxo-lib/dist/src/bitgo/wallet/walletunspentsigner.d.ts": {
|
|
690
|
-
"version": "
|
|
691
|
-
"signature": "
|
|
700
|
+
"version": "e805bfec34852da8ec8ee911b64b60890def59d9a99441b0901ae4c31db467d8",
|
|
701
|
+
"signature": "e805bfec34852da8ec8ee911b64b60890def59d9a99441b0901ae4c31db467d8",
|
|
692
702
|
"affectsGlobalScope": false
|
|
693
703
|
},
|
|
694
704
|
"../../utxo-lib/dist/src/bitgo/wallet/unspent.d.ts": {
|
|
@@ -712,8 +722,8 @@
|
|
|
712
722
|
"affectsGlobalScope": false
|
|
713
723
|
},
|
|
714
724
|
"../../utxo-lib/dist/src/bitgo/zcash/zcashtransactionbuilder.d.ts": {
|
|
715
|
-
"version": "
|
|
716
|
-
"signature": "
|
|
725
|
+
"version": "21c1595012f8af000dfab9f8108a44154fa3f94b3e3acbd0e92e24cdf044a190",
|
|
726
|
+
"signature": "21c1595012f8af000dfab9f8108a44154fa3f94b3e3acbd0e92e24cdf044a190",
|
|
717
727
|
"affectsGlobalScope": false
|
|
718
728
|
},
|
|
719
729
|
"../../utxo-lib/dist/src/bitgo/zcash/index.d.ts": {
|
|
@@ -732,13 +742,23 @@
|
|
|
732
742
|
"affectsGlobalScope": false
|
|
733
743
|
},
|
|
734
744
|
"../../utxo-lib/dist/src/address.d.ts": {
|
|
735
|
-
"version": "
|
|
736
|
-
"signature": "
|
|
745
|
+
"version": "5b0e8d4a207e1381f32269540020919c1d934b96ca7fd2a5ca1fb32dae56ff80",
|
|
746
|
+
"signature": "5b0e8d4a207e1381f32269540020919c1d934b96ca7fd2a5ca1fb32dae56ff80",
|
|
747
|
+
"affectsGlobalScope": false
|
|
748
|
+
},
|
|
749
|
+
"../../utxo-lib/dist/src/classify.d.ts": {
|
|
750
|
+
"version": "2c948c62182575b74b2d4d8264f473828eecd468d6a8b5696a830e9494f9cfe9",
|
|
751
|
+
"signature": "2c948c62182575b74b2d4d8264f473828eecd468d6a8b5696a830e9494f9cfe9",
|
|
752
|
+
"affectsGlobalScope": false
|
|
753
|
+
},
|
|
754
|
+
"../../utxo-lib/dist/src/noble_ecc.d.ts": {
|
|
755
|
+
"version": "7c0177ff051184dffa55f52e523baaf2ab11885b3c4d4ca603face58e32f17e5",
|
|
756
|
+
"signature": "7c0177ff051184dffa55f52e523baaf2ab11885b3c4d4ca603face58e32f17e5",
|
|
737
757
|
"affectsGlobalScope": false
|
|
738
758
|
},
|
|
739
759
|
"../../utxo-lib/dist/src/index.d.ts": {
|
|
740
|
-
"version": "
|
|
741
|
-
"signature": "
|
|
760
|
+
"version": "17b76b2fb3e27470dd831a78ad2fc6c23f6ab397369ca30f4a730706a88b82eb",
|
|
761
|
+
"signature": "17b76b2fb3e27470dd831a78ad2fc6c23f6ab397369ca30f4a730706a88b82eb",
|
|
742
762
|
"affectsGlobalScope": false
|
|
743
763
|
},
|
|
744
764
|
"../src/bitgo/types.ts": {
|
|
@@ -747,8 +767,8 @@
|
|
|
747
767
|
"affectsGlobalScope": false
|
|
748
768
|
},
|
|
749
769
|
"../src/bitgo/bitcoin.ts": {
|
|
750
|
-
"version": "
|
|
751
|
-
"signature": "
|
|
770
|
+
"version": "4e2fbad4c85e6d0f2059939123aae67aa75713e55ba2e7c892a75122c6b6f669",
|
|
771
|
+
"signature": "bd4aab4db4d6f7f40f9edc64e8a71160a71eee4211c0524e00ce65182bf96def",
|
|
752
772
|
"affectsGlobalScope": false
|
|
753
773
|
},
|
|
754
774
|
"../src/account-lib/mpc/curves/basecurve.ts": {
|
|
@@ -802,8 +822,8 @@
|
|
|
802
822
|
"affectsGlobalScope": false
|
|
803
823
|
},
|
|
804
824
|
"../src/account-lib/mpc/shamir.ts": {
|
|
805
|
-
"version": "
|
|
806
|
-
"signature": "
|
|
825
|
+
"version": "142890a5232948da3ec9ec155fee08dfd3cb68018eb1a7a26d6a9f0bb09702b1",
|
|
826
|
+
"signature": "f4fbd1fa026b40ecb95443134e5171ccd4e4810ea117a93bfac6767712b7e9e2",
|
|
807
827
|
"affectsGlobalScope": false
|
|
808
828
|
},
|
|
809
829
|
"../src/account-lib/mpc/hdtree.ts": {
|
|
@@ -817,7 +837,7 @@
|
|
|
817
837
|
"affectsGlobalScope": false
|
|
818
838
|
},
|
|
819
839
|
"../src/account-lib/mpc/tss/eddsa/eddsa.ts": {
|
|
820
|
-
"version": "
|
|
840
|
+
"version": "d36429387b46b5b91da31d6444095fdd6bfa0343df544ab9d87fe3e3dbacb1fe",
|
|
821
841
|
"signature": "e13d2f85d7715fb20b76aea54c5bc3d394711031fb015953d826d0f197036acb",
|
|
822
842
|
"affectsGlobalScope": false
|
|
823
843
|
},
|
|
@@ -826,131 +846,6 @@
|
|
|
826
846
|
"signature": "573922398e041604c57e5ebbdec883940b41d085a45a369db565e01b9397731a",
|
|
827
847
|
"affectsGlobalScope": false
|
|
828
848
|
},
|
|
829
|
-
"../../../node_modules/bitcoinjs-lib/types/networks.d.ts": {
|
|
830
|
-
"version": "692cce8a36696e9df80910c05ae3b34340c278bbba03701a9ae92ae038663824",
|
|
831
|
-
"signature": "692cce8a36696e9df80910c05ae3b34340c278bbba03701a9ae92ae038663824",
|
|
832
|
-
"affectsGlobalScope": false
|
|
833
|
-
},
|
|
834
|
-
"../../../node_modules/bitcoinjs-lib/types/address.d.ts": {
|
|
835
|
-
"version": "035fd4564409153531cc683821b48048fd01982a8522c120b5a17f9a6320a229",
|
|
836
|
-
"signature": "035fd4564409153531cc683821b48048fd01982a8522c120b5a17f9a6320a229",
|
|
837
|
-
"affectsGlobalScope": false
|
|
838
|
-
},
|
|
839
|
-
"../../../node_modules/bitcoinjs-lib/types/classify.d.ts": {
|
|
840
|
-
"version": "1e9d8ebf3dfc7a42b29ea823ebbc333e6f37c6a890d5b13cc67958870c066fb7",
|
|
841
|
-
"signature": "1e9d8ebf3dfc7a42b29ea823ebbc333e6f37c6a890d5b13cc67958870c066fb7",
|
|
842
|
-
"affectsGlobalScope": false
|
|
843
|
-
},
|
|
844
|
-
"../../../node_modules/bitcoinjs-lib/types/crypto.d.ts": {
|
|
845
|
-
"version": "efa5b896b87da636844d0ab1d49ebf8951c07cd3814f664ad820af582fec60d7",
|
|
846
|
-
"signature": "efa5b896b87da636844d0ab1d49ebf8951c07cd3814f664ad820af582fec60d7",
|
|
847
|
-
"affectsGlobalScope": false
|
|
848
|
-
},
|
|
849
|
-
"../../../node_modules/bitcoinjs-lib/types/ecpair.d.ts": {
|
|
850
|
-
"version": "6d9f651e04cb8c78f8f2409978a1f137925a75c53561709a6cfd85d6a3bd1655",
|
|
851
|
-
"signature": "6d9f651e04cb8c78f8f2409978a1f137925a75c53561709a6cfd85d6a3bd1655",
|
|
852
|
-
"affectsGlobalScope": false
|
|
853
|
-
},
|
|
854
|
-
"../../../node_modules/bitcoinjs-lib/types/payments/embed.d.ts": {
|
|
855
|
-
"version": "a29a7b9ade7876d0f527b716a5bc5c7bc84554d155577020441f2d3c735589be",
|
|
856
|
-
"signature": "a29a7b9ade7876d0f527b716a5bc5c7bc84554d155577020441f2d3c735589be",
|
|
857
|
-
"affectsGlobalScope": false
|
|
858
|
-
},
|
|
859
|
-
"../../../node_modules/bitcoinjs-lib/types/payments/p2ms.d.ts": {
|
|
860
|
-
"version": "9cd42ff83837551961fa8788f14bd3498306fb2c1d35358f2b6bf3af05bf0890",
|
|
861
|
-
"signature": "9cd42ff83837551961fa8788f14bd3498306fb2c1d35358f2b6bf3af05bf0890",
|
|
862
|
-
"affectsGlobalScope": false
|
|
863
|
-
},
|
|
864
|
-
"../../../node_modules/bitcoinjs-lib/types/payments/p2pk.d.ts": {
|
|
865
|
-
"version": "5e51773d5624b8c871d8d140c88f944466338673fbc60ac4bf409eb60e6665cf",
|
|
866
|
-
"signature": "5e51773d5624b8c871d8d140c88f944466338673fbc60ac4bf409eb60e6665cf",
|
|
867
|
-
"affectsGlobalScope": false
|
|
868
|
-
},
|
|
869
|
-
"../../../node_modules/bitcoinjs-lib/types/payments/p2pkh.d.ts": {
|
|
870
|
-
"version": "39b10cd95b70bbdc1cf8c832002618c3f81cd980438fe5e3694d99286ef90911",
|
|
871
|
-
"signature": "39b10cd95b70bbdc1cf8c832002618c3f81cd980438fe5e3694d99286ef90911",
|
|
872
|
-
"affectsGlobalScope": false
|
|
873
|
-
},
|
|
874
|
-
"../../../node_modules/bitcoinjs-lib/types/payments/p2sh.d.ts": {
|
|
875
|
-
"version": "95244212208717085038a74378ea2a03e49c06a3a195b2826c01c978f14684c2",
|
|
876
|
-
"signature": "95244212208717085038a74378ea2a03e49c06a3a195b2826c01c978f14684c2",
|
|
877
|
-
"affectsGlobalScope": false
|
|
878
|
-
},
|
|
879
|
-
"../../../node_modules/bitcoinjs-lib/types/payments/p2tr.d.ts": {
|
|
880
|
-
"version": "c91084ba90468037b6d266f3cae698aaa76c0864cf076aa099d981d847b74c2d",
|
|
881
|
-
"signature": "c91084ba90468037b6d266f3cae698aaa76c0864cf076aa099d981d847b74c2d",
|
|
882
|
-
"affectsGlobalScope": false
|
|
883
|
-
},
|
|
884
|
-
"../../../node_modules/bitcoinjs-lib/types/payments/p2tr_ns.d.ts": {
|
|
885
|
-
"version": "dc58c9eb8817b8c46f40712df9e588c0c70357931f5ebebb3aa445949de993c8",
|
|
886
|
-
"signature": "dc58c9eb8817b8c46f40712df9e588c0c70357931f5ebebb3aa445949de993c8",
|
|
887
|
-
"affectsGlobalScope": false
|
|
888
|
-
},
|
|
889
|
-
"../../../node_modules/bitcoinjs-lib/types/payments/p2wpkh.d.ts": {
|
|
890
|
-
"version": "7362eeca79ce50eb72b2a0149e323f6d64daf4fbc8067592310859622c3dbcfe",
|
|
891
|
-
"signature": "7362eeca79ce50eb72b2a0149e323f6d64daf4fbc8067592310859622c3dbcfe",
|
|
892
|
-
"affectsGlobalScope": false
|
|
893
|
-
},
|
|
894
|
-
"../../../node_modules/bitcoinjs-lib/types/payments/p2wsh.d.ts": {
|
|
895
|
-
"version": "8c0a305a7b10513d9d07bf739456bf9845bd4336027c85442b674a417facb57a",
|
|
896
|
-
"signature": "8c0a305a7b10513d9d07bf739456bf9845bd4336027c85442b674a417facb57a",
|
|
897
|
-
"affectsGlobalScope": false
|
|
898
|
-
},
|
|
899
|
-
"../../../node_modules/bitcoinjs-lib/types/payments/index.d.ts": {
|
|
900
|
-
"version": "a0f499bc2d4bee1d480dc670db36c4656beac3e93cabc68c27625484f549484d",
|
|
901
|
-
"signature": "a0f499bc2d4bee1d480dc670db36c4656beac3e93cabc68c27625484f549484d",
|
|
902
|
-
"affectsGlobalScope": false
|
|
903
|
-
},
|
|
904
|
-
"../../../node_modules/bitcoinjs-lib/types/schnorrbip340.d.ts": {
|
|
905
|
-
"version": "c139fc3a11a170f34d076d65e40f7a52357a688a0507ba6b20d6fe276cd24c8a",
|
|
906
|
-
"signature": "c139fc3a11a170f34d076d65e40f7a52357a688a0507ba6b20d6fe276cd24c8a",
|
|
907
|
-
"affectsGlobalScope": false
|
|
908
|
-
},
|
|
909
|
-
"../../../node_modules/bitcoinjs-lib/types/script_number.d.ts": {
|
|
910
|
-
"version": "973d36af083ce019e3c38b99ca43cb6815b47082cf1e07215387df336192f447",
|
|
911
|
-
"signature": "973d36af083ce019e3c38b99ca43cb6815b47082cf1e07215387df336192f447",
|
|
912
|
-
"affectsGlobalScope": false
|
|
913
|
-
},
|
|
914
|
-
"../../../node_modules/bitcoinjs-lib/types/script_signature.d.ts": {
|
|
915
|
-
"version": "617012176a8cb5be290ae89040aac88ec74321c2a8b984f01a7ba6eb9a2eddc2",
|
|
916
|
-
"signature": "617012176a8cb5be290ae89040aac88ec74321c2a8b984f01a7ba6eb9a2eddc2",
|
|
917
|
-
"affectsGlobalScope": false
|
|
918
|
-
},
|
|
919
|
-
"../../../node_modules/bitcoinjs-lib/types/script.d.ts": {
|
|
920
|
-
"version": "452cea0fd78e7cc56bc4d54979f79625f50f0ee33213c51b8d361dca80dc9175",
|
|
921
|
-
"signature": "452cea0fd78e7cc56bc4d54979f79625f50f0ee33213c51b8d361dca80dc9175",
|
|
922
|
-
"affectsGlobalScope": false
|
|
923
|
-
},
|
|
924
|
-
"../../../node_modules/bitcoinjs-lib/types/taproot.d.ts": {
|
|
925
|
-
"version": "b63ba9f527c74718667338d6ca3ba3b35429500f7d63196e54d86a4ef28b36b4",
|
|
926
|
-
"signature": "b63ba9f527c74718667338d6ca3ba3b35429500f7d63196e54d86a4ef28b36b4",
|
|
927
|
-
"affectsGlobalScope": false
|
|
928
|
-
},
|
|
929
|
-
"../../../node_modules/bitcoinjs-lib/types/transaction.d.ts": {
|
|
930
|
-
"version": "fc2aced12725e81bbdb9e55a0efe1060cd4b6bbb6d1a5a23a09236a18c2d2323",
|
|
931
|
-
"signature": "fc2aced12725e81bbdb9e55a0efe1060cd4b6bbb6d1a5a23a09236a18c2d2323",
|
|
932
|
-
"affectsGlobalScope": false
|
|
933
|
-
},
|
|
934
|
-
"../../../node_modules/bitcoinjs-lib/types/block.d.ts": {
|
|
935
|
-
"version": "7340d9ad1f3f55e7be3a85a151ef25d7a8c0205904519940c9dcea0f61cb3292",
|
|
936
|
-
"signature": "7340d9ad1f3f55e7be3a85a151ef25d7a8c0205904519940c9dcea0f61cb3292",
|
|
937
|
-
"affectsGlobalScope": false
|
|
938
|
-
},
|
|
939
|
-
"../../../node_modules/bitcoinjs-lib/types/psbt.d.ts": {
|
|
940
|
-
"version": "bddbf55f3238e6865800b6be9b1f7c6ecdd5049607109b35d0af2a3c4e24f48d",
|
|
941
|
-
"signature": "bddbf55f3238e6865800b6be9b1f7c6ecdd5049607109b35d0af2a3c4e24f48d",
|
|
942
|
-
"affectsGlobalScope": false
|
|
943
|
-
},
|
|
944
|
-
"../../../node_modules/bitcoinjs-lib/types/transaction_builder.d.ts": {
|
|
945
|
-
"version": "0354d500ee48bde1e4112b767fa58fe56eb9a790204aa0113ffd7aa8a046e01c",
|
|
946
|
-
"signature": "0354d500ee48bde1e4112b767fa58fe56eb9a790204aa0113ffd7aa8a046e01c",
|
|
947
|
-
"affectsGlobalScope": false
|
|
948
|
-
},
|
|
949
|
-
"../../../node_modules/bitcoinjs-lib/types/index.d.ts": {
|
|
950
|
-
"version": "9e278c765662847ae3711e917bce92d00fdb3724bf54cd3fcef5cb06039bd810",
|
|
951
|
-
"signature": "9e278c765662847ae3711e917bce92d00fdb3724bf54cd3fcef5cb06039bd810",
|
|
952
|
-
"affectsGlobalScope": false
|
|
953
|
-
},
|
|
954
849
|
"../../../node_modules/tweetnacl/nacl.d.ts": {
|
|
955
850
|
"version": "60592f5ae1b739c9607a99895d4a3ad5c865b16903e4180e50b256e360a4a104",
|
|
956
851
|
"signature": "60592f5ae1b739c9607a99895d4a3ad5c865b16903e4180e50b256e360a4a104",
|
|
@@ -972,18 +867,18 @@
|
|
|
972
867
|
"affectsGlobalScope": false
|
|
973
868
|
},
|
|
974
869
|
"../../../node_modules/bignumber.js/bignumber.d.ts": {
|
|
975
|
-
"version": "
|
|
976
|
-
"signature": "
|
|
870
|
+
"version": "333f6612b9bacf74de9c232ee7a2efab5f10cee0cf90cdd0f27aa71c346f1a14",
|
|
871
|
+
"signature": "333f6612b9bacf74de9c232ee7a2efab5f10cee0cf90cdd0f27aa71c346f1a14",
|
|
977
872
|
"affectsGlobalScope": false
|
|
978
873
|
},
|
|
979
874
|
"../../statics/dist/src/networks.d.ts": {
|
|
980
|
-
"version": "
|
|
981
|
-
"signature": "
|
|
875
|
+
"version": "23c0b384d5a792766b2ff7d51a23d8bb4f9eadb2036c265095a04f8790bc7250",
|
|
876
|
+
"signature": "23c0b384d5a792766b2ff7d51a23d8bb4f9eadb2036c265095a04f8790bc7250",
|
|
982
877
|
"affectsGlobalScope": false
|
|
983
878
|
},
|
|
984
879
|
"../../statics/dist/src/base.d.ts": {
|
|
985
|
-
"version": "
|
|
986
|
-
"signature": "
|
|
880
|
+
"version": "2476b2d02fbaf54fe775d4a2936c441f379a4fa6f3dd6354ff1b4e250410d668",
|
|
881
|
+
"signature": "2476b2d02fbaf54fe775d4a2936c441f379a4fa6f3dd6354ff1b4e250410d668",
|
|
987
882
|
"affectsGlobalScope": false
|
|
988
883
|
},
|
|
989
884
|
"../../statics/dist/src/map.d.ts": {
|
|
@@ -1002,8 +897,8 @@
|
|
|
1002
897
|
"affectsGlobalScope": false
|
|
1003
898
|
},
|
|
1004
899
|
"../../statics/dist/src/tokenconfig.d.ts": {
|
|
1005
|
-
"version": "
|
|
1006
|
-
"signature": "
|
|
900
|
+
"version": "1254e454c76eb39b5c0ba14446e3a2856762e0003369f88b53968176e94ecdf2",
|
|
901
|
+
"signature": "1254e454c76eb39b5c0ba14446e3a2856762e0003369f88b53968176e94ecdf2",
|
|
1007
902
|
"affectsGlobalScope": false
|
|
1008
903
|
},
|
|
1009
904
|
"../../statics/dist/src/ofc.d.ts": {
|
|
@@ -1017,8 +912,8 @@
|
|
|
1017
912
|
"affectsGlobalScope": false
|
|
1018
913
|
},
|
|
1019
914
|
"../../statics/dist/src/account.d.ts": {
|
|
1020
|
-
"version": "
|
|
1021
|
-
"signature": "
|
|
915
|
+
"version": "976b6b9b4880db325a3b0da185d989aa92e8acb4736d93b8f5a725c707c71797",
|
|
916
|
+
"signature": "976b6b9b4880db325a3b0da185d989aa92e8acb4736d93b8f5a725c707c71797",
|
|
1022
917
|
"affectsGlobalScope": false
|
|
1023
918
|
},
|
|
1024
919
|
"../../statics/dist/src/index.d.ts": {
|
|
@@ -1032,8 +927,8 @@
|
|
|
1032
927
|
"affectsGlobalScope": false
|
|
1033
928
|
},
|
|
1034
929
|
"../src/account-lib/basecoin/errors.ts": {
|
|
1035
|
-
"version": "
|
|
1036
|
-
"signature": "
|
|
930
|
+
"version": "e35b7ebb66c54915f5f277a5203646e74c1967c1ca00d40a9755b2ce7f9cf57d",
|
|
931
|
+
"signature": "bdc3af1addfcfcadde24b5c473d5d1bd665a1f42cf4145c8f5a97b51ce999ac0",
|
|
1037
932
|
"affectsGlobalScope": false
|
|
1038
933
|
},
|
|
1039
934
|
"../src/account-lib/basecoin/basetransaction.ts": {
|
|
@@ -1052,8 +947,8 @@
|
|
|
1052
947
|
"affectsGlobalScope": false
|
|
1053
948
|
},
|
|
1054
949
|
"../src/account-lib/basecoin/iface.ts": {
|
|
1055
|
-
"version": "
|
|
1056
|
-
"signature": "
|
|
950
|
+
"version": "e92575c05e26a724619d55a8641b5feceaf6f88790e972860c72e02393cb6216",
|
|
951
|
+
"signature": "d1593e12fe7ca4865c96530e3e9340635ec8917bc67d76bb38c8e1f8dd5b6894",
|
|
1057
952
|
"affectsGlobalScope": false
|
|
1058
953
|
},
|
|
1059
954
|
"../../../node_modules/base-x/src/index.d.ts": {
|
|
@@ -1067,8 +962,8 @@
|
|
|
1067
962
|
"affectsGlobalScope": false
|
|
1068
963
|
},
|
|
1069
964
|
"../src/account-lib/util/crypto.ts": {
|
|
1070
|
-
"version": "
|
|
1071
|
-
"signature": "
|
|
965
|
+
"version": "d9aa83490fe9a02d91fadf80ea255ab1b43bed68579f32d683f575d980a687c1",
|
|
966
|
+
"signature": "25c0ba6ed00460fd1ab2f8fd474ea953607eccc4826ea70dba03f01212c4e0a8",
|
|
1072
967
|
"affectsGlobalScope": false
|
|
1073
968
|
},
|
|
1074
969
|
"../src/account-lib/mpc/tss/ecdsa/types.ts": {
|
|
@@ -1077,8 +972,8 @@
|
|
|
1077
972
|
"affectsGlobalScope": false
|
|
1078
973
|
},
|
|
1079
974
|
"../src/account-lib/mpc/tss/ecdsa/ecdsa.ts": {
|
|
1080
|
-
"version": "
|
|
1081
|
-
"signature": "
|
|
975
|
+
"version": "b5ae8522e7f23a421cab785c6b609970e56c789860585c827e81ceee7e1e3eb2",
|
|
976
|
+
"signature": "60cbb4623d1e5d9fea8d960cda6157f8dad3e86153aa45da655e132d55c30795",
|
|
1082
977
|
"affectsGlobalScope": false
|
|
1083
978
|
},
|
|
1084
979
|
"../src/account-lib/mpc/tss/ecdsa/index.ts": {
|
|
@@ -1102,8 +997,8 @@
|
|
|
1102
997
|
"affectsGlobalScope": false
|
|
1103
998
|
},
|
|
1104
999
|
"../../../node_modules/buffer/index.d.ts": {
|
|
1105
|
-
"version": "
|
|
1106
|
-
"signature": "
|
|
1000
|
+
"version": "4967529644e391115ca5592184d4b63980569adf60ee685f968fd59ab1557188",
|
|
1001
|
+
"signature": "4967529644e391115ca5592184d4b63980569adf60ee685f968fd59ab1557188",
|
|
1107
1002
|
"affectsGlobalScope": false
|
|
1108
1003
|
},
|
|
1109
1004
|
"../../../node_modules/@types/superagent/index.d.ts": {
|
|
@@ -1207,8 +1102,8 @@
|
|
|
1207
1102
|
"affectsGlobalScope": false
|
|
1208
1103
|
},
|
|
1209
1104
|
"../src/bitgo/utils/opengpgutils.ts": {
|
|
1210
|
-
"version": "
|
|
1211
|
-
"signature": "
|
|
1105
|
+
"version": "a6eadbbedd3e20ccac786bd00bbdfba4f069aa049af0a7ddfc3a905ead007f29",
|
|
1106
|
+
"signature": "abb7f662e6f6d8d54ccaae18405d62e79751fdce4af153d621436ca76d543918",
|
|
1212
1107
|
"affectsGlobalScope": false
|
|
1213
1108
|
},
|
|
1214
1109
|
"../src/bitgo/utils/abstractutxocoinutil.ts": {
|
|
@@ -1242,13 +1137,13 @@
|
|
|
1242
1137
|
"affectsGlobalScope": false
|
|
1243
1138
|
},
|
|
1244
1139
|
"../src/account-lib/basecoin/blskeypair.ts": {
|
|
1245
|
-
"version": "
|
|
1246
|
-
"signature": "
|
|
1140
|
+
"version": "65eabc0a20735b795d1b091fd8b04a76c52dc6a3a1d2038d72a5b9fdd2979f4f",
|
|
1141
|
+
"signature": "b109d5e1ff6810212da6b7c493684c8a97b2e576a1ef8c24e97f2043eee55ee6",
|
|
1247
1142
|
"affectsGlobalScope": false
|
|
1248
1143
|
},
|
|
1249
1144
|
"../src/account-lib/basecoin/secp256k1extendedkeypair.ts": {
|
|
1250
|
-
"version": "
|
|
1251
|
-
"signature": "
|
|
1145
|
+
"version": "b815c79a32dcfed5adbba61d1adb3100a85a71b0f726875fb61d2f101131a06a",
|
|
1146
|
+
"signature": "aa7b18bc888198d7d11e6c2d20b3594795ca944d3566bd018c296e623acde3af",
|
|
1252
1147
|
"affectsGlobalScope": false
|
|
1253
1148
|
},
|
|
1254
1149
|
"../src/account-lib/basecoin/index.ts": {
|
|
@@ -1272,7 +1167,7 @@
|
|
|
1272
1167
|
"affectsGlobalScope": false
|
|
1273
1168
|
},
|
|
1274
1169
|
"../src/bitgo/utils/blsutils.ts": {
|
|
1275
|
-
"version": "
|
|
1170
|
+
"version": "7612813aa3f0e155e140933b86f7040f7582ca455234692977e8c68adfcd24ed",
|
|
1276
1171
|
"signature": "9a809fee2b4235881a4fa528c85a0df1d930e9d38f0e91f21b197766a4ca25ef",
|
|
1277
1172
|
"affectsGlobalScope": false
|
|
1278
1173
|
},
|
|
@@ -1307,8 +1202,8 @@
|
|
|
1307
1202
|
"affectsGlobalScope": false
|
|
1308
1203
|
},
|
|
1309
1204
|
"../src/bitgo/tss/ecdsa/types.ts": {
|
|
1310
|
-
"version": "
|
|
1311
|
-
"signature": "
|
|
1205
|
+
"version": "e4b51f9c94ef3c5ed341ce2e684ee8a86638ab435e910f91e8e64cdb1339f248",
|
|
1206
|
+
"signature": "c1ca317365e923d36c51d051759fb35504c50667a38d80bdb275dcf0f31cc940",
|
|
1312
1207
|
"affectsGlobalScope": false
|
|
1313
1208
|
},
|
|
1314
1209
|
"../src/bitgo/tss/types.ts": {
|
|
@@ -1322,8 +1217,8 @@
|
|
|
1322
1217
|
"affectsGlobalScope": false
|
|
1323
1218
|
},
|
|
1324
1219
|
"../src/bitgo/tss/ecdsa/ecdsa.ts": {
|
|
1325
|
-
"version": "
|
|
1326
|
-
"signature": "
|
|
1220
|
+
"version": "053c8504ae421ae82b57bf10fd49306cdf8db1213cce4a125d0d94a1398be9ea",
|
|
1221
|
+
"signature": "38ee9504afc4e2800379ed97647b3fab7ed520af90ad52c07b27da481099d073",
|
|
1327
1222
|
"affectsGlobalScope": false
|
|
1328
1223
|
},
|
|
1329
1224
|
"../src/bitgo/tss/ecdsa/index.ts": {
|
|
@@ -1347,8 +1242,8 @@
|
|
|
1347
1242
|
"affectsGlobalScope": false
|
|
1348
1243
|
},
|
|
1349
1244
|
"../src/bitgo/utils/tss/index.ts": {
|
|
1350
|
-
"version": "
|
|
1351
|
-
"signature": "
|
|
1245
|
+
"version": "344c6954204743186ee3d9a91768b7ab3da10595989650577a11405a0cbb1b73",
|
|
1246
|
+
"signature": "49317e31b87273275347cb548fe328d0bacda1f28f47251a5a6ca8aa38782ed1",
|
|
1352
1247
|
"affectsGlobalScope": false
|
|
1353
1248
|
},
|
|
1354
1249
|
"../src/bitgo/errors.ts": {
|
|
@@ -1427,7 +1322,7 @@
|
|
|
1427
1322
|
"affectsGlobalScope": false
|
|
1428
1323
|
},
|
|
1429
1324
|
"../src/bitgo/utils/util.ts": {
|
|
1430
|
-
"version": "
|
|
1325
|
+
"version": "ad33cca15d17c2905548311ffd094aa2a310d15b1914454241f5a184334f1a9b",
|
|
1431
1326
|
"signature": "73b4863e9315ef95bd17e104622d67aa5963f48fecdf5b224296f85db9454a4f",
|
|
1432
1327
|
"affectsGlobalScope": false
|
|
1433
1328
|
},
|
|
@@ -1437,7 +1332,7 @@
|
|
|
1437
1332
|
"affectsGlobalScope": false
|
|
1438
1333
|
},
|
|
1439
1334
|
"../src/bitgo/keychain/keychains.ts": {
|
|
1440
|
-
"version": "
|
|
1335
|
+
"version": "9a6eb74e271a2678bab05f9835986694f218ce25e3f03dd064bb697374e79162",
|
|
1441
1336
|
"signature": "6b6b0ac8643dd61d53275d433dee0ba47ecddb233f459096052028e03c14f05c",
|
|
1442
1337
|
"affectsGlobalScope": false
|
|
1443
1338
|
},
|
|
@@ -1457,7 +1352,7 @@
|
|
|
1457
1352
|
"affectsGlobalScope": false
|
|
1458
1353
|
},
|
|
1459
1354
|
"../src/bitgo/pendingapproval/pendingapproval.ts": {
|
|
1460
|
-
"version": "
|
|
1355
|
+
"version": "91d85febd6c78712fb3e42d25df9667b3efb03ad403d5ab7048932c2236ffc47",
|
|
1461
1356
|
"signature": "7944af161d0ae5a951708171de9eb569dcf1d04aaf4dafb91b27438909a3d42e",
|
|
1462
1357
|
"affectsGlobalScope": false
|
|
1463
1358
|
},
|
|
@@ -1472,13 +1367,13 @@
|
|
|
1472
1367
|
"affectsGlobalScope": false
|
|
1473
1368
|
},
|
|
1474
1369
|
"../src/bitgo/staking/istakingwallet.ts": {
|
|
1475
|
-
"version": "
|
|
1476
|
-
"signature": "
|
|
1370
|
+
"version": "5b5710efe4d654c2edf0a339a079c5e9bdc8c56110deac9bae16e89610340915",
|
|
1371
|
+
"signature": "ee920e56f0b3967c730b9b20193445169f9b770399aeff8c6582763a45c3dbdd",
|
|
1477
1372
|
"affectsGlobalScope": false
|
|
1478
1373
|
},
|
|
1479
1374
|
"../src/bitgo/staking/stakingwallet.ts": {
|
|
1480
|
-
"version": "
|
|
1481
|
-
"signature": "
|
|
1375
|
+
"version": "e18355b5ab5643596e57a5b626d9e34017b86b90849bfc12c5b5f7179c700b6e",
|
|
1376
|
+
"signature": "f7daad875f9399da7f2e760090b4b88f58c5da65f5321d9991b013949d685af1",
|
|
1482
1377
|
"affectsGlobalScope": false
|
|
1483
1378
|
},
|
|
1484
1379
|
"../src/bitgo/staking/index.ts": {
|
|
@@ -1486,9 +1381,349 @@
|
|
|
1486
1381
|
"signature": "94518a2d3aea55c7fbd5bec347ed93dca22bd45c65f5ba57c28d6f59e5b19db2",
|
|
1487
1382
|
"affectsGlobalScope": false
|
|
1488
1383
|
},
|
|
1384
|
+
"../node_modules/fp-ts/lib/joinsemilattice.d.ts": {
|
|
1385
|
+
"version": "7cacb7d6043be447426a3811ef40e5d81fca99289f991788a29494b3e528b3d5",
|
|
1386
|
+
"signature": "7cacb7d6043be447426a3811ef40e5d81fca99289f991788a29494b3e528b3d5",
|
|
1387
|
+
"affectsGlobalScope": false
|
|
1388
|
+
},
|
|
1389
|
+
"../node_modules/fp-ts/lib/boundedjoinsemilattice.d.ts": {
|
|
1390
|
+
"version": "3d69864968e13d13514d37303bcef6a965c5a3da370976ba4f2c96bbfca6f73a",
|
|
1391
|
+
"signature": "3d69864968e13d13514d37303bcef6a965c5a3da370976ba4f2c96bbfca6f73a",
|
|
1392
|
+
"affectsGlobalScope": false
|
|
1393
|
+
},
|
|
1394
|
+
"../node_modules/fp-ts/lib/meetsemilattice.d.ts": {
|
|
1395
|
+
"version": "9ec22bf34167a1e1ee4d2a44f88891bfa3a827d703758e045e46ad27c6f2bb04",
|
|
1396
|
+
"signature": "9ec22bf34167a1e1ee4d2a44f88891bfa3a827d703758e045e46ad27c6f2bb04",
|
|
1397
|
+
"affectsGlobalScope": false
|
|
1398
|
+
},
|
|
1399
|
+
"../node_modules/fp-ts/lib/boundedmeetsemilattice.d.ts": {
|
|
1400
|
+
"version": "1b4bf557e7c1b1400ea1d2021bf4a0aa94398b3949358c7520b38c7c6f3d5111",
|
|
1401
|
+
"signature": "1b4bf557e7c1b1400ea1d2021bf4a0aa94398b3949358c7520b38c7c6f3d5111",
|
|
1402
|
+
"affectsGlobalScope": false
|
|
1403
|
+
},
|
|
1404
|
+
"../node_modules/fp-ts/lib/boundedlattice.d.ts": {
|
|
1405
|
+
"version": "ce937afee0c311b592a028607381005375d5beba79b82750ee90190f210172f2",
|
|
1406
|
+
"signature": "ce937afee0c311b592a028607381005375d5beba79b82750ee90190f210172f2",
|
|
1407
|
+
"affectsGlobalScope": false
|
|
1408
|
+
},
|
|
1409
|
+
"../node_modules/fp-ts/lib/lattice.d.ts": {
|
|
1410
|
+
"version": "3d9abd8024a7cb9890821962ba50208546504ebe48ebac0be774b2c3996bf787",
|
|
1411
|
+
"signature": "3d9abd8024a7cb9890821962ba50208546504ebe48ebac0be774b2c3996bf787",
|
|
1412
|
+
"affectsGlobalScope": false
|
|
1413
|
+
},
|
|
1414
|
+
"../node_modules/fp-ts/hkt.d.ts": {
|
|
1415
|
+
"version": "54a098c654bd4a1b420702693a923df4a2e767c82fc4461550ff32b43f965511",
|
|
1416
|
+
"signature": "54a098c654bd4a1b420702693a923df4a2e767c82fc4461550ff32b43f965511",
|
|
1417
|
+
"affectsGlobalScope": false
|
|
1418
|
+
},
|
|
1419
|
+
"../node_modules/fp-ts/lib/contravariant.d.ts": {
|
|
1420
|
+
"version": "2d709defe18dac3e57730e01d6e563c1846427651bd8ef6ab08c8881a3536217",
|
|
1421
|
+
"signature": "2d709defe18dac3e57730e01d6e563c1846427651bd8ef6ab08c8881a3536217",
|
|
1422
|
+
"affectsGlobalScope": false
|
|
1423
|
+
},
|
|
1424
|
+
"../node_modules/fp-ts/lib/bounded.d.ts": {
|
|
1425
|
+
"version": "a8ed0f9cd297a7f3d87cf9c6d2fdc6de773b1b4e77b6099c5b41483a61bdcd6c",
|
|
1426
|
+
"signature": "a8ed0f9cd297a7f3d87cf9c6d2fdc6de773b1b4e77b6099c5b41483a61bdcd6c",
|
|
1427
|
+
"affectsGlobalScope": false
|
|
1428
|
+
},
|
|
1429
|
+
"../node_modules/fp-ts/lib/predicate.d.ts": {
|
|
1430
|
+
"version": "fa03d0db2493b6ee355167e3bfd3f19b4509b65150c9066a1d792506d8573d9d",
|
|
1431
|
+
"signature": "fa03d0db2493b6ee355167e3bfd3f19b4509b65150c9066a1d792506d8573d9d",
|
|
1432
|
+
"affectsGlobalScope": false
|
|
1433
|
+
},
|
|
1434
|
+
"../node_modules/fp-ts/lib/magma.d.ts": {
|
|
1435
|
+
"version": "b5bbca15e6517dcdb1c7107aaa078c149d92136c8d68b9aa25096fa8b22781a2",
|
|
1436
|
+
"signature": "b5bbca15e6517dcdb1c7107aaa078c149d92136c8d68b9aa25096fa8b22781a2",
|
|
1437
|
+
"affectsGlobalScope": false
|
|
1438
|
+
},
|
|
1439
|
+
"../node_modules/fp-ts/lib/functor.d.ts": {
|
|
1440
|
+
"version": "71f423707ae91a0efb99fd4341d5533e28b3253fa08342d579fdb9ddd1133056",
|
|
1441
|
+
"signature": "71f423707ae91a0efb99fd4341d5533e28b3253fa08342d579fdb9ddd1133056",
|
|
1442
|
+
"affectsGlobalScope": false
|
|
1443
|
+
},
|
|
1444
|
+
"../node_modules/fp-ts/lib/apply.d.ts": {
|
|
1445
|
+
"version": "5387eae5f9e2fa7d79786367cc69b61194b03bc5d401a9f034c87961454bf855",
|
|
1446
|
+
"signature": "5387eae5f9e2fa7d79786367cc69b61194b03bc5d401a9f034c87961454bf855",
|
|
1447
|
+
"affectsGlobalScope": false
|
|
1448
|
+
},
|
|
1449
|
+
"../node_modules/fp-ts/lib/pointed.d.ts": {
|
|
1450
|
+
"version": "df40c429713283ada7dfe6030f85b126fa95a96f17fcbf4c8dd4b8e88ac7887e",
|
|
1451
|
+
"signature": "df40c429713283ada7dfe6030f85b126fa95a96f17fcbf4c8dd4b8e88ac7887e",
|
|
1452
|
+
"affectsGlobalScope": false
|
|
1453
|
+
},
|
|
1454
|
+
"../node_modules/fp-ts/lib/applicative.d.ts": {
|
|
1455
|
+
"version": "16584246b33ca3ce1b234ceedc3d36b6c1e45f771448ef7ec2ff94f6cfd5a2f5",
|
|
1456
|
+
"signature": "16584246b33ca3ce1b234ceedc3d36b6c1e45f771448ef7ec2ff94f6cfd5a2f5",
|
|
1457
|
+
"affectsGlobalScope": false
|
|
1458
|
+
},
|
|
1459
|
+
"../node_modules/fp-ts/lib/zero.d.ts": {
|
|
1460
|
+
"version": "32f4a90406b42d5f00683a5c71a5e86294d054dc64e77bd94261dc3ab6fa87a7",
|
|
1461
|
+
"signature": "32f4a90406b42d5f00683a5c71a5e86294d054dc64e77bd94261dc3ab6fa87a7",
|
|
1462
|
+
"affectsGlobalScope": false
|
|
1463
|
+
},
|
|
1464
|
+
"../node_modules/fp-ts/lib/alternative.d.ts": {
|
|
1465
|
+
"version": "21b0709d364e3c825cde113653e62a1813f694f34ce4d5a546d9653b0be95ece",
|
|
1466
|
+
"signature": "21b0709d364e3c825cde113653e62a1813f694f34ce4d5a546d9653b0be95ece",
|
|
1467
|
+
"affectsGlobalScope": false
|
|
1468
|
+
},
|
|
1469
|
+
"../node_modules/fp-ts/lib/chain.d.ts": {
|
|
1470
|
+
"version": "1fe7c3717b5da4a72ef8221c3ed1743d06f7a4f14b8576b035e8ec8a27603ca7",
|
|
1471
|
+
"signature": "1fe7c3717b5da4a72ef8221c3ed1743d06f7a4f14b8576b035e8ec8a27603ca7",
|
|
1472
|
+
"affectsGlobalScope": false
|
|
1473
|
+
},
|
|
1474
|
+
"../node_modules/fp-ts/lib/extend.d.ts": {
|
|
1475
|
+
"version": "6ee39c4fb749b48fef9ce908cba025fc774b40790c5f2c0d19ed70e55d688fb6",
|
|
1476
|
+
"signature": "6ee39c4fb749b48fef9ce908cba025fc774b40790c5f2c0d19ed70e55d688fb6",
|
|
1477
|
+
"affectsGlobalScope": false
|
|
1478
|
+
},
|
|
1479
|
+
"../node_modules/fp-ts/lib/refinement.d.ts": {
|
|
1480
|
+
"version": "9485c1d322817a7d5abdd834e353a41d0e389fce2e56285c431182216e39ba8e",
|
|
1481
|
+
"signature": "9485c1d322817a7d5abdd834e353a41d0e389fce2e56285c431182216e39ba8e",
|
|
1482
|
+
"affectsGlobalScope": false
|
|
1483
|
+
},
|
|
1484
|
+
"../node_modules/fp-ts/lib/bifunctor.d.ts": {
|
|
1485
|
+
"version": "77b5bb559d0a4caa41bbff73c1fa7b2bd18e847341820b8bd78751f7312aa500",
|
|
1486
|
+
"signature": "77b5bb559d0a4caa41bbff73c1fa7b2bd18e847341820b8bd78751f7312aa500",
|
|
1487
|
+
"affectsGlobalScope": false
|
|
1488
|
+
},
|
|
1489
|
+
"../node_modules/fp-ts/lib/separated.d.ts": {
|
|
1490
|
+
"version": "9427fb6b360ef922bbc0577b0e637d9a04875b400d8ae6e859eb828a92829257",
|
|
1491
|
+
"signature": "9427fb6b360ef922bbc0577b0e637d9a04875b400d8ae6e859eb828a92829257",
|
|
1492
|
+
"affectsGlobalScope": false
|
|
1493
|
+
},
|
|
1494
|
+
"../node_modules/fp-ts/lib/filterable.d.ts": {
|
|
1495
|
+
"version": "7b6aa3f80957705d10c33cb6113decc323017313d8c64553f50a269ce0c3500f",
|
|
1496
|
+
"signature": "7b6aa3f80957705d10c33cb6113decc323017313d8c64553f50a269ce0c3500f",
|
|
1497
|
+
"affectsGlobalScope": false
|
|
1498
|
+
},
|
|
1499
|
+
"../node_modules/fp-ts/lib/monad.d.ts": {
|
|
1500
|
+
"version": "23284153ead0384c87c29852612d5e6cef16d1179d4c6986e72a058929375b64",
|
|
1501
|
+
"signature": "23284153ead0384c87c29852612d5e6cef16d1179d4c6986e72a058929375b64",
|
|
1502
|
+
"affectsGlobalScope": false
|
|
1503
|
+
},
|
|
1504
|
+
"../node_modules/fp-ts/lib/foldable.d.ts": {
|
|
1505
|
+
"version": "670506ee01a5750ffe2136047f6d200e22018477762ec7e54703fe0bea8ad4d3",
|
|
1506
|
+
"signature": "670506ee01a5750ffe2136047f6d200e22018477762ec7e54703fe0bea8ad4d3",
|
|
1507
|
+
"affectsGlobalScope": false
|
|
1508
|
+
},
|
|
1509
|
+
"../node_modules/fp-ts/lib/naturaltransformation.d.ts": {
|
|
1510
|
+
"version": "1ac910e17343640bf14e69ad9a078c37b453a1b46a1de1d5221d460d26d67d7a",
|
|
1511
|
+
"signature": "1ac910e17343640bf14e69ad9a078c37b453a1b46a1de1d5221d460d26d67d7a",
|
|
1512
|
+
"affectsGlobalScope": false
|
|
1513
|
+
},
|
|
1514
|
+
"../node_modules/fp-ts/lib/fromeither.d.ts": {
|
|
1515
|
+
"version": "159fd766d032bbebdabc609fdb91c6622d17e6adf7d256d4825846c2dc9a19d6",
|
|
1516
|
+
"signature": "159fd766d032bbebdabc609fdb91c6622d17e6adf7d256d4825846c2dc9a19d6",
|
|
1517
|
+
"affectsGlobalScope": false
|
|
1518
|
+
},
|
|
1519
|
+
"../node_modules/fp-ts/lib/monadthrow.d.ts": {
|
|
1520
|
+
"version": "25c318c9a9e87a1163cabfc325c6b85b14b8cfb4a01679ef4211217cb843f174",
|
|
1521
|
+
"signature": "25c318c9a9e87a1163cabfc325c6b85b14b8cfb4a01679ef4211217cb843f174",
|
|
1522
|
+
"affectsGlobalScope": false
|
|
1523
|
+
},
|
|
1524
|
+
"../node_modules/fp-ts/lib/comonad.d.ts": {
|
|
1525
|
+
"version": "eaa71b96b8cf3d21cf3c670a990f5d38dd4998291013ff47b07f9df8aedb09fb",
|
|
1526
|
+
"signature": "eaa71b96b8cf3d21cf3c670a990f5d38dd4998291013ff47b07f9df8aedb09fb",
|
|
1527
|
+
"affectsGlobalScope": false
|
|
1528
|
+
},
|
|
1529
|
+
"../node_modules/fp-ts/lib/foldablewithindex.d.ts": {
|
|
1530
|
+
"version": "a5d1b67b1ab0ff989665bdbb5be7399345594bd6922ea2db6a65cf8b3ad36a7c",
|
|
1531
|
+
"signature": "a5d1b67b1ab0ff989665bdbb5be7399345594bd6922ea2db6a65cf8b3ad36a7c",
|
|
1532
|
+
"affectsGlobalScope": false
|
|
1533
|
+
},
|
|
1534
|
+
"../node_modules/fp-ts/lib/functorwithindex.d.ts": {
|
|
1535
|
+
"version": "f44163882d44b85c852186182e9301187fc674148957a4a0f2fc7a438bd6db4e",
|
|
1536
|
+
"signature": "f44163882d44b85c852186182e9301187fc674148957a4a0f2fc7a438bd6db4e",
|
|
1537
|
+
"affectsGlobalScope": false
|
|
1538
|
+
},
|
|
1539
|
+
"../node_modules/fp-ts/lib/show.d.ts": {
|
|
1540
|
+
"version": "76fcf413abafd0023a294377cc079acfd6c7835aeb52fbc88d87b0176b4be7f1",
|
|
1541
|
+
"signature": "76fcf413abafd0023a294377cc079acfd6c7835aeb52fbc88d87b0176b4be7f1",
|
|
1542
|
+
"affectsGlobalScope": false
|
|
1543
|
+
},
|
|
1544
|
+
"../node_modules/fp-ts/lib/traversable.d.ts": {
|
|
1545
|
+
"version": "3d6b3bf8322cc547cca607243117085cde9de05814ecf6ed46cb850dff44acca",
|
|
1546
|
+
"signature": "3d6b3bf8322cc547cca607243117085cde9de05814ecf6ed46cb850dff44acca",
|
|
1547
|
+
"affectsGlobalScope": false
|
|
1548
|
+
},
|
|
1549
|
+
"../node_modules/fp-ts/lib/traversablewithindex.d.ts": {
|
|
1550
|
+
"version": "5509d07a6a598798b9a03a97e9a01ce9a949ef6914cbcb16314b9e62e74b7dd0",
|
|
1551
|
+
"signature": "5509d07a6a598798b9a03a97e9a01ce9a949ef6914cbcb16314b9e62e74b7dd0",
|
|
1552
|
+
"affectsGlobalScope": false
|
|
1553
|
+
},
|
|
1554
|
+
"../node_modules/fp-ts/lib/readonlynonemptyarray.d.ts": {
|
|
1555
|
+
"version": "54f626190259bd974fd1355ae2725133c4172cd79e989b8b8e03b8b612b45af9",
|
|
1556
|
+
"signature": "54f626190259bd974fd1355ae2725133c4172cd79e989b8b8e03b8b612b45af9",
|
|
1557
|
+
"affectsGlobalScope": false
|
|
1558
|
+
},
|
|
1559
|
+
"../node_modules/fp-ts/lib/witherable.d.ts": {
|
|
1560
|
+
"version": "5a5f821f9bf287fa83f18ae6d9b1d074f6d7dd1f472827078a31c762acf607fe",
|
|
1561
|
+
"signature": "5a5f821f9bf287fa83f18ae6d9b1d074f6d7dd1f472827078a31c762acf607fe",
|
|
1562
|
+
"affectsGlobalScope": false
|
|
1563
|
+
},
|
|
1564
|
+
"../node_modules/fp-ts/lib/option.d.ts": {
|
|
1565
|
+
"version": "459070e11e031648307df6b130a4dd8694efd7c697fa36af3a422642e3533319",
|
|
1566
|
+
"signature": "459070e11e031648307df6b130a4dd8694efd7c697fa36af3a422642e3533319",
|
|
1567
|
+
"affectsGlobalScope": false
|
|
1568
|
+
},
|
|
1569
|
+
"../node_modules/fp-ts/lib/compactable.d.ts": {
|
|
1570
|
+
"version": "e8815e5db5a33c95b721f38ae2c37c238a36ab190532d068f3897a8676aca31e",
|
|
1571
|
+
"signature": "e8815e5db5a33c95b721f38ae2c37c238a36ab190532d068f3897a8676aca31e",
|
|
1572
|
+
"affectsGlobalScope": false
|
|
1573
|
+
},
|
|
1574
|
+
"../node_modules/fp-ts/lib/filterablewithindex.d.ts": {
|
|
1575
|
+
"version": "0dd156a63d802afb0466de6dbc4d89b2573793c11b6e221ff559462bb09b51ba",
|
|
1576
|
+
"signature": "0dd156a63d802afb0466de6dbc4d89b2573793c11b6e221ff559462bb09b51ba",
|
|
1577
|
+
"affectsGlobalScope": false
|
|
1578
|
+
},
|
|
1579
|
+
"../node_modules/fp-ts/lib/unfoldable.d.ts": {
|
|
1580
|
+
"version": "82e44a5b26bcbe7b4b99b6e33f72286f11387d55814f113ee3bd001c01312340",
|
|
1581
|
+
"signature": "82e44a5b26bcbe7b4b99b6e33f72286f11387d55814f113ee3bd001c01312340",
|
|
1582
|
+
"affectsGlobalScope": false
|
|
1583
|
+
},
|
|
1584
|
+
"../node_modules/fp-ts/lib/readonlyrecord.d.ts": {
|
|
1585
|
+
"version": "6a0889c4f6ef5d77d8c82c4ffd0c59116f214ca0376f86c232ff2676aa2f7b4c",
|
|
1586
|
+
"signature": "6a0889c4f6ef5d77d8c82c4ffd0c59116f214ca0376f86c232ff2676aa2f7b4c",
|
|
1587
|
+
"affectsGlobalScope": false
|
|
1588
|
+
},
|
|
1589
|
+
"../node_modules/fp-ts/lib/semigroup.d.ts": {
|
|
1590
|
+
"version": "e9ccb6c7e77319b0334d80ff4e0c3f5e14cebd765f62c84aa352343a673d26b6",
|
|
1591
|
+
"signature": "e9ccb6c7e77319b0334d80ff4e0c3f5e14cebd765f62c84aa352343a673d26b6",
|
|
1592
|
+
"affectsGlobalScope": false
|
|
1593
|
+
},
|
|
1594
|
+
"../node_modules/fp-ts/lib/endomorphism.d.ts": {
|
|
1595
|
+
"version": "454ea50cf3c255e2d7d9fccf485772a9414006e0eb0969b99867e4a97d02ddf9",
|
|
1596
|
+
"signature": "454ea50cf3c255e2d7d9fccf485772a9414006e0eb0969b99867e4a97d02ddf9",
|
|
1597
|
+
"affectsGlobalScope": false
|
|
1598
|
+
},
|
|
1599
|
+
"../node_modules/fp-ts/lib/monoid.d.ts": {
|
|
1600
|
+
"version": "c877c86f7150ec777c4a65a607f107760219199dbf5df9252e18db451fb201fd",
|
|
1601
|
+
"signature": "c877c86f7150ec777c4a65a607f107760219199dbf5df9252e18db451fb201fd",
|
|
1602
|
+
"affectsGlobalScope": false
|
|
1603
|
+
},
|
|
1604
|
+
"../node_modules/fp-ts/lib/eq.d.ts": {
|
|
1605
|
+
"version": "5633abad5689d73cbc7dbc0a5657f071e7d74d7c719eb7d40bed84c8b065c5f7",
|
|
1606
|
+
"signature": "5633abad5689d73cbc7dbc0a5657f071e7d74d7c719eb7d40bed84c8b065c5f7",
|
|
1607
|
+
"affectsGlobalScope": false
|
|
1608
|
+
},
|
|
1609
|
+
"../node_modules/fp-ts/lib/ordering.d.ts": {
|
|
1610
|
+
"version": "bbce8acac135149d44a5bf104e6d4f9731ac00c257fecdac313777abea59cc3b",
|
|
1611
|
+
"signature": "bbce8acac135149d44a5bf104e6d4f9731ac00c257fecdac313777abea59cc3b",
|
|
1612
|
+
"affectsGlobalScope": false
|
|
1613
|
+
},
|
|
1614
|
+
"../node_modules/fp-ts/lib/ord.d.ts": {
|
|
1615
|
+
"version": "45c3ea1a4ad18f5a15a3ccb6fc878c8eacc28ee7e6df70ab44d7accb8dde8acc",
|
|
1616
|
+
"signature": "45c3ea1a4ad18f5a15a3ccb6fc878c8eacc28ee7e6df70ab44d7accb8dde8acc",
|
|
1617
|
+
"affectsGlobalScope": false
|
|
1618
|
+
},
|
|
1619
|
+
"../node_modules/fp-ts/lib/distributivelattice.d.ts": {
|
|
1620
|
+
"version": "c4b821deefba05645c7b4ed17c08a691d9ad49bec79cb3eaa063c2965d344709",
|
|
1621
|
+
"signature": "c4b821deefba05645c7b4ed17c08a691d9ad49bec79cb3eaa063c2965d344709",
|
|
1622
|
+
"affectsGlobalScope": false
|
|
1623
|
+
},
|
|
1624
|
+
"../node_modules/fp-ts/lib/boundeddistributivelattice.d.ts": {
|
|
1625
|
+
"version": "66da6541c596adf5757bd7dd75905c3995de2b852577a2ff9dd0367ba97689c7",
|
|
1626
|
+
"signature": "66da6541c596adf5757bd7dd75905c3995de2b852577a2ff9dd0367ba97689c7",
|
|
1627
|
+
"affectsGlobalScope": false
|
|
1628
|
+
},
|
|
1629
|
+
"../node_modules/fp-ts/lib/heytingalgebra.d.ts": {
|
|
1630
|
+
"version": "ecc8a298c316ea0c05b2b47b132a00e5a161c7db80b00c45896f68d71714027d",
|
|
1631
|
+
"signature": "ecc8a298c316ea0c05b2b47b132a00e5a161c7db80b00c45896f68d71714027d",
|
|
1632
|
+
"affectsGlobalScope": false
|
|
1633
|
+
},
|
|
1634
|
+
"../node_modules/fp-ts/lib/booleanalgebra.d.ts": {
|
|
1635
|
+
"version": "53830d72bedcb50a122a50ddf4c934be579e76de5e92821c9d4cedca297a9b5a",
|
|
1636
|
+
"signature": "53830d72bedcb50a122a50ddf4c934be579e76de5e92821c9d4cedca297a9b5a",
|
|
1637
|
+
"affectsGlobalScope": false
|
|
1638
|
+
},
|
|
1639
|
+
"../node_modules/fp-ts/lib/semiring.d.ts": {
|
|
1640
|
+
"version": "e4c7507161ddfa6d4962241b05fda540c1dc095163cc622d17f2fce8d95d03ef",
|
|
1641
|
+
"signature": "e4c7507161ddfa6d4962241b05fda540c1dc095163cc622d17f2fce8d95d03ef",
|
|
1642
|
+
"affectsGlobalScope": false
|
|
1643
|
+
},
|
|
1644
|
+
"../node_modules/fp-ts/lib/ring.d.ts": {
|
|
1645
|
+
"version": "c18776b908ca93db4e977b670812955ce96dda262cf2b113e9eceaf7bc9fee11",
|
|
1646
|
+
"signature": "c18776b908ca93db4e977b670812955ce96dda262cf2b113e9eceaf7bc9fee11",
|
|
1647
|
+
"affectsGlobalScope": false
|
|
1648
|
+
},
|
|
1649
|
+
"../node_modules/fp-ts/lib/function.d.ts": {
|
|
1650
|
+
"version": "ae8c14075c604187b8af08af2dec7b0ff40fa7b30195d819e236041c52ca90bd",
|
|
1651
|
+
"signature": "ae8c14075c604187b8af08af2dec7b0ff40fa7b30195d819e236041c52ca90bd",
|
|
1652
|
+
"affectsGlobalScope": false
|
|
1653
|
+
},
|
|
1654
|
+
"../node_modules/fp-ts/lib/alt.d.ts": {
|
|
1655
|
+
"version": "0fa0f4fde2da84c277baee2a62a2f4e1c28aae411134208f1ea2a7ae2600d6a9",
|
|
1656
|
+
"signature": "0fa0f4fde2da84c277baee2a62a2f4e1c28aae411134208f1ea2a7ae2600d6a9",
|
|
1657
|
+
"affectsGlobalScope": false
|
|
1658
|
+
},
|
|
1659
|
+
"../node_modules/fp-ts/lib/chainrec.d.ts": {
|
|
1660
|
+
"version": "d81aa2e7a65beb57e825203b09b3aa337bbcd4733a58e5ae8322cd6f365a497d",
|
|
1661
|
+
"signature": "d81aa2e7a65beb57e825203b09b3aa337bbcd4733a58e5ae8322cd6f365a497d",
|
|
1662
|
+
"affectsGlobalScope": false
|
|
1663
|
+
},
|
|
1664
|
+
"../node_modules/fp-ts/lib/either.d.ts": {
|
|
1665
|
+
"version": "06f826601c96597d0c3be2e541b717174e5caf2171b4c9bf6c1efe68673e594e",
|
|
1666
|
+
"signature": "06f826601c96597d0c3be2e541b717174e5caf2171b4c9bf6c1efe68673e594e",
|
|
1667
|
+
"affectsGlobalScope": false
|
|
1668
|
+
},
|
|
1669
|
+
"../node_modules/io-ts/lib/index.d.ts": {
|
|
1670
|
+
"version": "620d34c107cb3ad0d3c41f5d9c07ca3b4641f6d946a5b27d7d5ecfe72a1348d9",
|
|
1671
|
+
"signature": "620d34c107cb3ad0d3c41f5d9c07ca3b4641f6d946a5b27d7d5ecfe72a1348d9",
|
|
1672
|
+
"affectsGlobalScope": false
|
|
1673
|
+
},
|
|
1674
|
+
"../src/bitgo/lightning/ilightning.ts": {
|
|
1675
|
+
"version": "92b2dd8cde44eacacd51a94f854a2ea00e63c17e30d398d480a190f6031c46a3",
|
|
1676
|
+
"signature": "81ed73d97f55b58cf22802b1582f842701143db149b1abc6115eb92d6bb02d0f",
|
|
1677
|
+
"affectsGlobalScope": false
|
|
1678
|
+
},
|
|
1679
|
+
"../../../node_modules/bolt11/node_modules/@types/bn.js/index.d.ts": {
|
|
1680
|
+
"version": "bc6dd50ac2fc9a7ca6488811b116bd0ddd606338db0bb97852c8fcf757e2d7f5",
|
|
1681
|
+
"signature": "bc6dd50ac2fc9a7ca6488811b116bd0ddd606338db0bb97852c8fcf757e2d7f5",
|
|
1682
|
+
"affectsGlobalScope": false
|
|
1683
|
+
},
|
|
1684
|
+
"../../../node_modules/bolt11/payreq.d.ts": {
|
|
1685
|
+
"version": "982017b9d20d48b8d7dd48a07f93a367ddae106846a04146cf58171571ceafed",
|
|
1686
|
+
"signature": "982017b9d20d48b8d7dd48a07f93a367ddae106846a04146cf58171571ceafed",
|
|
1687
|
+
"affectsGlobalScope": false
|
|
1688
|
+
},
|
|
1689
|
+
"../../../node_modules/bech32/dist/index.d.ts": {
|
|
1690
|
+
"version": "a7a74b55a74b69119990ec09675e3f7c484cea5e7fc21639d7aafe26225b118f",
|
|
1691
|
+
"signature": "a7a74b55a74b69119990ec09675e3f7c484cea5e7fc21639d7aafe26225b118f",
|
|
1692
|
+
"affectsGlobalScope": false
|
|
1693
|
+
},
|
|
1694
|
+
"../src/bitgo/lightning/lnurlcodec.ts": {
|
|
1695
|
+
"version": "b514542e63c5fadc5086357194e976a30b8ca13f419fad5f3d0b5dc183989d87",
|
|
1696
|
+
"signature": "56c1498ab1eb499360bf7c36334bccd648abbc7f7ceb4674a96d6164322d4b51",
|
|
1697
|
+
"affectsGlobalScope": false
|
|
1698
|
+
},
|
|
1699
|
+
"../node_modules/fp-ts/lib/json.d.ts": {
|
|
1700
|
+
"version": "26462aa2ba0a066f201816b831c2e2deddb0d6deef189d55d8c9b8730427dafe",
|
|
1701
|
+
"signature": "26462aa2ba0a066f201816b831c2e2deddb0d6deef189d55d8c9b8730427dafe",
|
|
1702
|
+
"affectsGlobalScope": false
|
|
1703
|
+
},
|
|
1704
|
+
"../src/bitgo/utils/decode.ts": {
|
|
1705
|
+
"version": "3349a9c1033483cfab1b99e20bed946d21285d5a0816fcf40e9c2d457f660530",
|
|
1706
|
+
"signature": "27db02469ca7406ce2a4a415667581fb850647ad362697e23618b14a2880dde8",
|
|
1707
|
+
"affectsGlobalScope": false
|
|
1708
|
+
},
|
|
1709
|
+
"../src/bitgo/lightning/lightningutils.ts": {
|
|
1710
|
+
"version": "67acb5d473e7311dac7b1de40f5669bc44fe4ebe2e86a71210dad63f05449a78",
|
|
1711
|
+
"signature": "c1efbb8818973b40df23400c24c646a22b83f2076167b8e970b53eb7ac66e7f6",
|
|
1712
|
+
"affectsGlobalScope": false
|
|
1713
|
+
},
|
|
1714
|
+
"../src/bitgo/lightning/lightning.ts": {
|
|
1715
|
+
"version": "a7b66732b138d99fe439da9e562f1e553d67b002c6af0efd5ee7d6a7f27573d7",
|
|
1716
|
+
"signature": "36607a9df4740ed720e74eb913e6934084350b0f17e35ec4f40aa420ee234b9b",
|
|
1717
|
+
"affectsGlobalScope": false
|
|
1718
|
+
},
|
|
1719
|
+
"../src/bitgo/lightning/index.ts": {
|
|
1720
|
+
"version": "309f8809904d650f26f4d485f192e4db8586275086a88fb211c2ccc35c4bfcdb",
|
|
1721
|
+
"signature": "4b5743f4061c94a4af08d03ce8be6cc5e037842d84e47ef9e1e84e101dab5cff",
|
|
1722
|
+
"affectsGlobalScope": false
|
|
1723
|
+
},
|
|
1489
1724
|
"../src/bitgo/wallet/iwallet.ts": {
|
|
1490
|
-
"version": "
|
|
1491
|
-
"signature": "
|
|
1725
|
+
"version": "b877fbb821214e120e4799befb2435b3084efe7f69fa1ba4f9829a7440cc0d1d",
|
|
1726
|
+
"signature": "a9fe3945ee5bbd4066918d370d2ff6b2e688e41251a83594748530b65b7d2f15",
|
|
1492
1727
|
"affectsGlobalScope": false
|
|
1493
1728
|
},
|
|
1494
1729
|
"../../../node_modules/@types/secp256k1/index.d.ts": {
|
|
@@ -1497,8 +1732,8 @@
|
|
|
1497
1732
|
"affectsGlobalScope": false
|
|
1498
1733
|
},
|
|
1499
1734
|
"../src/bitgo/ecdh.ts": {
|
|
1500
|
-
"version": "
|
|
1501
|
-
"signature": "
|
|
1735
|
+
"version": "8af0f1da2c7a7b6cc9e0ab69ee9bbdc3dacc7232b5d6b18b36846ee31dcb76d9",
|
|
1736
|
+
"signature": "cb64a4ef01fcea079b66a0e884fa04e37c03ef2f614b1f25f5f3db1ef5771eb9",
|
|
1502
1737
|
"affectsGlobalScope": false
|
|
1503
1738
|
},
|
|
1504
1739
|
"../src/bitgo/internal/keycard.ts": {
|
|
@@ -1507,17 +1742,17 @@
|
|
|
1507
1742
|
"affectsGlobalScope": false
|
|
1508
1743
|
},
|
|
1509
1744
|
"../src/bitgo/wallet/wallet.ts": {
|
|
1510
|
-
"version": "
|
|
1511
|
-
"signature": "
|
|
1745
|
+
"version": "6d2a4ac365b9a4efa796610fea6d2553d21682dc6afc5c92ea5c7d1e1fe11aaa",
|
|
1746
|
+
"signature": "c840970ae30b63051b8817c939ee481bd582187130f91f70ff47ab6690d79c6d",
|
|
1512
1747
|
"affectsGlobalScope": false
|
|
1513
1748
|
},
|
|
1514
1749
|
"../src/bitgo/wallet/iwallets.ts": {
|
|
1515
|
-
"version": "
|
|
1516
|
-
"signature": "
|
|
1750
|
+
"version": "a9ac2b095aeb8be1a218c62478663ead2010d0eaa5ceea7eea753dd751703ee5",
|
|
1751
|
+
"signature": "1ef49055aa90991b380e5f0ba94b6b19ed49492bfb7ef35f4b74da0f55e7c84e",
|
|
1517
1752
|
"affectsGlobalScope": false
|
|
1518
1753
|
},
|
|
1519
1754
|
"../src/bitgo/wallet/wallets.ts": {
|
|
1520
|
-
"version": "
|
|
1755
|
+
"version": "a295c178afd6417eb8d3c21d06a3a26411b59c4702347544c2609c255b4f3151",
|
|
1521
1756
|
"signature": "c55b198d5ee554fad17db1460f680c24674a0c5429fe282e83b3e7147af92073",
|
|
1522
1757
|
"affectsGlobalScope": false
|
|
1523
1758
|
},
|
|
@@ -1587,18 +1822,18 @@
|
|
|
1587
1822
|
"affectsGlobalScope": false
|
|
1588
1823
|
},
|
|
1589
1824
|
"../src/bitgo/environments.ts": {
|
|
1590
|
-
"version": "
|
|
1591
|
-
"signature": "
|
|
1825
|
+
"version": "478a7e267037608bfd152e0a03477824846428d28575e4078aa3b6869e19044f",
|
|
1826
|
+
"signature": "c3d0cd94e6d1b298e32cffc053c1c9ae70abd520f3d402b05a3cf51d0dba8f9f",
|
|
1592
1827
|
"affectsGlobalScope": false
|
|
1593
1828
|
},
|
|
1594
1829
|
"../src/bitgo/config.ts": {
|
|
1595
1830
|
"version": "99d10a187dab280f3e6331dc53196fbfc7a4e467f2bea9ef08b5a6c70230c963",
|
|
1596
|
-
"signature": "
|
|
1831
|
+
"signature": "1b4568ca92a36ebd27e0c1f8f21884ca5da93f48565ee9b3ed5957f75750002c",
|
|
1597
1832
|
"affectsGlobalScope": false
|
|
1598
1833
|
},
|
|
1599
1834
|
"../src/bitgo/recovery/initiate.ts": {
|
|
1600
|
-
"version": "
|
|
1601
|
-
"signature": "
|
|
1835
|
+
"version": "0292c045f15cc438d09fbe1a8c3caf9ab672f93c216833cb9718b720b3ead437",
|
|
1836
|
+
"signature": "55cd76e27690e7c1a42c0c8d76811e575526d4ecef864401f35bbc890941b01f",
|
|
1602
1837
|
"affectsGlobalScope": false
|
|
1603
1838
|
},
|
|
1604
1839
|
"../src/bitgo/recovery/index.ts": {
|
|
@@ -1612,8 +1847,8 @@
|
|
|
1612
1847
|
"affectsGlobalScope": false
|
|
1613
1848
|
},
|
|
1614
1849
|
"../src/bitgo/basecoin/ibasecoin.ts": {
|
|
1615
|
-
"version": "
|
|
1616
|
-
"signature": "
|
|
1850
|
+
"version": "c5dd94fbaf303c38fd6591558079fcf767094256c7c1ed91b340ca421d30cd11",
|
|
1851
|
+
"signature": "fbb6c6edeaceac89b39ce59a0e2c155a9aff4e85adad6e581c982250ec936b1b",
|
|
1617
1852
|
"affectsGlobalScope": false
|
|
1618
1853
|
},
|
|
1619
1854
|
"../../../node_modules/bitcoinjs-message/index.d.ts": {
|
|
@@ -1622,13 +1857,13 @@
|
|
|
1622
1857
|
"affectsGlobalScope": false
|
|
1623
1858
|
},
|
|
1624
1859
|
"../src/bitgo/bip32util.ts": {
|
|
1625
|
-
"version": "
|
|
1626
|
-
"signature": "
|
|
1860
|
+
"version": "9b5246ab51692744e8722239337f0eeec4863bb3918cb03151e84808e65fac30",
|
|
1861
|
+
"signature": "59cb7aba3393bb5f41b81ffe9e6063a34a3d5431838f837771b72d0d056254f6",
|
|
1627
1862
|
"affectsGlobalScope": false
|
|
1628
1863
|
},
|
|
1629
1864
|
"../src/account-lib/mpc/index.ts": {
|
|
1630
|
-
"version": "
|
|
1631
|
-
"signature": "
|
|
1865
|
+
"version": "4a87fccdaaf54d75107e234bcab5d72f71137a8f9ee8b1f6cc96e4deca26d0a2",
|
|
1866
|
+
"signature": "552ff30fdbccad35212a073d1f22f17156da579c508e69327778c9f4693f9090",
|
|
1632
1867
|
"affectsGlobalScope": false
|
|
1633
1868
|
},
|
|
1634
1869
|
"../src/account-lib/staking/utils.ts": {
|
|
@@ -1657,8 +1892,8 @@
|
|
|
1657
1892
|
"affectsGlobalScope": false
|
|
1658
1893
|
},
|
|
1659
1894
|
"../src/bitgo/basecoin/basecoin.ts": {
|
|
1660
|
-
"version": "
|
|
1661
|
-
"signature": "
|
|
1895
|
+
"version": "8f7a6cf91e0e24a7a8d935c002b18e40f3f1e1268c45e4869710508c211a43f2",
|
|
1896
|
+
"signature": "cf15480ff9c0f1aed029d5fe1e6ff8c3cdeaba4039704e54b5e45a6a32751464",
|
|
1662
1897
|
"affectsGlobalScope": false
|
|
1663
1898
|
},
|
|
1664
1899
|
"../src/bitgo/basecoin/index.ts": {
|
|
@@ -1701,9 +1936,14 @@
|
|
|
1701
1936
|
"signature": "d31e72a3dc264ab160d4e5a2918a38d52c0ca8fc14a0a808ba77ba7c3cadee9d",
|
|
1702
1937
|
"affectsGlobalScope": false
|
|
1703
1938
|
},
|
|
1939
|
+
"../src/bitgo/legacybitcoin.ts": {
|
|
1940
|
+
"version": "61e0ce880fb3ba8f51ca7da4bf3be0d686e73577eaadcef0529f9c7509df71b5",
|
|
1941
|
+
"signature": "6e15bc0649384696fb4fc03d90e08e72e529adf1515670b6d40c6e2805fe774a",
|
|
1942
|
+
"affectsGlobalScope": false
|
|
1943
|
+
},
|
|
1704
1944
|
"../src/bitgo/index.ts": {
|
|
1705
|
-
"version": "
|
|
1706
|
-
"signature": "
|
|
1945
|
+
"version": "f2c243dd087a21e0ee050ca3ce90d4df60b6143529ddc9dfa8cc760df3d34042",
|
|
1946
|
+
"signature": "dc2ddcc39a22f7663f8510a203023aac0dc58e908972b24b6047e939c66d73a3",
|
|
1707
1947
|
"affectsGlobalScope": false
|
|
1708
1948
|
},
|
|
1709
1949
|
"../src/common.ts": {
|
|
@@ -1742,7 +1982,7 @@
|
|
|
1742
1982
|
"affectsGlobalScope": false
|
|
1743
1983
|
},
|
|
1744
1984
|
"../src/coins/ofc.ts": {
|
|
1745
|
-
"version": "
|
|
1985
|
+
"version": "5f8513d16d210f66b9f77e2e7dfe00750cf0cd87ae84a666e2baf1f54d1dd432",
|
|
1746
1986
|
"signature": "97dfd5db8402c74ed5f45e531ab4e626ab47e015015fe42a11b43ab02bf18fd8",
|
|
1747
1987
|
"affectsGlobalScope": false
|
|
1748
1988
|
},
|
|
@@ -1842,8 +2082,8 @@
|
|
|
1842
2082
|
"affectsGlobalScope": false
|
|
1843
2083
|
},
|
|
1844
2084
|
"../../../node_modules/@types/express-serve-static-core/index.d.ts": {
|
|
1845
|
-
"version": "
|
|
1846
|
-
"signature": "
|
|
2085
|
+
"version": "ae3fe461989bbd951344efc1f1fe932360ce7392e6126bdb225a82a1bbaf15ee",
|
|
2086
|
+
"signature": "ae3fe461989bbd951344efc1f1fe932360ce7392e6126bdb225a82a1bbaf15ee",
|
|
1847
2087
|
"affectsGlobalScope": true
|
|
1848
2088
|
},
|
|
1849
2089
|
"../../../node_modules/@types/connect-history-api-fallback/index.d.ts": {
|
|
@@ -1876,24 +2116,24 @@
|
|
|
1876
2116
|
"signature": "64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241",
|
|
1877
2117
|
"affectsGlobalScope": true
|
|
1878
2118
|
},
|
|
2119
|
+
"../../../node_modules/@types/estree/index.d.ts": {
|
|
2120
|
+
"version": "946bd1737d9412395a8f24414c70f18660b84a75a12b0b448e6eb1a2161d06dd",
|
|
2121
|
+
"signature": "946bd1737d9412395a8f24414c70f18660b84a75a12b0b448e6eb1a2161d06dd",
|
|
2122
|
+
"affectsGlobalScope": false
|
|
2123
|
+
},
|
|
1879
2124
|
"../../../node_modules/@types/json-schema/index.d.ts": {
|
|
1880
2125
|
"version": "f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6",
|
|
1881
2126
|
"signature": "f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6",
|
|
1882
2127
|
"affectsGlobalScope": false
|
|
1883
2128
|
},
|
|
1884
|
-
"../../../node_modules/@types/estree/index.d.ts": {
|
|
1885
|
-
"version": "a1c79f857f5c7754e14c93949dad8cfefcd7df2ecc0dc9dd79a30fd493e28449",
|
|
1886
|
-
"signature": "a1c79f857f5c7754e14c93949dad8cfefcd7df2ecc0dc9dd79a30fd493e28449",
|
|
1887
|
-
"affectsGlobalScope": false
|
|
1888
|
-
},
|
|
1889
2129
|
"../../../node_modules/@types/eslint/index.d.ts": {
|
|
1890
|
-
"version": "
|
|
1891
|
-
"signature": "
|
|
2130
|
+
"version": "c6297435733f252a9c0e2297fab3b58014b8fde5fa097a4102dae4e12522bccd",
|
|
2131
|
+
"signature": "c6297435733f252a9c0e2297fab3b58014b8fde5fa097a4102dae4e12522bccd",
|
|
1892
2132
|
"affectsGlobalScope": false
|
|
1893
2133
|
},
|
|
1894
2134
|
"../../../node_modules/@types/eslint-scope/index.d.ts": {
|
|
1895
|
-
"version": "
|
|
1896
|
-
"signature": "
|
|
2135
|
+
"version": "e050a0afcdbb269720a900c85076d18e0c1ab73e580202a2bf6964978181222a",
|
|
2136
|
+
"signature": "e050a0afcdbb269720a900c85076d18e0c1ab73e580202a2bf6964978181222a",
|
|
1897
2137
|
"affectsGlobalScope": false
|
|
1898
2138
|
},
|
|
1899
2139
|
"../../../node_modules/@types/ethereumjs-util/index.d.ts": {
|
|
@@ -1937,8 +2177,8 @@
|
|
|
1937
2177
|
"affectsGlobalScope": true
|
|
1938
2178
|
},
|
|
1939
2179
|
"../../../node_modules/csstype/index.d.ts": {
|
|
1940
|
-
"version": "
|
|
1941
|
-
"signature": "
|
|
2180
|
+
"version": "ba7617784f6b9aeac5e20c5eea869bbc3ef31b905f59c796b0fd401dae17c111",
|
|
2181
|
+
"signature": "ba7617784f6b9aeac5e20c5eea869bbc3ef31b905f59c796b0fd401dae17c111",
|
|
1942
2182
|
"affectsGlobalScope": false
|
|
1943
2183
|
},
|
|
1944
2184
|
"../../../node_modules/@types/prop-types/index.d.ts": {
|
|
@@ -1972,8 +2212,8 @@
|
|
|
1972
2212
|
"affectsGlobalScope": false
|
|
1973
2213
|
},
|
|
1974
2214
|
"../../../node_modules/@types/jasmine/index.d.ts": {
|
|
1975
|
-
"version": "
|
|
1976
|
-
"signature": "
|
|
2215
|
+
"version": "22f92bf43c39f2239e72c329d6764a241f4e342e8042da638b71b6e34cf41172",
|
|
2216
|
+
"signature": "22f92bf43c39f2239e72c329d6764a241f4e342e8042da638b71b6e34cf41172",
|
|
1977
2217
|
"affectsGlobalScope": true
|
|
1978
2218
|
},
|
|
1979
2219
|
"../../../node_modules/@types/json5/index.d.ts": {
|
|
@@ -1981,14 +2221,24 @@
|
|
|
1981
2221
|
"signature": "96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538",
|
|
1982
2222
|
"affectsGlobalScope": false
|
|
1983
2223
|
},
|
|
2224
|
+
"../../../node_modules/@types/keccak/index.d.ts": {
|
|
2225
|
+
"version": "44469f7cd056fda8a8c31ce768df26a401262098db908b436155b3f7860734c1",
|
|
2226
|
+
"signature": "44469f7cd056fda8a8c31ce768df26a401262098db908b436155b3f7860734c1",
|
|
2227
|
+
"affectsGlobalScope": false
|
|
2228
|
+
},
|
|
1984
2229
|
"../../../node_modules/@types/long/index.d.ts": {
|
|
1985
|
-
"version": "
|
|
1986
|
-
"signature": "
|
|
2230
|
+
"version": "0e60e0cbf2283adfd5a15430ae548cd2f662d581b5da6ecd98220203e7067c70",
|
|
2231
|
+
"signature": "0e60e0cbf2283adfd5a15430ae548cd2f662d581b5da6ecd98220203e7067c70",
|
|
2232
|
+
"affectsGlobalScope": false
|
|
2233
|
+
},
|
|
2234
|
+
"../../../node_modules/@types/mime/mime.d.ts": {
|
|
2235
|
+
"version": "5b9ecf7da4d71cf3832dbb8336150fa924631811f488ad4690c2dfec2b4fb1d7",
|
|
2236
|
+
"signature": "5b9ecf7da4d71cf3832dbb8336150fa924631811f488ad4690c2dfec2b4fb1d7",
|
|
1987
2237
|
"affectsGlobalScope": false
|
|
1988
2238
|
},
|
|
1989
2239
|
"../../../node_modules/@types/mime/index.d.ts": {
|
|
1990
|
-
"version": "
|
|
1991
|
-
"signature": "
|
|
2240
|
+
"version": "951c85f75aac041dddbedfedf565886a7b494e29ec1532e2a9b4a6180560b50e",
|
|
2241
|
+
"signature": "951c85f75aac041dddbedfedf565886a7b494e29ec1532e2a9b4a6180560b50e",
|
|
1992
2242
|
"affectsGlobalScope": false
|
|
1993
2243
|
},
|
|
1994
2244
|
"../../../node_modules/@types/mime-types/index.d.ts": {
|
|
@@ -2002,8 +2252,8 @@
|
|
|
2002
2252
|
"affectsGlobalScope": false
|
|
2003
2253
|
},
|
|
2004
2254
|
"../../../node_modules/@types/mocha/index.d.ts": {
|
|
2005
|
-
"version": "
|
|
2006
|
-
"signature": "
|
|
2255
|
+
"version": "3f6d6465811321abc30a1e5f667feed63e5b3917b3d6c8d6645daf96c75f97ba",
|
|
2256
|
+
"signature": "3f6d6465811321abc30a1e5f667feed63e5b3917b3d6c8d6645daf96c75f97ba",
|
|
2007
2257
|
"affectsGlobalScope": true
|
|
2008
2258
|
},
|
|
2009
2259
|
"../../../node_modules/@types/morgan/index.d.ts": {
|
|
@@ -2022,8 +2272,8 @@
|
|
|
2022
2272
|
"affectsGlobalScope": false
|
|
2023
2273
|
},
|
|
2024
2274
|
"../../../node_modules/@types/node-fetch/externals.d.ts": {
|
|
2025
|
-
"version": "
|
|
2026
|
-
"signature": "
|
|
2275
|
+
"version": "3898e3dbe94b6fe529fbe8f0faee1309c1923100516d7a014b301955e52ece77",
|
|
2276
|
+
"signature": "3898e3dbe94b6fe529fbe8f0faee1309c1923100516d7a014b301955e52ece77",
|
|
2027
2277
|
"affectsGlobalScope": false
|
|
2028
2278
|
},
|
|
2029
2279
|
"../../../node_modules/@types/node-fetch/index.d.ts": {
|
|
@@ -2067,8 +2317,8 @@
|
|
|
2067
2317
|
"affectsGlobalScope": false
|
|
2068
2318
|
},
|
|
2069
2319
|
"../../../node_modules/@types/serve-static/index.d.ts": {
|
|
2070
|
-
"version": "
|
|
2071
|
-
"signature": "
|
|
2320
|
+
"version": "f47887b61c6cf2f48746980390d6cb5b8013518951d912cfb37fe748071942be",
|
|
2321
|
+
"signature": "f47887b61c6cf2f48746980390d6cb5b8013518951d912cfb37fe748071942be",
|
|
2072
2322
|
"affectsGlobalScope": false
|
|
2073
2323
|
},
|
|
2074
2324
|
"../../../node_modules/@types/express/index.d.ts": {
|
|
@@ -2112,8 +2362,8 @@
|
|
|
2112
2362
|
"affectsGlobalScope": false
|
|
2113
2363
|
},
|
|
2114
2364
|
"../../../node_modules/@types/styled-components/index.d.ts": {
|
|
2115
|
-
"version": "
|
|
2116
|
-
"signature": "
|
|
2365
|
+
"version": "356701ea5df9eea3bf62b0f29857cb950d95eec9b9063f85c17be705926cdd2a",
|
|
2366
|
+
"signature": "356701ea5df9eea3bf62b0f29857cb950d95eec9b9063f85c17be705926cdd2a",
|
|
2117
2367
|
"affectsGlobalScope": true
|
|
2118
2368
|
},
|
|
2119
2369
|
"../../../node_modules/@types/supertest/index.d.ts": {
|
|
@@ -2132,8 +2382,8 @@
|
|
|
2132
2382
|
"affectsGlobalScope": false
|
|
2133
2383
|
},
|
|
2134
2384
|
"../../../node_modules/@types/uglify-js/index.d.ts": {
|
|
2135
|
-
"version": "
|
|
2136
|
-
"signature": "
|
|
2385
|
+
"version": "a2b7081f3e83eaa6b7140f1d6210576bfa29d064cbfe482085bf3e4d4c715284",
|
|
2386
|
+
"signature": "a2b7081f3e83eaa6b7140f1d6210576bfa29d064cbfe482085bf3e4d4c715284",
|
|
2137
2387
|
"affectsGlobalScope": false
|
|
2138
2388
|
},
|
|
2139
2389
|
"../../../node_modules/@types/urijs/dom-monkeypatch.d.ts": {
|
|
@@ -2247,8 +2497,8 @@
|
|
|
2247
2497
|
"affectsGlobalScope": false
|
|
2248
2498
|
},
|
|
2249
2499
|
"../../../node_modules/@types/yargs/index.d.ts": {
|
|
2250
|
-
"version": "
|
|
2251
|
-
"signature": "
|
|
2500
|
+
"version": "5e19d765e36e4b673d8eeeec8d8fb65dafb17ba6202cc21e9172bac2bce0fd04",
|
|
2501
|
+
"signature": "5e19d765e36e4b673d8eeeec8d8fb65dafb17ba6202cc21e9172bac2bce0fd04",
|
|
2252
2502
|
"affectsGlobalScope": false
|
|
2253
2503
|
},
|
|
2254
2504
|
"../../../node_modules/@types/yauzl/index.d.ts": {
|
|
@@ -2290,6 +2540,419 @@
|
|
|
2290
2540
|
"configFilePath": "../tsconfig.json"
|
|
2291
2541
|
},
|
|
2292
2542
|
"referencedMap": {
|
|
2543
|
+
"../node_modules/fp-ts/lib/alt.d.ts": [
|
|
2544
|
+
"../node_modules/fp-ts/hkt.d.ts",
|
|
2545
|
+
"../node_modules/fp-ts/lib/function.d.ts",
|
|
2546
|
+
"../node_modules/fp-ts/lib/functor.d.ts"
|
|
2547
|
+
],
|
|
2548
|
+
"../node_modules/fp-ts/lib/alternative.d.ts": [
|
|
2549
|
+
"../node_modules/fp-ts/hkt.d.ts",
|
|
2550
|
+
"../node_modules/fp-ts/lib/alt.d.ts",
|
|
2551
|
+
"../node_modules/fp-ts/lib/applicative.d.ts",
|
|
2552
|
+
"../node_modules/fp-ts/lib/zero.d.ts"
|
|
2553
|
+
],
|
|
2554
|
+
"../node_modules/fp-ts/lib/applicative.d.ts": [
|
|
2555
|
+
"../node_modules/fp-ts/hkt.d.ts",
|
|
2556
|
+
"../node_modules/fp-ts/lib/apply.d.ts",
|
|
2557
|
+
"../node_modules/fp-ts/lib/functor.d.ts",
|
|
2558
|
+
"../node_modules/fp-ts/lib/monoid.d.ts",
|
|
2559
|
+
"../node_modules/fp-ts/lib/pointed.d.ts"
|
|
2560
|
+
],
|
|
2561
|
+
"../node_modules/fp-ts/lib/apply.d.ts": [
|
|
2562
|
+
"../node_modules/fp-ts/hkt.d.ts",
|
|
2563
|
+
"../node_modules/fp-ts/lib/functor.d.ts",
|
|
2564
|
+
"../node_modules/fp-ts/lib/semigroup.d.ts"
|
|
2565
|
+
],
|
|
2566
|
+
"../node_modules/fp-ts/lib/bifunctor.d.ts": [
|
|
2567
|
+
"../node_modules/fp-ts/hkt.d.ts"
|
|
2568
|
+
],
|
|
2569
|
+
"../node_modules/fp-ts/lib/booleanalgebra.d.ts": [
|
|
2570
|
+
"../node_modules/fp-ts/lib/heytingalgebra.d.ts"
|
|
2571
|
+
],
|
|
2572
|
+
"../node_modules/fp-ts/lib/bounded.d.ts": [
|
|
2573
|
+
"../node_modules/fp-ts/lib/ord.d.ts"
|
|
2574
|
+
],
|
|
2575
|
+
"../node_modules/fp-ts/lib/boundeddistributivelattice.d.ts": [
|
|
2576
|
+
"../node_modules/fp-ts/lib/boundedlattice.d.ts",
|
|
2577
|
+
"../node_modules/fp-ts/lib/distributivelattice.d.ts",
|
|
2578
|
+
"../node_modules/fp-ts/lib/ord.d.ts"
|
|
2579
|
+
],
|
|
2580
|
+
"../node_modules/fp-ts/lib/boundedjoinsemilattice.d.ts": [
|
|
2581
|
+
"../node_modules/fp-ts/lib/joinsemilattice.d.ts"
|
|
2582
|
+
],
|
|
2583
|
+
"../node_modules/fp-ts/lib/boundedlattice.d.ts": [
|
|
2584
|
+
"../node_modules/fp-ts/lib/boundedjoinsemilattice.d.ts",
|
|
2585
|
+
"../node_modules/fp-ts/lib/boundedmeetsemilattice.d.ts"
|
|
2586
|
+
],
|
|
2587
|
+
"../node_modules/fp-ts/lib/boundedmeetsemilattice.d.ts": [
|
|
2588
|
+
"../node_modules/fp-ts/lib/meetsemilattice.d.ts"
|
|
2589
|
+
],
|
|
2590
|
+
"../node_modules/fp-ts/lib/chain.d.ts": [
|
|
2591
|
+
"../node_modules/fp-ts/hkt.d.ts",
|
|
2592
|
+
"../node_modules/fp-ts/lib/apply.d.ts"
|
|
2593
|
+
],
|
|
2594
|
+
"../node_modules/fp-ts/lib/chainrec.d.ts": [
|
|
2595
|
+
"../node_modules/fp-ts/hkt.d.ts",
|
|
2596
|
+
"../node_modules/fp-ts/lib/chain.d.ts",
|
|
2597
|
+
"../node_modules/fp-ts/lib/either.d.ts"
|
|
2598
|
+
],
|
|
2599
|
+
"../node_modules/fp-ts/lib/comonad.d.ts": [
|
|
2600
|
+
"../node_modules/fp-ts/hkt.d.ts",
|
|
2601
|
+
"../node_modules/fp-ts/lib/extend.d.ts"
|
|
2602
|
+
],
|
|
2603
|
+
"../node_modules/fp-ts/lib/compactable.d.ts": [
|
|
2604
|
+
"../node_modules/fp-ts/hkt.d.ts",
|
|
2605
|
+
"../node_modules/fp-ts/lib/either.d.ts",
|
|
2606
|
+
"../node_modules/fp-ts/lib/functor.d.ts",
|
|
2607
|
+
"../node_modules/fp-ts/lib/option.d.ts",
|
|
2608
|
+
"../node_modules/fp-ts/lib/separated.d.ts"
|
|
2609
|
+
],
|
|
2610
|
+
"../node_modules/fp-ts/lib/contravariant.d.ts": [
|
|
2611
|
+
"../node_modules/fp-ts/hkt.d.ts"
|
|
2612
|
+
],
|
|
2613
|
+
"../node_modules/fp-ts/lib/distributivelattice.d.ts": [
|
|
2614
|
+
"../node_modules/fp-ts/lib/lattice.d.ts",
|
|
2615
|
+
"../node_modules/fp-ts/lib/ord.d.ts"
|
|
2616
|
+
],
|
|
2617
|
+
"../node_modules/fp-ts/lib/either.d.ts": [
|
|
2618
|
+
"../node_modules/fp-ts/hkt.d.ts",
|
|
2619
|
+
"../node_modules/fp-ts/lib/alt.d.ts",
|
|
2620
|
+
"../node_modules/fp-ts/lib/applicative.d.ts",
|
|
2621
|
+
"../node_modules/fp-ts/lib/apply.d.ts",
|
|
2622
|
+
"../node_modules/fp-ts/lib/bifunctor.d.ts",
|
|
2623
|
+
"../node_modules/fp-ts/lib/chain.d.ts",
|
|
2624
|
+
"../node_modules/fp-ts/lib/chainrec.d.ts",
|
|
2625
|
+
"../node_modules/fp-ts/lib/compactable.d.ts",
|
|
2626
|
+
"../node_modules/fp-ts/lib/endomorphism.d.ts",
|
|
2627
|
+
"../node_modules/fp-ts/lib/eq.d.ts",
|
|
2628
|
+
"../node_modules/fp-ts/lib/extend.d.ts",
|
|
2629
|
+
"../node_modules/fp-ts/lib/filterable.d.ts",
|
|
2630
|
+
"../node_modules/fp-ts/lib/foldable.d.ts",
|
|
2631
|
+
"../node_modules/fp-ts/lib/fromeither.d.ts",
|
|
2632
|
+
"../node_modules/fp-ts/lib/function.d.ts",
|
|
2633
|
+
"../node_modules/fp-ts/lib/functor.d.ts",
|
|
2634
|
+
"../node_modules/fp-ts/lib/monad.d.ts",
|
|
2635
|
+
"../node_modules/fp-ts/lib/monadthrow.d.ts",
|
|
2636
|
+
"../node_modules/fp-ts/lib/monoid.d.ts",
|
|
2637
|
+
"../node_modules/fp-ts/lib/naturaltransformation.d.ts",
|
|
2638
|
+
"../node_modules/fp-ts/lib/option.d.ts",
|
|
2639
|
+
"../node_modules/fp-ts/lib/ord.d.ts",
|
|
2640
|
+
"../node_modules/fp-ts/lib/pointed.d.ts",
|
|
2641
|
+
"../node_modules/fp-ts/lib/predicate.d.ts",
|
|
2642
|
+
"../node_modules/fp-ts/lib/readonlynonemptyarray.d.ts",
|
|
2643
|
+
"../node_modules/fp-ts/lib/readonlyrecord.d.ts",
|
|
2644
|
+
"../node_modules/fp-ts/lib/refinement.d.ts",
|
|
2645
|
+
"../node_modules/fp-ts/lib/semigroup.d.ts",
|
|
2646
|
+
"../node_modules/fp-ts/lib/separated.d.ts",
|
|
2647
|
+
"../node_modules/fp-ts/lib/show.d.ts",
|
|
2648
|
+
"../node_modules/fp-ts/lib/traversable.d.ts",
|
|
2649
|
+
"../node_modules/fp-ts/lib/witherable.d.ts"
|
|
2650
|
+
],
|
|
2651
|
+
"../node_modules/fp-ts/lib/endomorphism.d.ts": [
|
|
2652
|
+
"../node_modules/fp-ts/hkt.d.ts",
|
|
2653
|
+
"../node_modules/fp-ts/lib/either.d.ts",
|
|
2654
|
+
"../node_modules/fp-ts/lib/eq.d.ts",
|
|
2655
|
+
"../node_modules/fp-ts/lib/monoid.d.ts",
|
|
2656
|
+
"../node_modules/fp-ts/lib/option.d.ts",
|
|
2657
|
+
"../node_modules/fp-ts/lib/ord.d.ts",
|
|
2658
|
+
"../node_modules/fp-ts/lib/predicate.d.ts",
|
|
2659
|
+
"../node_modules/fp-ts/lib/readonlynonemptyarray.d.ts",
|
|
2660
|
+
"../node_modules/fp-ts/lib/readonlyrecord.d.ts",
|
|
2661
|
+
"../node_modules/fp-ts/lib/semigroup.d.ts",
|
|
2662
|
+
"../node_modules/fp-ts/lib/separated.d.ts"
|
|
2663
|
+
],
|
|
2664
|
+
"../node_modules/fp-ts/lib/eq.d.ts": [
|
|
2665
|
+
"../node_modules/fp-ts/hkt.d.ts",
|
|
2666
|
+
"../node_modules/fp-ts/lib/contravariant.d.ts",
|
|
2667
|
+
"../node_modules/fp-ts/lib/either.d.ts",
|
|
2668
|
+
"../node_modules/fp-ts/lib/endomorphism.d.ts",
|
|
2669
|
+
"../node_modules/fp-ts/lib/monoid.d.ts",
|
|
2670
|
+
"../node_modules/fp-ts/lib/option.d.ts",
|
|
2671
|
+
"../node_modules/fp-ts/lib/ord.d.ts",
|
|
2672
|
+
"../node_modules/fp-ts/lib/predicate.d.ts",
|
|
2673
|
+
"../node_modules/fp-ts/lib/readonlynonemptyarray.d.ts",
|
|
2674
|
+
"../node_modules/fp-ts/lib/readonlyrecord.d.ts",
|
|
2675
|
+
"../node_modules/fp-ts/lib/semigroup.d.ts",
|
|
2676
|
+
"../node_modules/fp-ts/lib/separated.d.ts"
|
|
2677
|
+
],
|
|
2678
|
+
"../node_modules/fp-ts/lib/extend.d.ts": [
|
|
2679
|
+
"../node_modules/fp-ts/hkt.d.ts",
|
|
2680
|
+
"../node_modules/fp-ts/lib/functor.d.ts"
|
|
2681
|
+
],
|
|
2682
|
+
"../node_modules/fp-ts/lib/filterable.d.ts": [
|
|
2683
|
+
"../node_modules/fp-ts/hkt.d.ts",
|
|
2684
|
+
"../node_modules/fp-ts/lib/compactable.d.ts",
|
|
2685
|
+
"../node_modules/fp-ts/lib/either.d.ts",
|
|
2686
|
+
"../node_modules/fp-ts/lib/functor.d.ts",
|
|
2687
|
+
"../node_modules/fp-ts/lib/option.d.ts",
|
|
2688
|
+
"../node_modules/fp-ts/lib/predicate.d.ts",
|
|
2689
|
+
"../node_modules/fp-ts/lib/refinement.d.ts",
|
|
2690
|
+
"../node_modules/fp-ts/lib/separated.d.ts"
|
|
2691
|
+
],
|
|
2692
|
+
"../node_modules/fp-ts/lib/filterablewithindex.d.ts": [
|
|
2693
|
+
"../node_modules/fp-ts/hkt.d.ts",
|
|
2694
|
+
"../node_modules/fp-ts/lib/either.d.ts",
|
|
2695
|
+
"../node_modules/fp-ts/lib/filterable.d.ts",
|
|
2696
|
+
"../node_modules/fp-ts/lib/functorwithindex.d.ts",
|
|
2697
|
+
"../node_modules/fp-ts/lib/option.d.ts",
|
|
2698
|
+
"../node_modules/fp-ts/lib/separated.d.ts"
|
|
2699
|
+
],
|
|
2700
|
+
"../node_modules/fp-ts/lib/foldable.d.ts": [
|
|
2701
|
+
"../node_modules/fp-ts/hkt.d.ts",
|
|
2702
|
+
"../node_modules/fp-ts/lib/applicative.d.ts",
|
|
2703
|
+
"../node_modules/fp-ts/lib/monad.d.ts",
|
|
2704
|
+
"../node_modules/fp-ts/lib/monoid.d.ts"
|
|
2705
|
+
],
|
|
2706
|
+
"../node_modules/fp-ts/lib/foldablewithindex.d.ts": [
|
|
2707
|
+
"../node_modules/fp-ts/hkt.d.ts",
|
|
2708
|
+
"../node_modules/fp-ts/lib/foldable.d.ts",
|
|
2709
|
+
"../node_modules/fp-ts/lib/monoid.d.ts"
|
|
2710
|
+
],
|
|
2711
|
+
"../node_modules/fp-ts/lib/fromeither.d.ts": [
|
|
2712
|
+
"../node_modules/fp-ts/hkt.d.ts",
|
|
2713
|
+
"../node_modules/fp-ts/lib/chain.d.ts",
|
|
2714
|
+
"../node_modules/fp-ts/lib/either.d.ts",
|
|
2715
|
+
"../node_modules/fp-ts/lib/function.d.ts",
|
|
2716
|
+
"../node_modules/fp-ts/lib/naturaltransformation.d.ts",
|
|
2717
|
+
"../node_modules/fp-ts/lib/option.d.ts",
|
|
2718
|
+
"../node_modules/fp-ts/lib/predicate.d.ts",
|
|
2719
|
+
"../node_modules/fp-ts/lib/refinement.d.ts"
|
|
2720
|
+
],
|
|
2721
|
+
"../node_modules/fp-ts/lib/function.d.ts": [
|
|
2722
|
+
"../node_modules/fp-ts/lib/booleanalgebra.d.ts",
|
|
2723
|
+
"../node_modules/fp-ts/lib/monoid.d.ts",
|
|
2724
|
+
"../node_modules/fp-ts/lib/ring.d.ts",
|
|
2725
|
+
"../node_modules/fp-ts/lib/semigroup.d.ts",
|
|
2726
|
+
"../node_modules/fp-ts/lib/semiring.d.ts"
|
|
2727
|
+
],
|
|
2728
|
+
"../node_modules/fp-ts/lib/functor.d.ts": [
|
|
2729
|
+
"../node_modules/fp-ts/hkt.d.ts"
|
|
2730
|
+
],
|
|
2731
|
+
"../node_modules/fp-ts/lib/functorwithindex.d.ts": [
|
|
2732
|
+
"../node_modules/fp-ts/hkt.d.ts",
|
|
2733
|
+
"../node_modules/fp-ts/lib/functor.d.ts"
|
|
2734
|
+
],
|
|
2735
|
+
"../node_modules/fp-ts/lib/heytingalgebra.d.ts": [
|
|
2736
|
+
"../node_modules/fp-ts/lib/boundeddistributivelattice.d.ts"
|
|
2737
|
+
],
|
|
2738
|
+
"../node_modules/fp-ts/lib/json.d.ts": [
|
|
2739
|
+
"../node_modules/fp-ts/lib/either.d.ts"
|
|
2740
|
+
],
|
|
2741
|
+
"../node_modules/fp-ts/lib/lattice.d.ts": [
|
|
2742
|
+
"../node_modules/fp-ts/lib/joinsemilattice.d.ts",
|
|
2743
|
+
"../node_modules/fp-ts/lib/meetsemilattice.d.ts"
|
|
2744
|
+
],
|
|
2745
|
+
"../node_modules/fp-ts/lib/magma.d.ts": [
|
|
2746
|
+
"../node_modules/fp-ts/lib/endomorphism.d.ts",
|
|
2747
|
+
"../node_modules/fp-ts/lib/predicate.d.ts"
|
|
2748
|
+
],
|
|
2749
|
+
"../node_modules/fp-ts/lib/monad.d.ts": [
|
|
2750
|
+
"../node_modules/fp-ts/hkt.d.ts",
|
|
2751
|
+
"../node_modules/fp-ts/lib/applicative.d.ts",
|
|
2752
|
+
"../node_modules/fp-ts/lib/chain.d.ts"
|
|
2753
|
+
],
|
|
2754
|
+
"../node_modules/fp-ts/lib/monadthrow.d.ts": [
|
|
2755
|
+
"../node_modules/fp-ts/hkt.d.ts",
|
|
2756
|
+
"../node_modules/fp-ts/lib/monad.d.ts"
|
|
2757
|
+
],
|
|
2758
|
+
"../node_modules/fp-ts/lib/monoid.d.ts": [
|
|
2759
|
+
"../node_modules/fp-ts/lib/bounded.d.ts",
|
|
2760
|
+
"../node_modules/fp-ts/lib/endomorphism.d.ts",
|
|
2761
|
+
"../node_modules/fp-ts/lib/readonlyrecord.d.ts",
|
|
2762
|
+
"../node_modules/fp-ts/lib/semigroup.d.ts"
|
|
2763
|
+
],
|
|
2764
|
+
"../node_modules/fp-ts/lib/naturaltransformation.d.ts": [
|
|
2765
|
+
"../node_modules/fp-ts/hkt.d.ts"
|
|
2766
|
+
],
|
|
2767
|
+
"../node_modules/fp-ts/lib/option.d.ts": [
|
|
2768
|
+
"../node_modules/fp-ts/hkt.d.ts",
|
|
2769
|
+
"../node_modules/fp-ts/lib/alt.d.ts",
|
|
2770
|
+
"../node_modules/fp-ts/lib/alternative.d.ts",
|
|
2771
|
+
"../node_modules/fp-ts/lib/applicative.d.ts",
|
|
2772
|
+
"../node_modules/fp-ts/lib/apply.d.ts",
|
|
2773
|
+
"../node_modules/fp-ts/lib/chain.d.ts",
|
|
2774
|
+
"../node_modules/fp-ts/lib/compactable.d.ts",
|
|
2775
|
+
"../node_modules/fp-ts/lib/either.d.ts",
|
|
2776
|
+
"../node_modules/fp-ts/lib/endomorphism.d.ts",
|
|
2777
|
+
"../node_modules/fp-ts/lib/eq.d.ts",
|
|
2778
|
+
"../node_modules/fp-ts/lib/extend.d.ts",
|
|
2779
|
+
"../node_modules/fp-ts/lib/filterable.d.ts",
|
|
2780
|
+
"../node_modules/fp-ts/lib/foldable.d.ts",
|
|
2781
|
+
"../node_modules/fp-ts/lib/fromeither.d.ts",
|
|
2782
|
+
"../node_modules/fp-ts/lib/function.d.ts",
|
|
2783
|
+
"../node_modules/fp-ts/lib/functor.d.ts",
|
|
2784
|
+
"../node_modules/fp-ts/lib/monad.d.ts",
|
|
2785
|
+
"../node_modules/fp-ts/lib/monadthrow.d.ts",
|
|
2786
|
+
"../node_modules/fp-ts/lib/monoid.d.ts",
|
|
2787
|
+
"../node_modules/fp-ts/lib/ord.d.ts",
|
|
2788
|
+
"../node_modules/fp-ts/lib/pointed.d.ts",
|
|
2789
|
+
"../node_modules/fp-ts/lib/predicate.d.ts",
|
|
2790
|
+
"../node_modules/fp-ts/lib/readonlynonemptyarray.d.ts",
|
|
2791
|
+
"../node_modules/fp-ts/lib/readonlyrecord.d.ts",
|
|
2792
|
+
"../node_modules/fp-ts/lib/refinement.d.ts",
|
|
2793
|
+
"../node_modules/fp-ts/lib/semigroup.d.ts",
|
|
2794
|
+
"../node_modules/fp-ts/lib/separated.d.ts",
|
|
2795
|
+
"../node_modules/fp-ts/lib/show.d.ts",
|
|
2796
|
+
"../node_modules/fp-ts/lib/traversable.d.ts",
|
|
2797
|
+
"../node_modules/fp-ts/lib/witherable.d.ts",
|
|
2798
|
+
"../node_modules/fp-ts/lib/zero.d.ts"
|
|
2799
|
+
],
|
|
2800
|
+
"../node_modules/fp-ts/lib/ord.d.ts": [
|
|
2801
|
+
"../node_modules/fp-ts/hkt.d.ts",
|
|
2802
|
+
"../node_modules/fp-ts/lib/contravariant.d.ts",
|
|
2803
|
+
"../node_modules/fp-ts/lib/either.d.ts",
|
|
2804
|
+
"../node_modules/fp-ts/lib/endomorphism.d.ts",
|
|
2805
|
+
"../node_modules/fp-ts/lib/eq.d.ts",
|
|
2806
|
+
"../node_modules/fp-ts/lib/monoid.d.ts",
|
|
2807
|
+
"../node_modules/fp-ts/lib/option.d.ts",
|
|
2808
|
+
"../node_modules/fp-ts/lib/ordering.d.ts",
|
|
2809
|
+
"../node_modules/fp-ts/lib/predicate.d.ts",
|
|
2810
|
+
"../node_modules/fp-ts/lib/readonlynonemptyarray.d.ts",
|
|
2811
|
+
"../node_modules/fp-ts/lib/readonlyrecord.d.ts",
|
|
2812
|
+
"../node_modules/fp-ts/lib/semigroup.d.ts",
|
|
2813
|
+
"../node_modules/fp-ts/lib/separated.d.ts"
|
|
2814
|
+
],
|
|
2815
|
+
"../node_modules/fp-ts/lib/ordering.d.ts": [
|
|
2816
|
+
"../node_modules/fp-ts/lib/eq.d.ts",
|
|
2817
|
+
"../node_modules/fp-ts/lib/monoid.d.ts",
|
|
2818
|
+
"../node_modules/fp-ts/lib/semigroup.d.ts"
|
|
2819
|
+
],
|
|
2820
|
+
"../node_modules/fp-ts/lib/pointed.d.ts": [
|
|
2821
|
+
"../node_modules/fp-ts/hkt.d.ts"
|
|
2822
|
+
],
|
|
2823
|
+
"../node_modules/fp-ts/lib/predicate.d.ts": [
|
|
2824
|
+
"../node_modules/fp-ts/hkt.d.ts",
|
|
2825
|
+
"../node_modules/fp-ts/lib/contravariant.d.ts",
|
|
2826
|
+
"../node_modules/fp-ts/lib/either.d.ts",
|
|
2827
|
+
"../node_modules/fp-ts/lib/endomorphism.d.ts",
|
|
2828
|
+
"../node_modules/fp-ts/lib/eq.d.ts",
|
|
2829
|
+
"../node_modules/fp-ts/lib/monoid.d.ts",
|
|
2830
|
+
"../node_modules/fp-ts/lib/option.d.ts",
|
|
2831
|
+
"../node_modules/fp-ts/lib/ord.d.ts",
|
|
2832
|
+
"../node_modules/fp-ts/lib/readonlynonemptyarray.d.ts",
|
|
2833
|
+
"../node_modules/fp-ts/lib/readonlyrecord.d.ts",
|
|
2834
|
+
"../node_modules/fp-ts/lib/semigroup.d.ts",
|
|
2835
|
+
"../node_modules/fp-ts/lib/separated.d.ts"
|
|
2836
|
+
],
|
|
2837
|
+
"../node_modules/fp-ts/lib/readonlynonemptyarray.d.ts": [
|
|
2838
|
+
"../node_modules/fp-ts/hkt.d.ts",
|
|
2839
|
+
"../node_modules/fp-ts/lib/alt.d.ts",
|
|
2840
|
+
"../node_modules/fp-ts/lib/applicative.d.ts",
|
|
2841
|
+
"../node_modules/fp-ts/lib/apply.d.ts",
|
|
2842
|
+
"../node_modules/fp-ts/lib/chain.d.ts",
|
|
2843
|
+
"../node_modules/fp-ts/lib/comonad.d.ts",
|
|
2844
|
+
"../node_modules/fp-ts/lib/either.d.ts",
|
|
2845
|
+
"../node_modules/fp-ts/lib/endomorphism.d.ts",
|
|
2846
|
+
"../node_modules/fp-ts/lib/eq.d.ts",
|
|
2847
|
+
"../node_modules/fp-ts/lib/foldable.d.ts",
|
|
2848
|
+
"../node_modules/fp-ts/lib/foldablewithindex.d.ts",
|
|
2849
|
+
"../node_modules/fp-ts/lib/function.d.ts",
|
|
2850
|
+
"../node_modules/fp-ts/lib/functor.d.ts",
|
|
2851
|
+
"../node_modules/fp-ts/lib/functorwithindex.d.ts",
|
|
2852
|
+
"../node_modules/fp-ts/lib/monad.d.ts",
|
|
2853
|
+
"../node_modules/fp-ts/lib/option.d.ts",
|
|
2854
|
+
"../node_modules/fp-ts/lib/ord.d.ts",
|
|
2855
|
+
"../node_modules/fp-ts/lib/pointed.d.ts",
|
|
2856
|
+
"../node_modules/fp-ts/lib/predicate.d.ts",
|
|
2857
|
+
"../node_modules/fp-ts/lib/readonlyrecord.d.ts",
|
|
2858
|
+
"../node_modules/fp-ts/lib/refinement.d.ts",
|
|
2859
|
+
"../node_modules/fp-ts/lib/semigroup.d.ts",
|
|
2860
|
+
"../node_modules/fp-ts/lib/separated.d.ts",
|
|
2861
|
+
"../node_modules/fp-ts/lib/show.d.ts",
|
|
2862
|
+
"../node_modules/fp-ts/lib/traversable.d.ts",
|
|
2863
|
+
"../node_modules/fp-ts/lib/traversablewithindex.d.ts"
|
|
2864
|
+
],
|
|
2865
|
+
"../node_modules/fp-ts/lib/readonlyrecord.d.ts": [
|
|
2866
|
+
"../node_modules/fp-ts/hkt.d.ts",
|
|
2867
|
+
"../node_modules/fp-ts/lib/applicative.d.ts",
|
|
2868
|
+
"../node_modules/fp-ts/lib/compactable.d.ts",
|
|
2869
|
+
"../node_modules/fp-ts/lib/either.d.ts",
|
|
2870
|
+
"../node_modules/fp-ts/lib/endomorphism.d.ts",
|
|
2871
|
+
"../node_modules/fp-ts/lib/eq.d.ts",
|
|
2872
|
+
"../node_modules/fp-ts/lib/filterable.d.ts",
|
|
2873
|
+
"../node_modules/fp-ts/lib/filterablewithindex.d.ts",
|
|
2874
|
+
"../node_modules/fp-ts/lib/foldable.d.ts",
|
|
2875
|
+
"../node_modules/fp-ts/lib/foldablewithindex.d.ts",
|
|
2876
|
+
"../node_modules/fp-ts/lib/functor.d.ts",
|
|
2877
|
+
"../node_modules/fp-ts/lib/functorwithindex.d.ts",
|
|
2878
|
+
"../node_modules/fp-ts/lib/magma.d.ts",
|
|
2879
|
+
"../node_modules/fp-ts/lib/monoid.d.ts",
|
|
2880
|
+
"../node_modules/fp-ts/lib/option.d.ts",
|
|
2881
|
+
"../node_modules/fp-ts/lib/ord.d.ts",
|
|
2882
|
+
"../node_modules/fp-ts/lib/predicate.d.ts",
|
|
2883
|
+
"../node_modules/fp-ts/lib/readonlynonemptyarray.d.ts",
|
|
2884
|
+
"../node_modules/fp-ts/lib/refinement.d.ts",
|
|
2885
|
+
"../node_modules/fp-ts/lib/semigroup.d.ts",
|
|
2886
|
+
"../node_modules/fp-ts/lib/separated.d.ts",
|
|
2887
|
+
"../node_modules/fp-ts/lib/show.d.ts",
|
|
2888
|
+
"../node_modules/fp-ts/lib/traversable.d.ts",
|
|
2889
|
+
"../node_modules/fp-ts/lib/traversablewithindex.d.ts",
|
|
2890
|
+
"../node_modules/fp-ts/lib/unfoldable.d.ts",
|
|
2891
|
+
"../node_modules/fp-ts/lib/witherable.d.ts"
|
|
2892
|
+
],
|
|
2893
|
+
"../node_modules/fp-ts/lib/refinement.d.ts": [
|
|
2894
|
+
"../node_modules/fp-ts/lib/either.d.ts",
|
|
2895
|
+
"../node_modules/fp-ts/lib/option.d.ts"
|
|
2896
|
+
],
|
|
2897
|
+
"../node_modules/fp-ts/lib/ring.d.ts": [
|
|
2898
|
+
"../node_modules/fp-ts/lib/semiring.d.ts"
|
|
2899
|
+
],
|
|
2900
|
+
"../node_modules/fp-ts/lib/semigroup.d.ts": [
|
|
2901
|
+
"../node_modules/fp-ts/lib/magma.d.ts",
|
|
2902
|
+
"../node_modules/fp-ts/lib/ord.d.ts",
|
|
2903
|
+
"../node_modules/fp-ts/lib/readonlyrecord.d.ts"
|
|
2904
|
+
],
|
|
2905
|
+
"../node_modules/fp-ts/lib/separated.d.ts": [
|
|
2906
|
+
"../node_modules/fp-ts/hkt.d.ts",
|
|
2907
|
+
"../node_modules/fp-ts/lib/bifunctor.d.ts",
|
|
2908
|
+
"../node_modules/fp-ts/lib/either.d.ts",
|
|
2909
|
+
"../node_modules/fp-ts/lib/endomorphism.d.ts",
|
|
2910
|
+
"../node_modules/fp-ts/lib/eq.d.ts",
|
|
2911
|
+
"../node_modules/fp-ts/lib/functor.d.ts",
|
|
2912
|
+
"../node_modules/fp-ts/lib/option.d.ts",
|
|
2913
|
+
"../node_modules/fp-ts/lib/ord.d.ts",
|
|
2914
|
+
"../node_modules/fp-ts/lib/predicate.d.ts",
|
|
2915
|
+
"../node_modules/fp-ts/lib/readonlynonemptyarray.d.ts",
|
|
2916
|
+
"../node_modules/fp-ts/lib/readonlyrecord.d.ts"
|
|
2917
|
+
],
|
|
2918
|
+
"../node_modules/fp-ts/lib/show.d.ts": [
|
|
2919
|
+
"../node_modules/fp-ts/lib/readonlyrecord.d.ts"
|
|
2920
|
+
],
|
|
2921
|
+
"../node_modules/fp-ts/lib/traversable.d.ts": [
|
|
2922
|
+
"../node_modules/fp-ts/hkt.d.ts",
|
|
2923
|
+
"../node_modules/fp-ts/lib/applicative.d.ts",
|
|
2924
|
+
"../node_modules/fp-ts/lib/foldable.d.ts",
|
|
2925
|
+
"../node_modules/fp-ts/lib/functor.d.ts"
|
|
2926
|
+
],
|
|
2927
|
+
"../node_modules/fp-ts/lib/traversablewithindex.d.ts": [
|
|
2928
|
+
"../node_modules/fp-ts/hkt.d.ts",
|
|
2929
|
+
"../node_modules/fp-ts/lib/applicative.d.ts",
|
|
2930
|
+
"../node_modules/fp-ts/lib/foldablewithindex.d.ts",
|
|
2931
|
+
"../node_modules/fp-ts/lib/functorwithindex.d.ts",
|
|
2932
|
+
"../node_modules/fp-ts/lib/traversable.d.ts"
|
|
2933
|
+
],
|
|
2934
|
+
"../node_modules/fp-ts/lib/unfoldable.d.ts": [
|
|
2935
|
+
"../node_modules/fp-ts/hkt.d.ts",
|
|
2936
|
+
"../node_modules/fp-ts/lib/option.d.ts"
|
|
2937
|
+
],
|
|
2938
|
+
"../node_modules/fp-ts/lib/witherable.d.ts": [
|
|
2939
|
+
"../node_modules/fp-ts/hkt.d.ts",
|
|
2940
|
+
"../node_modules/fp-ts/lib/applicative.d.ts",
|
|
2941
|
+
"../node_modules/fp-ts/lib/compactable.d.ts",
|
|
2942
|
+
"../node_modules/fp-ts/lib/either.d.ts",
|
|
2943
|
+
"../node_modules/fp-ts/lib/filterable.d.ts",
|
|
2944
|
+
"../node_modules/fp-ts/lib/option.d.ts",
|
|
2945
|
+
"../node_modules/fp-ts/lib/separated.d.ts",
|
|
2946
|
+
"../node_modules/fp-ts/lib/traversable.d.ts"
|
|
2947
|
+
],
|
|
2948
|
+
"../node_modules/fp-ts/lib/zero.d.ts": [
|
|
2949
|
+
"../node_modules/fp-ts/hkt.d.ts",
|
|
2950
|
+
"../node_modules/fp-ts/lib/pointed.d.ts"
|
|
2951
|
+
],
|
|
2952
|
+
"../node_modules/io-ts/lib/index.d.ts": [
|
|
2953
|
+
"../node_modules/fp-ts/lib/either.d.ts",
|
|
2954
|
+
"../node_modules/fp-ts/lib/function.d.ts"
|
|
2955
|
+
],
|
|
2293
2956
|
"../src/account-lib/basecoin/basekeypair.ts": [
|
|
2294
2957
|
"../src/account-lib/basecoin/enum.ts"
|
|
2295
2958
|
],
|
|
@@ -2311,6 +2974,7 @@
|
|
|
2311
2974
|
],
|
|
2312
2975
|
"../src/account-lib/basecoin/blskeypair.ts": [
|
|
2313
2976
|
"../../../node_modules/@types/node/assert.d.ts",
|
|
2977
|
+
"../../../node_modules/@types/node/crypto.d.ts",
|
|
2314
2978
|
"../src/account-lib/basecoin/basekeypair.ts",
|
|
2315
2979
|
"../src/account-lib/basecoin/enum.ts",
|
|
2316
2980
|
"../src/account-lib/basecoin/errors.ts",
|
|
@@ -2345,7 +3009,8 @@
|
|
|
2345
3009
|
],
|
|
2346
3010
|
"../src/account-lib/basecoin/secp256k1extendedkeypair.ts": [
|
|
2347
3011
|
"../../../node_modules/bip32/types/index.d.ts",
|
|
2348
|
-
"../../../node_modules/
|
|
3012
|
+
"../../../node_modules/ecpair/src/index.d.ts",
|
|
3013
|
+
"../../utxo-lib/dist/src/index.d.ts",
|
|
2349
3014
|
"../src/account-lib/basecoin/basekeypair.ts",
|
|
2350
3015
|
"../src/account-lib/basecoin/enum.ts",
|
|
2351
3016
|
"../src/account-lib/basecoin/errors.ts",
|
|
@@ -2382,6 +3047,7 @@
|
|
|
2382
3047
|
"../src/account-lib/mpc/index.ts": [
|
|
2383
3048
|
"../src/account-lib/mpc/curves/index.ts",
|
|
2384
3049
|
"../src/account-lib/mpc/hdtree.ts",
|
|
3050
|
+
"../src/account-lib/mpc/shamir.ts",
|
|
2385
3051
|
"../src/account-lib/mpc/tss/index.ts",
|
|
2386
3052
|
"../src/account-lib/mpc/util.ts"
|
|
2387
3053
|
],
|
|
@@ -2433,10 +3099,9 @@
|
|
|
2433
3099
|
"../src/account-lib/util/crypto.ts": [
|
|
2434
3100
|
"../../../node_modules/@stablelib/hex/lib/hex.d.ts",
|
|
2435
3101
|
"../../../node_modules/@types/bs58/index.d.ts",
|
|
2436
|
-
"../../../node_modules/bip32/types/index.d.ts",
|
|
2437
|
-
"../../../node_modules/bitcoinjs-lib/types/index.d.ts",
|
|
2438
3102
|
"../../../node_modules/noble-bls12-381/index.d.ts",
|
|
2439
3103
|
"../../../node_modules/tweetnacl/nacl.d.ts",
|
|
3104
|
+
"../../utxo-lib/dist/src/index.d.ts",
|
|
2440
3105
|
"../src/account-lib/basecoin/iface.ts"
|
|
2441
3106
|
],
|
|
2442
3107
|
"../src/account-lib/util/ed25519keyderiver.ts": [
|
|
@@ -2452,7 +3117,6 @@
|
|
|
2452
3117
|
"../src/bitgo/basecoin/basecoin.ts": [
|
|
2453
3118
|
"../../../node_modules/@types/node/crypto.d.ts",
|
|
2454
3119
|
"../../../node_modules/bignumber.js/bignumber.d.ts",
|
|
2455
|
-
"../../../node_modules/bip32/types/index.d.ts",
|
|
2456
3120
|
"../../utxo-lib/dist/src/index.d.ts",
|
|
2457
3121
|
"../src/account-lib/index.ts",
|
|
2458
3122
|
"../src/bitgo/basecoin/ibasecoin.ts",
|
|
@@ -2474,7 +3138,8 @@
|
|
|
2474
3138
|
"../src/bitgo/market/index.ts",
|
|
2475
3139
|
"../src/bitgo/pendingapproval/index.ts",
|
|
2476
3140
|
"../src/bitgo/recovery/index.ts",
|
|
2477
|
-
"../src/bitgo/utils/index.ts",
|
|
3141
|
+
"../src/bitgo/utils/tss/ecdsa/index.ts",
|
|
3142
|
+
"../src/bitgo/utils/tss/eddsa/index.ts",
|
|
2478
3143
|
"../src/bitgo/wallet/index.ts",
|
|
2479
3144
|
"../src/bitgo/webhook/iwebhooks.ts"
|
|
2480
3145
|
],
|
|
@@ -2490,6 +3155,7 @@
|
|
|
2490
3155
|
],
|
|
2491
3156
|
"../src/bitgo/bitcoin.ts": [
|
|
2492
3157
|
"../../../node_modules/bip32/types/index.d.ts",
|
|
3158
|
+
"../../../node_modules/ecpair/src/index.d.ts",
|
|
2493
3159
|
"../../utxo-lib/dist/src/index.d.ts",
|
|
2494
3160
|
"../src/bitgo/types.ts",
|
|
2495
3161
|
"../src/common.ts"
|
|
@@ -2514,7 +3180,7 @@
|
|
|
2514
3180
|
"../../../node_modules/@types/node/assert.d.ts",
|
|
2515
3181
|
"../../../node_modules/@types/secp256k1/index.d.ts",
|
|
2516
3182
|
"../../../node_modules/bip32/types/index.d.ts",
|
|
2517
|
-
"
|
|
3183
|
+
"../../../node_modules/ecpair/src/index.d.ts"
|
|
2518
3184
|
],
|
|
2519
3185
|
"../src/bitgo/enterprise/enterprise.ts": [
|
|
2520
3186
|
"../../../node_modules/@types/lodash/index.d.ts",
|
|
@@ -2564,6 +3230,8 @@
|
|
|
2564
3230
|
"../src/bitgo/errors.ts",
|
|
2565
3231
|
"../src/bitgo/internal/index.ts",
|
|
2566
3232
|
"../src/bitgo/keychain/index.ts",
|
|
3233
|
+
"../src/bitgo/legacybitcoin.ts",
|
|
3234
|
+
"../src/bitgo/lightning/index.ts",
|
|
2567
3235
|
"../src/bitgo/market/index.ts",
|
|
2568
3236
|
"../src/bitgo/pendingapproval/index.ts",
|
|
2569
3237
|
"../src/bitgo/recovery/index.ts",
|
|
@@ -2605,6 +3273,41 @@
|
|
|
2605
3273
|
"../src/bitgo/utils/index.ts",
|
|
2606
3274
|
"../src/common.ts"
|
|
2607
3275
|
],
|
|
3276
|
+
"../src/bitgo/legacybitcoin.ts": [
|
|
3277
|
+
"../../../node_modules/bip32/types/index.d.ts",
|
|
3278
|
+
"../../../node_modules/ecpair/src/index.d.ts",
|
|
3279
|
+
"../../utxo-lib/dist/src/index.d.ts",
|
|
3280
|
+
"../src/api/index.ts",
|
|
3281
|
+
"../src/bitgo/bitcoin.ts"
|
|
3282
|
+
],
|
|
3283
|
+
"../src/bitgo/lightning/ilightning.ts": [
|
|
3284
|
+
"../node_modules/io-ts/lib/index.d.ts"
|
|
3285
|
+
],
|
|
3286
|
+
"../src/bitgo/lightning/index.ts": [
|
|
3287
|
+
"../src/bitgo/lightning/ilightning.ts",
|
|
3288
|
+
"../src/bitgo/lightning/lightning.ts",
|
|
3289
|
+
"../src/bitgo/lightning/lightningutils.ts",
|
|
3290
|
+
"../src/bitgo/lightning/lnurlcodec.ts"
|
|
3291
|
+
],
|
|
3292
|
+
"../src/bitgo/lightning/lightning.ts": [
|
|
3293
|
+
"../../../node_modules/@types/node/crypto.d.ts",
|
|
3294
|
+
"../src/bitgo/bitgobase.ts",
|
|
3295
|
+
"../src/bitgo/lightning/ilightning.ts",
|
|
3296
|
+
"../src/bitgo/lightning/lightningutils.ts",
|
|
3297
|
+
"../src/bitgo/utils/decode.ts",
|
|
3298
|
+
"../src/bitgo/wallet/index.ts"
|
|
3299
|
+
],
|
|
3300
|
+
"../src/bitgo/lightning/lightningutils.ts": [
|
|
3301
|
+
"../../../node_modules/@types/node/crypto.d.ts",
|
|
3302
|
+
"../../../node_modules/@types/superagent/index.d.ts",
|
|
3303
|
+
"../../../node_modules/bolt11/payreq.d.ts",
|
|
3304
|
+
"../src/bitgo/lightning/ilightning.ts",
|
|
3305
|
+
"../src/bitgo/lightning/lnurlcodec.ts",
|
|
3306
|
+
"../src/bitgo/utils/decode.ts"
|
|
3307
|
+
],
|
|
3308
|
+
"../src/bitgo/lightning/lnurlcodec.ts": [
|
|
3309
|
+
"../../../node_modules/bech32/dist/index.d.ts"
|
|
3310
|
+
],
|
|
2608
3311
|
"../src/bitgo/market/index.ts": [
|
|
2609
3312
|
"../src/bitgo/market/imarkets.ts",
|
|
2610
3313
|
"../src/bitgo/market/markets.ts"
|
|
@@ -2648,6 +3351,7 @@
|
|
|
2648
3351
|
],
|
|
2649
3352
|
"../src/bitgo/recovery/initiate.ts": [
|
|
2650
3353
|
"../../../node_modules/bip32/types/index.d.ts",
|
|
3354
|
+
"../../utxo-lib/dist/src/index.d.ts",
|
|
2651
3355
|
"../src/bitgo/basecoin/index.ts",
|
|
2652
3356
|
"../src/bitgo/bitgobase.ts",
|
|
2653
3357
|
"../src/bitgo/config.ts"
|
|
@@ -2795,6 +3499,14 @@
|
|
|
2795
3499
|
"../src/bitgo/utils/iblsutils.ts",
|
|
2796
3500
|
"../src/bitgo/utils/mpcutils.ts"
|
|
2797
3501
|
],
|
|
3502
|
+
"../src/bitgo/utils/decode.ts": [
|
|
3503
|
+
"../node_modules/fp-ts/lib/either.d.ts",
|
|
3504
|
+
"../node_modules/fp-ts/lib/function.d.ts",
|
|
3505
|
+
"../node_modules/fp-ts/lib/json.d.ts",
|
|
3506
|
+
"../node_modules/fp-ts/lib/option.d.ts",
|
|
3507
|
+
"../node_modules/fp-ts/lib/readonlynonemptyarray.d.ts",
|
|
3508
|
+
"../node_modules/io-ts/lib/index.d.ts"
|
|
3509
|
+
],
|
|
2798
3510
|
"../src/bitgo/utils/iblsutils.ts": [
|
|
2799
3511
|
"../../../node_modules/openpgp/openpgp.d.ts",
|
|
2800
3512
|
"../src/bitgo/basecoin/index.ts",
|
|
@@ -2820,6 +3532,7 @@
|
|
|
2820
3532
|
"../src/bitgo/utils/tss/basetypes.ts"
|
|
2821
3533
|
],
|
|
2822
3534
|
"../src/bitgo/utils/opengpgutils.ts": [
|
|
3535
|
+
"../../../node_modules/@types/lodash/index.d.ts",
|
|
2823
3536
|
"../../../node_modules/openpgp/openpgp.d.ts",
|
|
2824
3537
|
"../src/bitgo/bitgobase.ts"
|
|
2825
3538
|
],
|
|
@@ -2902,8 +3615,8 @@
|
|
|
2902
3615
|
"../src/bitgo/utils/util.ts": [
|
|
2903
3616
|
"../../../node_modules/@types/lodash/index.d.ts",
|
|
2904
3617
|
"../../../node_modules/@types/node/crypto.d.ts",
|
|
2905
|
-
"../../../node_modules/bip32/types/index.d.ts",
|
|
2906
3618
|
"../../../node_modules/ethereumjs-util/dist/index.d.ts",
|
|
3619
|
+
"../../utxo-lib/dist/src/index.d.ts",
|
|
2907
3620
|
"../src/api/index.ts",
|
|
2908
3621
|
"../src/bitgo/errors.ts"
|
|
2909
3622
|
],
|
|
@@ -2918,6 +3631,7 @@
|
|
|
2918
3631
|
"../src/bitgo/basecoin/index.ts",
|
|
2919
3632
|
"../src/bitgo/bitgobase.ts",
|
|
2920
3633
|
"../src/bitgo/keychain/index.ts",
|
|
3634
|
+
"../src/bitgo/lightning/index.ts",
|
|
2921
3635
|
"../src/bitgo/pendingapproval/index.ts",
|
|
2922
3636
|
"../src/bitgo/staking/index.ts",
|
|
2923
3637
|
"../src/bitgo/trading/index.ts",
|
|
@@ -2940,17 +3654,20 @@
|
|
|
2940
3654
|
"../src/bitgo/internal/internal.ts",
|
|
2941
3655
|
"../src/bitgo/internal/keycard.ts",
|
|
2942
3656
|
"../src/bitgo/keychain/index.ts",
|
|
3657
|
+
"../src/bitgo/lightning/index.ts",
|
|
2943
3658
|
"../src/bitgo/pendingapproval/index.ts",
|
|
2944
3659
|
"../src/bitgo/staking/stakingwallet.ts",
|
|
2945
3660
|
"../src/bitgo/trading/tradingaccount.ts",
|
|
2946
3661
|
"../src/bitgo/utils/index.ts",
|
|
3662
|
+
"../src/bitgo/utils/tss/ecdsa/index.ts",
|
|
3663
|
+
"../src/bitgo/utils/tss/eddsa/index.ts",
|
|
2947
3664
|
"../src/bitgo/wallet/iwallet.ts",
|
|
2948
3665
|
"../src/common.ts"
|
|
2949
3666
|
],
|
|
2950
3667
|
"../src/bitgo/wallet/wallets.ts": [
|
|
2951
3668
|
"../../../node_modules/@types/lodash/index.d.ts",
|
|
2952
3669
|
"../../../node_modules/bignumber.js/bignumber.d.ts",
|
|
2953
|
-
"
|
|
3670
|
+
"../../utxo-lib/dist/src/index.d.ts",
|
|
2954
3671
|
"../src/api/index.ts",
|
|
2955
3672
|
"../src/bitgo/basecoin/index.ts",
|
|
2956
3673
|
"../src/bitgo/bitgobase.ts",
|
|
@@ -2995,7 +3712,7 @@
|
|
|
2995
3712
|
],
|
|
2996
3713
|
"../src/coins/ofc.ts": [
|
|
2997
3714
|
"../../../node_modules/@types/node/crypto.d.ts",
|
|
2998
|
-
"
|
|
3715
|
+
"../../utxo-lib/dist/src/index.d.ts",
|
|
2999
3716
|
"../src/index.ts"
|
|
3000
3717
|
],
|
|
3001
3718
|
"../src/coins/ofctoken.ts": [
|
|
@@ -3074,34 +3791,34 @@
|
|
|
3074
3791
|
"../../statics/dist/src/networks.d.ts"
|
|
3075
3792
|
],
|
|
3076
3793
|
"../../utxo-lib/dist/src/address.d.ts": [
|
|
3077
|
-
"../../../node_modules
|
|
3794
|
+
"../../../node_modules/bitcoinjs-lib/src/address.d.ts",
|
|
3795
|
+
"../../../node_modules/bitcoinjs-lib/src/index.d.ts",
|
|
3078
3796
|
"../../utxo-lib/dist/src/networks.d.ts",
|
|
3079
|
-
"../../utxo-lib/node_modules/
|
|
3080
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/index.d.ts"
|
|
3797
|
+
"../../utxo-lib/node_modules/@types/node/index.d.ts"
|
|
3081
3798
|
],
|
|
3082
3799
|
"../../utxo-lib/dist/src/addressformat.d.ts": [
|
|
3083
|
-
"
|
|
3084
|
-
"../../utxo-lib/
|
|
3800
|
+
"../../utxo-lib/dist/src/networks.d.ts",
|
|
3801
|
+
"../../utxo-lib/node_modules/@types/node/index.d.ts"
|
|
3085
3802
|
],
|
|
3086
3803
|
"../../utxo-lib/dist/src/bitgo/bitcoincash/address.d.ts": [
|
|
3087
|
-
"../../../node_modules/@types/node/index.d.ts",
|
|
3088
3804
|
"../../utxo-lib/dist/src/addressformat.d.ts",
|
|
3089
|
-
"../../utxo-lib/dist/src/networks.d.ts"
|
|
3805
|
+
"../../utxo-lib/dist/src/networks.d.ts",
|
|
3806
|
+
"../../utxo-lib/node_modules/@types/node/index.d.ts"
|
|
3090
3807
|
],
|
|
3091
3808
|
"../../utxo-lib/dist/src/bitgo/bitcoincash/index.d.ts": [
|
|
3092
3809
|
"../../utxo-lib/dist/src/bitgo/bitcoincash/address.d.ts"
|
|
3093
3810
|
],
|
|
3094
3811
|
"../../utxo-lib/dist/src/bitgo/dash/dashtransaction.d.ts": [
|
|
3095
|
-
"../../../node_modules/@types/node/index.d.ts",
|
|
3096
3812
|
"../../utxo-lib/dist/src/bitgo/utxotransaction.d.ts",
|
|
3097
|
-
"../../utxo-lib/dist/src/networks.d.ts"
|
|
3813
|
+
"../../utxo-lib/dist/src/networks.d.ts",
|
|
3814
|
+
"../../utxo-lib/node_modules/@types/node/index.d.ts"
|
|
3098
3815
|
],
|
|
3099
3816
|
"../../utxo-lib/dist/src/bitgo/dash/dashtransactionbuilder.d.ts": [
|
|
3100
|
-
"../../../node_modules
|
|
3817
|
+
"../../../node_modules/bitcoinjs-lib/src/index.d.ts",
|
|
3101
3818
|
"../../utxo-lib/dist/src/bitgo/dash/dashtransaction.d.ts",
|
|
3102
3819
|
"../../utxo-lib/dist/src/bitgo/utxotransactionbuilder.d.ts",
|
|
3103
3820
|
"../../utxo-lib/dist/src/networks.d.ts",
|
|
3104
|
-
"../../utxo-lib/node_modules/
|
|
3821
|
+
"../../utxo-lib/node_modules/@types/node/index.d.ts"
|
|
3105
3822
|
],
|
|
3106
3823
|
"../../utxo-lib/dist/src/bitgo/dash/index.d.ts": [
|
|
3107
3824
|
"../../utxo-lib/dist/src/bitgo/dash/dashtransaction.d.ts",
|
|
@@ -3124,53 +3841,54 @@
|
|
|
3124
3841
|
"../../utxo-lib/dist/src/bitgo/zcash/index.d.ts"
|
|
3125
3842
|
],
|
|
3126
3843
|
"../../utxo-lib/dist/src/bitgo/keyutil.d.ts": [
|
|
3127
|
-
"../../../node_modules
|
|
3844
|
+
"../../../node_modules/ecpair/src/index.d.ts",
|
|
3128
3845
|
"../../utxo-lib/dist/src/networks.d.ts",
|
|
3129
|
-
"../../utxo-lib/node_modules/
|
|
3846
|
+
"../../utxo-lib/node_modules/@types/node/index.d.ts"
|
|
3130
3847
|
],
|
|
3131
3848
|
"../../utxo-lib/dist/src/bitgo/nonstandardhalfsigned.d.ts": [
|
|
3132
3849
|
"../../utxo-lib/dist/src/index.d.ts"
|
|
3133
3850
|
],
|
|
3134
3851
|
"../../utxo-lib/dist/src/bitgo/outputscripts.d.ts": [
|
|
3135
|
-
"../../../node_modules
|
|
3852
|
+
"../../../node_modules/bitcoinjs-lib/src/index.d.ts",
|
|
3136
3853
|
"../../utxo-lib/dist/src/bitgo/types.d.ts",
|
|
3137
3854
|
"../../utxo-lib/dist/src/bitgo/wallet/chains.d.ts",
|
|
3138
3855
|
"../../utxo-lib/dist/src/index.d.ts",
|
|
3139
|
-
"../../utxo-lib/node_modules/
|
|
3856
|
+
"../../utxo-lib/node_modules/@types/node/index.d.ts"
|
|
3140
3857
|
],
|
|
3141
3858
|
"../../utxo-lib/dist/src/bitgo/signature.d.ts": [
|
|
3142
|
-
"../../../node_modules/@types/node/index.d.ts",
|
|
3143
3859
|
"../../../node_modules/bip32/types/index.d.ts",
|
|
3860
|
+
"../../../node_modules/bitcoinjs-lib/src/index.d.ts",
|
|
3144
3861
|
"../../utxo-lib/dist/src/bitgo/outputscripts.d.ts",
|
|
3145
3862
|
"../../utxo-lib/dist/src/bitgo/types.d.ts",
|
|
3146
3863
|
"../../utxo-lib/dist/src/bitgo/utxotransaction.d.ts",
|
|
3147
3864
|
"../../utxo-lib/dist/src/bitgo/utxotransactionbuilder.d.ts",
|
|
3148
3865
|
"../../utxo-lib/dist/src/networks.d.ts",
|
|
3149
|
-
"../../utxo-lib/node_modules/
|
|
3866
|
+
"../../utxo-lib/node_modules/@types/node/index.d.ts"
|
|
3150
3867
|
],
|
|
3151
3868
|
"../../utxo-lib/dist/src/bitgo/transaction.d.ts": [
|
|
3152
|
-
"../../../node_modules
|
|
3869
|
+
"../../../node_modules/bitcoinjs-lib/src/index.d.ts",
|
|
3153
3870
|
"../../utxo-lib/dist/src/bitgo/utxotransaction.d.ts",
|
|
3154
3871
|
"../../utxo-lib/dist/src/bitgo/utxotransactionbuilder.d.ts",
|
|
3155
3872
|
"../../utxo-lib/dist/src/networks.d.ts",
|
|
3156
|
-
"../../utxo-lib/node_modules/
|
|
3873
|
+
"../../utxo-lib/node_modules/@types/node/index.d.ts"
|
|
3157
3874
|
],
|
|
3158
3875
|
"../../utxo-lib/dist/src/bitgo/unspent.d.ts": [
|
|
3159
|
-
"../../../node_modules
|
|
3876
|
+
"../../../node_modules/bitcoinjs-lib/src/index.d.ts",
|
|
3160
3877
|
"../../utxo-lib/dist/src/bitgo/utxotransactionbuilder.d.ts",
|
|
3161
3878
|
"../../utxo-lib/dist/src/index.d.ts",
|
|
3162
|
-
"../../utxo-lib/node_modules/
|
|
3879
|
+
"../../utxo-lib/node_modules/@types/node/index.d.ts"
|
|
3163
3880
|
],
|
|
3164
3881
|
"../../utxo-lib/dist/src/bitgo/utxotransaction.d.ts": [
|
|
3165
|
-
"../../../node_modules
|
|
3882
|
+
"../../../node_modules/bitcoinjs-lib/src/index.d.ts",
|
|
3166
3883
|
"../../utxo-lib/dist/src/networks.d.ts",
|
|
3167
|
-
"../../utxo-lib/node_modules/
|
|
3884
|
+
"../../utxo-lib/node_modules/@types/node/index.d.ts"
|
|
3168
3885
|
],
|
|
3169
3886
|
"../../utxo-lib/dist/src/bitgo/utxotransactionbuilder.d.ts": [
|
|
3170
|
-
"../../../node_modules
|
|
3887
|
+
"../../../node_modules/bitcoinjs-lib/src/index.d.ts",
|
|
3171
3888
|
"../../utxo-lib/dist/src/bitgo/utxotransaction.d.ts",
|
|
3172
3889
|
"../../utxo-lib/dist/src/index.d.ts",
|
|
3173
|
-
"../../utxo-lib/
|
|
3890
|
+
"../../utxo-lib/dist/src/transaction_builder.d.ts",
|
|
3891
|
+
"../../utxo-lib/node_modules/@types/node/index.d.ts"
|
|
3174
3892
|
],
|
|
3175
3893
|
"../../utxo-lib/dist/src/bitgo/wallet/chains.d.ts": [
|
|
3176
3894
|
"../../utxo-lib/dist/src/bitgo/outputscripts.d.ts"
|
|
@@ -3192,9 +3910,9 @@
|
|
|
3192
3910
|
"../../utxo-lib/dist/src/bitgo/wallet/walletunspentsigner.d.ts"
|
|
3193
3911
|
],
|
|
3194
3912
|
"../../utxo-lib/dist/src/bitgo/wallet/walletkeys.d.ts": [
|
|
3195
|
-
"../../../node_modules/@types/node/index.d.ts",
|
|
3196
3913
|
"../../../node_modules/bip32/types/index.d.ts",
|
|
3197
|
-
"../../utxo-lib/dist/src/bitgo/types.d.ts"
|
|
3914
|
+
"../../utxo-lib/dist/src/bitgo/types.d.ts",
|
|
3915
|
+
"../../utxo-lib/node_modules/@types/node/index.d.ts"
|
|
3198
3916
|
],
|
|
3199
3917
|
"../../utxo-lib/dist/src/bitgo/wallet/walletscripts.d.ts": [
|
|
3200
3918
|
"../../utxo-lib/dist/src/bitgo/index.d.ts",
|
|
@@ -3212,133 +3930,37 @@
|
|
|
3212
3930
|
"../../utxo-lib/dist/src/bitgo/zcash/zcashtransactionbuilder.d.ts"
|
|
3213
3931
|
],
|
|
3214
3932
|
"../../utxo-lib/dist/src/bitgo/zcash/zcashtransaction.d.ts": [
|
|
3215
|
-
"../../../node_modules/@types/node/index.d.ts",
|
|
3216
3933
|
"../../utxo-lib/dist/src/bitgo/utxotransaction.d.ts",
|
|
3217
|
-
"../../utxo-lib/dist/src/networks.d.ts"
|
|
3934
|
+
"../../utxo-lib/dist/src/networks.d.ts",
|
|
3935
|
+
"../../utxo-lib/node_modules/@types/node/index.d.ts"
|
|
3218
3936
|
],
|
|
3219
3937
|
"../../utxo-lib/dist/src/bitgo/zcash/zcashtransactionbuilder.d.ts": [
|
|
3220
|
-
"../../../node_modules
|
|
3938
|
+
"../../../node_modules/bitcoinjs-lib/src/index.d.ts",
|
|
3221
3939
|
"../../utxo-lib/dist/src/bitgo/utxotransactionbuilder.d.ts",
|
|
3222
3940
|
"../../utxo-lib/dist/src/bitgo/zcash/zcashtransaction.d.ts",
|
|
3223
3941
|
"../../utxo-lib/dist/src/index.d.ts",
|
|
3224
|
-
"../../utxo-lib/node_modules/
|
|
3942
|
+
"../../utxo-lib/node_modules/@types/node/index.d.ts"
|
|
3943
|
+
],
|
|
3944
|
+
"../../utxo-lib/dist/src/classify.d.ts": [
|
|
3945
|
+
"../../utxo-lib/node_modules/@types/node/index.d.ts"
|
|
3225
3946
|
],
|
|
3226
3947
|
"../../utxo-lib/dist/src/index.d.ts": [
|
|
3948
|
+
"../../../node_modules/bitcoinjs-lib/src/index.d.ts",
|
|
3227
3949
|
"../../utxo-lib/dist/src/address.d.ts",
|
|
3228
3950
|
"../../utxo-lib/dist/src/addressformat.d.ts",
|
|
3229
3951
|
"../../utxo-lib/dist/src/bitgo/index.d.ts",
|
|
3952
|
+
"../../utxo-lib/dist/src/classify.d.ts",
|
|
3230
3953
|
"../../utxo-lib/dist/src/networks.d.ts",
|
|
3231
|
-
"../../utxo-lib/
|
|
3232
|
-
|
|
3233
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/address.d.ts": [
|
|
3234
|
-
"../../../node_modules/@types/node/index.d.ts",
|
|
3235
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/networks.d.ts"
|
|
3236
|
-
],
|
|
3237
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/block.d.ts": [
|
|
3238
|
-
"../../../node_modules/@types/node/index.d.ts",
|
|
3239
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/transaction.d.ts"
|
|
3240
|
-
],
|
|
3241
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/classify.d.ts": [
|
|
3242
|
-
"../../../node_modules/@types/node/index.d.ts"
|
|
3243
|
-
],
|
|
3244
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/crypto.d.ts": [
|
|
3245
|
-
"../../../node_modules/@types/node/index.d.ts"
|
|
3246
|
-
],
|
|
3247
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/ecpair.d.ts": [
|
|
3248
|
-
"../../../node_modules/@types/node/index.d.ts",
|
|
3249
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/networks.d.ts"
|
|
3954
|
+
"../../utxo-lib/dist/src/noble_ecc.d.ts",
|
|
3955
|
+
"../../utxo-lib/dist/src/transaction_builder.d.ts"
|
|
3250
3956
|
],
|
|
3251
|
-
"../../utxo-lib/
|
|
3957
|
+
"../../utxo-lib/dist/src/noble_ecc.d.ts": [
|
|
3252
3958
|
"../../../node_modules/bip32/types/index.d.ts",
|
|
3253
|
-
"
|
|
3254
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/block.d.ts",
|
|
3255
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/classify.d.ts",
|
|
3256
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/crypto.d.ts",
|
|
3257
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/ecpair.d.ts",
|
|
3258
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/networks.d.ts",
|
|
3259
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/payments/index.d.ts",
|
|
3260
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/psbt.d.ts",
|
|
3261
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/schnorrbip340.d.ts",
|
|
3262
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/script.d.ts",
|
|
3263
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/script_signature.d.ts",
|
|
3264
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/taproot.d.ts",
|
|
3265
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/transaction.d.ts",
|
|
3266
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/transaction_builder.d.ts"
|
|
3267
|
-
],
|
|
3268
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/payments/embed.d.ts": [
|
|
3269
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/payments/index.d.ts"
|
|
3270
|
-
],
|
|
3271
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/payments/index.d.ts": [
|
|
3272
|
-
"../../../node_modules/@types/node/index.d.ts",
|
|
3273
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/networks.d.ts",
|
|
3274
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/payments/embed.d.ts",
|
|
3275
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/payments/p2ms.d.ts",
|
|
3276
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/payments/p2pk.d.ts",
|
|
3277
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/payments/p2pkh.d.ts",
|
|
3278
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/payments/p2sh.d.ts",
|
|
3279
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/payments/p2tr.d.ts",
|
|
3280
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/payments/p2tr_ns.d.ts",
|
|
3281
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/payments/p2wpkh.d.ts",
|
|
3282
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/payments/p2wsh.d.ts"
|
|
3283
|
-
],
|
|
3284
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/payments/p2ms.d.ts": [
|
|
3285
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/payments/index.d.ts"
|
|
3286
|
-
],
|
|
3287
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/payments/p2pk.d.ts": [
|
|
3288
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/payments/index.d.ts"
|
|
3289
|
-
],
|
|
3290
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/payments/p2pkh.d.ts": [
|
|
3291
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/payments/index.d.ts"
|
|
3292
|
-
],
|
|
3293
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/payments/p2sh.d.ts": [
|
|
3294
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/payments/index.d.ts"
|
|
3295
|
-
],
|
|
3296
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/payments/p2tr.d.ts": [
|
|
3297
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/payments/index.d.ts"
|
|
3298
|
-
],
|
|
3299
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/payments/p2tr_ns.d.ts": [
|
|
3300
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/payments/index.d.ts"
|
|
3301
|
-
],
|
|
3302
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/payments/p2wpkh.d.ts": [
|
|
3303
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/payments/index.d.ts"
|
|
3304
|
-
],
|
|
3305
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/payments/p2wsh.d.ts": [
|
|
3306
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/payments/index.d.ts"
|
|
3307
|
-
],
|
|
3308
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/psbt.d.ts": [
|
|
3309
|
-
"../../../node_modules/@types/node/index.d.ts",
|
|
3310
|
-
"../../../node_modules/bip174/src/lib/interfaces.d.ts",
|
|
3311
|
-
"../../../node_modules/bip174/src/lib/psbt.d.ts",
|
|
3312
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/ecpair.d.ts",
|
|
3313
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/networks.d.ts",
|
|
3314
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/transaction.d.ts"
|
|
3315
|
-
],
|
|
3316
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/schnorrbip340.d.ts": [
|
|
3317
|
-
"../../../node_modules/@types/node/index.d.ts"
|
|
3318
|
-
],
|
|
3319
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/script.d.ts": [
|
|
3320
|
-
"../../../node_modules/@types/node/index.d.ts",
|
|
3321
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/payments/index.d.ts",
|
|
3322
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/script_number.d.ts",
|
|
3323
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/script_signature.d.ts"
|
|
3324
|
-
],
|
|
3325
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/script_number.d.ts": [
|
|
3326
|
-
"../../../node_modules/@types/node/index.d.ts"
|
|
3327
|
-
],
|
|
3328
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/script_signature.d.ts": [
|
|
3329
|
-
"../../../node_modules/@types/node/index.d.ts"
|
|
3959
|
+
"../../../node_modules/ecpair/src/index.d.ts"
|
|
3330
3960
|
],
|
|
3331
|
-
"../../utxo-lib/
|
|
3332
|
-
"
|
|
3333
|
-
|
|
3334
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/transaction.d.ts": [
|
|
3335
|
-
"../../../node_modules/@types/node/index.d.ts"
|
|
3336
|
-
],
|
|
3337
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/transaction_builder.d.ts": [
|
|
3338
|
-
"../../../node_modules/@types/node/index.d.ts",
|
|
3339
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/ecpair.d.ts",
|
|
3340
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/networks.d.ts",
|
|
3341
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/transaction.d.ts"
|
|
3961
|
+
"../../utxo-lib/dist/src/transaction_builder.d.ts": [
|
|
3962
|
+
"../../utxo-lib/dist/src/index.d.ts",
|
|
3963
|
+
"../../utxo-lib/node_modules/@types/node/index.d.ts"
|
|
3342
3964
|
],
|
|
3343
3965
|
"../../../node_modules/@types/bn.js/index.d.ts": [
|
|
3344
3966
|
"../../../node_modules/@types/node/index.d.ts"
|
|
@@ -3428,6 +4050,10 @@
|
|
|
3428
4050
|
"../../../node_modules/@types/node/stream.d.ts",
|
|
3429
4051
|
"../../../node_modules/@types/node/url.d.ts"
|
|
3430
4052
|
],
|
|
4053
|
+
"../../../node_modules/@types/keccak/index.d.ts": [
|
|
4054
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
4055
|
+
"../../../node_modules/@types/node/stream.d.ts"
|
|
4056
|
+
],
|
|
3431
4057
|
"../../../node_modules/@types/lodash/common/array.d.ts": [
|
|
3432
4058
|
"../../../node_modules/@types/lodash/common/collection.d.ts",
|
|
3433
4059
|
"../../../node_modules/@types/lodash/common/common.d.ts",
|
|
@@ -3610,6 +4236,12 @@
|
|
|
3610
4236
|
"../../../node_modules/@types/lodash/common/string.d.ts",
|
|
3611
4237
|
"../../../node_modules/@types/lodash/common/util.d.ts"
|
|
3612
4238
|
],
|
|
4239
|
+
"../../../node_modules/@types/mime/index.d.ts": [
|
|
4240
|
+
"../../../node_modules/@types/mime/mime.d.ts"
|
|
4241
|
+
],
|
|
4242
|
+
"../../../node_modules/@types/mime/mime.d.ts": [
|
|
4243
|
+
"../../../node_modules/@types/mime/index.d.ts"
|
|
4244
|
+
],
|
|
3613
4245
|
"../../../node_modules/@types/morgan/index.d.ts": [
|
|
3614
4246
|
"../../../node_modules/@types/node/http.d.ts",
|
|
3615
4247
|
"../../../node_modules/@types/node/index.d.ts"
|
|
@@ -3956,115 +4588,113 @@
|
|
|
3956
4588
|
"../../../node_modules/bip32/types/index.d.ts": [
|
|
3957
4589
|
"../../../node_modules/bip32/types/bip32.d.ts"
|
|
3958
4590
|
],
|
|
3959
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
4591
|
+
"../../../node_modules/bitcoinjs-lib/src/address.d.ts": [
|
|
3960
4592
|
"../../../node_modules/@types/node/index.d.ts",
|
|
3961
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
4593
|
+
"../../../node_modules/bitcoinjs-lib/src/networks.d.ts"
|
|
3962
4594
|
],
|
|
3963
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
4595
|
+
"../../../node_modules/bitcoinjs-lib/src/block.d.ts": [
|
|
3964
4596
|
"../../../node_modules/@types/node/index.d.ts",
|
|
3965
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
4597
|
+
"../../../node_modules/bitcoinjs-lib/src/transaction.d.ts"
|
|
3966
4598
|
],
|
|
3967
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
4599
|
+
"../../../node_modules/bitcoinjs-lib/src/crypto.d.ts": [
|
|
3968
4600
|
"../../../node_modules/@types/node/index.d.ts"
|
|
3969
4601
|
],
|
|
3970
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
3971
|
-
"../../../node_modules
|
|
3972
|
-
|
|
3973
|
-
|
|
3974
|
-
"../../../node_modules
|
|
3975
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
3976
|
-
|
|
3977
|
-
|
|
3978
|
-
"../../../node_modules/
|
|
3979
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
3980
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
3981
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
3982
|
-
|
|
3983
|
-
|
|
3984
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
3985
|
-
|
|
3986
|
-
|
|
3987
|
-
"../../../node_modules/bitcoinjs-lib/types/schnorrbip340.d.ts",
|
|
3988
|
-
"../../../node_modules/bitcoinjs-lib/types/script.d.ts",
|
|
3989
|
-
"../../../node_modules/bitcoinjs-lib/types/script_signature.d.ts",
|
|
3990
|
-
"../../../node_modules/bitcoinjs-lib/types/taproot.d.ts",
|
|
3991
|
-
"../../../node_modules/bitcoinjs-lib/types/transaction.d.ts",
|
|
3992
|
-
"../../../node_modules/bitcoinjs-lib/types/transaction_builder.d.ts"
|
|
3993
|
-
],
|
|
3994
|
-
"../../../node_modules/bitcoinjs-lib/types/payments/embed.d.ts": [
|
|
3995
|
-
"../../../node_modules/bitcoinjs-lib/types/payments/index.d.ts"
|
|
3996
|
-
],
|
|
3997
|
-
"../../../node_modules/bitcoinjs-lib/types/payments/index.d.ts": [
|
|
4602
|
+
"../../../node_modules/bitcoinjs-lib/src/index.d.ts": [
|
|
4603
|
+
"../../../node_modules/bitcoinjs-lib/src/address.d.ts",
|
|
4604
|
+
"../../../node_modules/bitcoinjs-lib/src/block.d.ts",
|
|
4605
|
+
"../../../node_modules/bitcoinjs-lib/src/crypto.d.ts",
|
|
4606
|
+
"../../../node_modules/bitcoinjs-lib/src/networks.d.ts",
|
|
4607
|
+
"../../../node_modules/bitcoinjs-lib/src/ops.d.ts",
|
|
4608
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/index.d.ts",
|
|
4609
|
+
"../../../node_modules/bitcoinjs-lib/src/psbt.d.ts",
|
|
4610
|
+
"../../../node_modules/bitcoinjs-lib/src/script.d.ts",
|
|
4611
|
+
"../../../node_modules/bitcoinjs-lib/src/script_signature.d.ts",
|
|
4612
|
+
"../../../node_modules/bitcoinjs-lib/src/taproot.d.ts",
|
|
4613
|
+
"../../../node_modules/bitcoinjs-lib/src/transaction.d.ts"
|
|
4614
|
+
],
|
|
4615
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/embed.d.ts": [
|
|
4616
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/index.d.ts"
|
|
4617
|
+
],
|
|
4618
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/index.d.ts": [
|
|
3998
4619
|
"../../../node_modules/@types/node/index.d.ts",
|
|
3999
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
4000
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
4001
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
4002
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
4003
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
4004
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
4005
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
4006
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
4007
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
4008
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
4620
|
+
"../../../node_modules/bitcoinjs-lib/src/networks.d.ts",
|
|
4621
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/embed.d.ts",
|
|
4622
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/p2ms.d.ts",
|
|
4623
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/p2pk.d.ts",
|
|
4624
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/p2pkh.d.ts",
|
|
4625
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/p2sh.d.ts",
|
|
4626
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/p2tr.d.ts",
|
|
4627
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/p2tr_ns.d.ts",
|
|
4628
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/p2wpkh.d.ts",
|
|
4629
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/p2wsh.d.ts",
|
|
4630
|
+
"../../../node_modules/bitcoinjs-lib/src/types.d.ts"
|
|
4009
4631
|
],
|
|
4010
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
4011
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
4632
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/p2ms.d.ts": [
|
|
4633
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/index.d.ts"
|
|
4012
4634
|
],
|
|
4013
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
4014
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
4635
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/p2pk.d.ts": [
|
|
4636
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/index.d.ts"
|
|
4015
4637
|
],
|
|
4016
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
4017
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
4638
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/p2pkh.d.ts": [
|
|
4639
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/index.d.ts"
|
|
4018
4640
|
],
|
|
4019
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
4020
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
4641
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/p2sh.d.ts": [
|
|
4642
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/index.d.ts"
|
|
4021
4643
|
],
|
|
4022
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
4023
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
4644
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/p2tr.d.ts": [
|
|
4645
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/index.d.ts"
|
|
4024
4646
|
],
|
|
4025
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
4026
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
4647
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/p2tr_ns.d.ts": [
|
|
4648
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/index.d.ts"
|
|
4027
4649
|
],
|
|
4028
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
4029
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
4650
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/p2wpkh.d.ts": [
|
|
4651
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/index.d.ts"
|
|
4030
4652
|
],
|
|
4031
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
4032
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
4653
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/p2wsh.d.ts": [
|
|
4654
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/index.d.ts"
|
|
4033
4655
|
],
|
|
4034
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
4656
|
+
"../../../node_modules/bitcoinjs-lib/src/psbt.d.ts": [
|
|
4035
4657
|
"../../../node_modules/@types/node/index.d.ts",
|
|
4036
4658
|
"../../../node_modules/bip174/src/lib/interfaces.d.ts",
|
|
4037
4659
|
"../../../node_modules/bip174/src/lib/psbt.d.ts",
|
|
4038
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
4039
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
4040
|
-
|
|
4660
|
+
"../../../node_modules/bitcoinjs-lib/src/networks.d.ts",
|
|
4661
|
+
"../../../node_modules/bitcoinjs-lib/src/transaction.d.ts"
|
|
4662
|
+
],
|
|
4663
|
+
"../../../node_modules/bitcoinjs-lib/src/script.d.ts": [
|
|
4664
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
4665
|
+
"../../../node_modules/bitcoinjs-lib/src/ops.d.ts",
|
|
4666
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/index.d.ts",
|
|
4667
|
+
"../../../node_modules/bitcoinjs-lib/src/script_number.d.ts",
|
|
4668
|
+
"../../../node_modules/bitcoinjs-lib/src/script_signature.d.ts"
|
|
4041
4669
|
],
|
|
4042
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
4670
|
+
"../../../node_modules/bitcoinjs-lib/src/script_number.d.ts": [
|
|
4043
4671
|
"../../../node_modules/@types/node/index.d.ts"
|
|
4044
4672
|
],
|
|
4045
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
4673
|
+
"../../../node_modules/bitcoinjs-lib/src/script_signature.d.ts": [
|
|
4674
|
+
"../../../node_modules/@types/node/index.d.ts"
|
|
4675
|
+
],
|
|
4676
|
+
"../../../node_modules/bitcoinjs-lib/src/taproot.d.ts": [
|
|
4046
4677
|
"../../../node_modules/@types/node/index.d.ts",
|
|
4047
|
-
"../../../node_modules/bitcoinjs-lib/types
|
|
4048
|
-
"../../../node_modules/bitcoinjs-lib/types/script_number.d.ts",
|
|
4049
|
-
"../../../node_modules/bitcoinjs-lib/types/script_signature.d.ts"
|
|
4678
|
+
"../../../node_modules/bitcoinjs-lib/src/types.d.ts"
|
|
4050
4679
|
],
|
|
4051
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
4680
|
+
"../../../node_modules/bitcoinjs-lib/src/transaction.d.ts": [
|
|
4052
4681
|
"../../../node_modules/@types/node/index.d.ts"
|
|
4053
4682
|
],
|
|
4054
|
-
"../../../node_modules/bitcoinjs-lib/types
|
|
4683
|
+
"../../../node_modules/bitcoinjs-lib/src/types.d.ts": [
|
|
4055
4684
|
"../../../node_modules/@types/node/index.d.ts"
|
|
4056
4685
|
],
|
|
4057
|
-
"../../../node_modules/
|
|
4686
|
+
"../../../node_modules/bolt11/node_modules/@types/bn.js/index.d.ts": [
|
|
4058
4687
|
"../../../node_modules/@types/node/index.d.ts"
|
|
4059
4688
|
],
|
|
4060
|
-
"../../../node_modules/
|
|
4061
|
-
"../../../node_modules/@types/
|
|
4689
|
+
"../../../node_modules/bolt11/payreq.d.ts": [
|
|
4690
|
+
"../../../node_modules/bolt11/node_modules/@types/bn.js/index.d.ts"
|
|
4062
4691
|
],
|
|
4063
|
-
"../../../node_modules/
|
|
4692
|
+
"../../../node_modules/ecpair/src/ecpair.d.ts": [
|
|
4064
4693
|
"../../../node_modules/@types/node/index.d.ts",
|
|
4065
|
-
"../../../node_modules/
|
|
4066
|
-
|
|
4067
|
-
|
|
4694
|
+
"../../../node_modules/ecpair/src/networks.d.ts"
|
|
4695
|
+
],
|
|
4696
|
+
"../../../node_modules/ecpair/src/index.d.ts": [
|
|
4697
|
+
"../../../node_modules/ecpair/src/ecpair.d.ts"
|
|
4068
4698
|
],
|
|
4069
4699
|
"../../../node_modules/ethereumjs-util/dist/account.d.ts": [
|
|
4070
4700
|
"../../../node_modules/@types/bn.js/index.d.ts",
|
|
@@ -4154,6 +4784,419 @@
|
|
|
4154
4784
|
]
|
|
4155
4785
|
},
|
|
4156
4786
|
"exportedModulesMap": {
|
|
4787
|
+
"../node_modules/fp-ts/lib/alt.d.ts": [
|
|
4788
|
+
"../node_modules/fp-ts/hkt.d.ts",
|
|
4789
|
+
"../node_modules/fp-ts/lib/function.d.ts",
|
|
4790
|
+
"../node_modules/fp-ts/lib/functor.d.ts"
|
|
4791
|
+
],
|
|
4792
|
+
"../node_modules/fp-ts/lib/alternative.d.ts": [
|
|
4793
|
+
"../node_modules/fp-ts/hkt.d.ts",
|
|
4794
|
+
"../node_modules/fp-ts/lib/alt.d.ts",
|
|
4795
|
+
"../node_modules/fp-ts/lib/applicative.d.ts",
|
|
4796
|
+
"../node_modules/fp-ts/lib/zero.d.ts"
|
|
4797
|
+
],
|
|
4798
|
+
"../node_modules/fp-ts/lib/applicative.d.ts": [
|
|
4799
|
+
"../node_modules/fp-ts/hkt.d.ts",
|
|
4800
|
+
"../node_modules/fp-ts/lib/apply.d.ts",
|
|
4801
|
+
"../node_modules/fp-ts/lib/functor.d.ts",
|
|
4802
|
+
"../node_modules/fp-ts/lib/monoid.d.ts",
|
|
4803
|
+
"../node_modules/fp-ts/lib/pointed.d.ts"
|
|
4804
|
+
],
|
|
4805
|
+
"../node_modules/fp-ts/lib/apply.d.ts": [
|
|
4806
|
+
"../node_modules/fp-ts/hkt.d.ts",
|
|
4807
|
+
"../node_modules/fp-ts/lib/functor.d.ts",
|
|
4808
|
+
"../node_modules/fp-ts/lib/semigroup.d.ts"
|
|
4809
|
+
],
|
|
4810
|
+
"../node_modules/fp-ts/lib/bifunctor.d.ts": [
|
|
4811
|
+
"../node_modules/fp-ts/hkt.d.ts"
|
|
4812
|
+
],
|
|
4813
|
+
"../node_modules/fp-ts/lib/booleanalgebra.d.ts": [
|
|
4814
|
+
"../node_modules/fp-ts/lib/heytingalgebra.d.ts"
|
|
4815
|
+
],
|
|
4816
|
+
"../node_modules/fp-ts/lib/bounded.d.ts": [
|
|
4817
|
+
"../node_modules/fp-ts/lib/ord.d.ts"
|
|
4818
|
+
],
|
|
4819
|
+
"../node_modules/fp-ts/lib/boundeddistributivelattice.d.ts": [
|
|
4820
|
+
"../node_modules/fp-ts/lib/boundedlattice.d.ts",
|
|
4821
|
+
"../node_modules/fp-ts/lib/distributivelattice.d.ts",
|
|
4822
|
+
"../node_modules/fp-ts/lib/ord.d.ts"
|
|
4823
|
+
],
|
|
4824
|
+
"../node_modules/fp-ts/lib/boundedjoinsemilattice.d.ts": [
|
|
4825
|
+
"../node_modules/fp-ts/lib/joinsemilattice.d.ts"
|
|
4826
|
+
],
|
|
4827
|
+
"../node_modules/fp-ts/lib/boundedlattice.d.ts": [
|
|
4828
|
+
"../node_modules/fp-ts/lib/boundedjoinsemilattice.d.ts",
|
|
4829
|
+
"../node_modules/fp-ts/lib/boundedmeetsemilattice.d.ts"
|
|
4830
|
+
],
|
|
4831
|
+
"../node_modules/fp-ts/lib/boundedmeetsemilattice.d.ts": [
|
|
4832
|
+
"../node_modules/fp-ts/lib/meetsemilattice.d.ts"
|
|
4833
|
+
],
|
|
4834
|
+
"../node_modules/fp-ts/lib/chain.d.ts": [
|
|
4835
|
+
"../node_modules/fp-ts/hkt.d.ts",
|
|
4836
|
+
"../node_modules/fp-ts/lib/apply.d.ts"
|
|
4837
|
+
],
|
|
4838
|
+
"../node_modules/fp-ts/lib/chainrec.d.ts": [
|
|
4839
|
+
"../node_modules/fp-ts/hkt.d.ts",
|
|
4840
|
+
"../node_modules/fp-ts/lib/chain.d.ts",
|
|
4841
|
+
"../node_modules/fp-ts/lib/either.d.ts"
|
|
4842
|
+
],
|
|
4843
|
+
"../node_modules/fp-ts/lib/comonad.d.ts": [
|
|
4844
|
+
"../node_modules/fp-ts/hkt.d.ts",
|
|
4845
|
+
"../node_modules/fp-ts/lib/extend.d.ts"
|
|
4846
|
+
],
|
|
4847
|
+
"../node_modules/fp-ts/lib/compactable.d.ts": [
|
|
4848
|
+
"../node_modules/fp-ts/hkt.d.ts",
|
|
4849
|
+
"../node_modules/fp-ts/lib/either.d.ts",
|
|
4850
|
+
"../node_modules/fp-ts/lib/functor.d.ts",
|
|
4851
|
+
"../node_modules/fp-ts/lib/option.d.ts",
|
|
4852
|
+
"../node_modules/fp-ts/lib/separated.d.ts"
|
|
4853
|
+
],
|
|
4854
|
+
"../node_modules/fp-ts/lib/contravariant.d.ts": [
|
|
4855
|
+
"../node_modules/fp-ts/hkt.d.ts"
|
|
4856
|
+
],
|
|
4857
|
+
"../node_modules/fp-ts/lib/distributivelattice.d.ts": [
|
|
4858
|
+
"../node_modules/fp-ts/lib/lattice.d.ts",
|
|
4859
|
+
"../node_modules/fp-ts/lib/ord.d.ts"
|
|
4860
|
+
],
|
|
4861
|
+
"../node_modules/fp-ts/lib/either.d.ts": [
|
|
4862
|
+
"../node_modules/fp-ts/hkt.d.ts",
|
|
4863
|
+
"../node_modules/fp-ts/lib/alt.d.ts",
|
|
4864
|
+
"../node_modules/fp-ts/lib/applicative.d.ts",
|
|
4865
|
+
"../node_modules/fp-ts/lib/apply.d.ts",
|
|
4866
|
+
"../node_modules/fp-ts/lib/bifunctor.d.ts",
|
|
4867
|
+
"../node_modules/fp-ts/lib/chain.d.ts",
|
|
4868
|
+
"../node_modules/fp-ts/lib/chainrec.d.ts",
|
|
4869
|
+
"../node_modules/fp-ts/lib/compactable.d.ts",
|
|
4870
|
+
"../node_modules/fp-ts/lib/endomorphism.d.ts",
|
|
4871
|
+
"../node_modules/fp-ts/lib/eq.d.ts",
|
|
4872
|
+
"../node_modules/fp-ts/lib/extend.d.ts",
|
|
4873
|
+
"../node_modules/fp-ts/lib/filterable.d.ts",
|
|
4874
|
+
"../node_modules/fp-ts/lib/foldable.d.ts",
|
|
4875
|
+
"../node_modules/fp-ts/lib/fromeither.d.ts",
|
|
4876
|
+
"../node_modules/fp-ts/lib/function.d.ts",
|
|
4877
|
+
"../node_modules/fp-ts/lib/functor.d.ts",
|
|
4878
|
+
"../node_modules/fp-ts/lib/monad.d.ts",
|
|
4879
|
+
"../node_modules/fp-ts/lib/monadthrow.d.ts",
|
|
4880
|
+
"../node_modules/fp-ts/lib/monoid.d.ts",
|
|
4881
|
+
"../node_modules/fp-ts/lib/naturaltransformation.d.ts",
|
|
4882
|
+
"../node_modules/fp-ts/lib/option.d.ts",
|
|
4883
|
+
"../node_modules/fp-ts/lib/ord.d.ts",
|
|
4884
|
+
"../node_modules/fp-ts/lib/pointed.d.ts",
|
|
4885
|
+
"../node_modules/fp-ts/lib/predicate.d.ts",
|
|
4886
|
+
"../node_modules/fp-ts/lib/readonlynonemptyarray.d.ts",
|
|
4887
|
+
"../node_modules/fp-ts/lib/readonlyrecord.d.ts",
|
|
4888
|
+
"../node_modules/fp-ts/lib/refinement.d.ts",
|
|
4889
|
+
"../node_modules/fp-ts/lib/semigroup.d.ts",
|
|
4890
|
+
"../node_modules/fp-ts/lib/separated.d.ts",
|
|
4891
|
+
"../node_modules/fp-ts/lib/show.d.ts",
|
|
4892
|
+
"../node_modules/fp-ts/lib/traversable.d.ts",
|
|
4893
|
+
"../node_modules/fp-ts/lib/witherable.d.ts"
|
|
4894
|
+
],
|
|
4895
|
+
"../node_modules/fp-ts/lib/endomorphism.d.ts": [
|
|
4896
|
+
"../node_modules/fp-ts/hkt.d.ts",
|
|
4897
|
+
"../node_modules/fp-ts/lib/either.d.ts",
|
|
4898
|
+
"../node_modules/fp-ts/lib/eq.d.ts",
|
|
4899
|
+
"../node_modules/fp-ts/lib/monoid.d.ts",
|
|
4900
|
+
"../node_modules/fp-ts/lib/option.d.ts",
|
|
4901
|
+
"../node_modules/fp-ts/lib/ord.d.ts",
|
|
4902
|
+
"../node_modules/fp-ts/lib/predicate.d.ts",
|
|
4903
|
+
"../node_modules/fp-ts/lib/readonlynonemptyarray.d.ts",
|
|
4904
|
+
"../node_modules/fp-ts/lib/readonlyrecord.d.ts",
|
|
4905
|
+
"../node_modules/fp-ts/lib/semigroup.d.ts",
|
|
4906
|
+
"../node_modules/fp-ts/lib/separated.d.ts"
|
|
4907
|
+
],
|
|
4908
|
+
"../node_modules/fp-ts/lib/eq.d.ts": [
|
|
4909
|
+
"../node_modules/fp-ts/hkt.d.ts",
|
|
4910
|
+
"../node_modules/fp-ts/lib/contravariant.d.ts",
|
|
4911
|
+
"../node_modules/fp-ts/lib/either.d.ts",
|
|
4912
|
+
"../node_modules/fp-ts/lib/endomorphism.d.ts",
|
|
4913
|
+
"../node_modules/fp-ts/lib/monoid.d.ts",
|
|
4914
|
+
"../node_modules/fp-ts/lib/option.d.ts",
|
|
4915
|
+
"../node_modules/fp-ts/lib/ord.d.ts",
|
|
4916
|
+
"../node_modules/fp-ts/lib/predicate.d.ts",
|
|
4917
|
+
"../node_modules/fp-ts/lib/readonlynonemptyarray.d.ts",
|
|
4918
|
+
"../node_modules/fp-ts/lib/readonlyrecord.d.ts",
|
|
4919
|
+
"../node_modules/fp-ts/lib/semigroup.d.ts",
|
|
4920
|
+
"../node_modules/fp-ts/lib/separated.d.ts"
|
|
4921
|
+
],
|
|
4922
|
+
"../node_modules/fp-ts/lib/extend.d.ts": [
|
|
4923
|
+
"../node_modules/fp-ts/hkt.d.ts",
|
|
4924
|
+
"../node_modules/fp-ts/lib/functor.d.ts"
|
|
4925
|
+
],
|
|
4926
|
+
"../node_modules/fp-ts/lib/filterable.d.ts": [
|
|
4927
|
+
"../node_modules/fp-ts/hkt.d.ts",
|
|
4928
|
+
"../node_modules/fp-ts/lib/compactable.d.ts",
|
|
4929
|
+
"../node_modules/fp-ts/lib/either.d.ts",
|
|
4930
|
+
"../node_modules/fp-ts/lib/functor.d.ts",
|
|
4931
|
+
"../node_modules/fp-ts/lib/option.d.ts",
|
|
4932
|
+
"../node_modules/fp-ts/lib/predicate.d.ts",
|
|
4933
|
+
"../node_modules/fp-ts/lib/refinement.d.ts",
|
|
4934
|
+
"../node_modules/fp-ts/lib/separated.d.ts"
|
|
4935
|
+
],
|
|
4936
|
+
"../node_modules/fp-ts/lib/filterablewithindex.d.ts": [
|
|
4937
|
+
"../node_modules/fp-ts/hkt.d.ts",
|
|
4938
|
+
"../node_modules/fp-ts/lib/either.d.ts",
|
|
4939
|
+
"../node_modules/fp-ts/lib/filterable.d.ts",
|
|
4940
|
+
"../node_modules/fp-ts/lib/functorwithindex.d.ts",
|
|
4941
|
+
"../node_modules/fp-ts/lib/option.d.ts",
|
|
4942
|
+
"../node_modules/fp-ts/lib/separated.d.ts"
|
|
4943
|
+
],
|
|
4944
|
+
"../node_modules/fp-ts/lib/foldable.d.ts": [
|
|
4945
|
+
"../node_modules/fp-ts/hkt.d.ts",
|
|
4946
|
+
"../node_modules/fp-ts/lib/applicative.d.ts",
|
|
4947
|
+
"../node_modules/fp-ts/lib/monad.d.ts",
|
|
4948
|
+
"../node_modules/fp-ts/lib/monoid.d.ts"
|
|
4949
|
+
],
|
|
4950
|
+
"../node_modules/fp-ts/lib/foldablewithindex.d.ts": [
|
|
4951
|
+
"../node_modules/fp-ts/hkt.d.ts",
|
|
4952
|
+
"../node_modules/fp-ts/lib/foldable.d.ts",
|
|
4953
|
+
"../node_modules/fp-ts/lib/monoid.d.ts"
|
|
4954
|
+
],
|
|
4955
|
+
"../node_modules/fp-ts/lib/fromeither.d.ts": [
|
|
4956
|
+
"../node_modules/fp-ts/hkt.d.ts",
|
|
4957
|
+
"../node_modules/fp-ts/lib/chain.d.ts",
|
|
4958
|
+
"../node_modules/fp-ts/lib/either.d.ts",
|
|
4959
|
+
"../node_modules/fp-ts/lib/function.d.ts",
|
|
4960
|
+
"../node_modules/fp-ts/lib/naturaltransformation.d.ts",
|
|
4961
|
+
"../node_modules/fp-ts/lib/option.d.ts",
|
|
4962
|
+
"../node_modules/fp-ts/lib/predicate.d.ts",
|
|
4963
|
+
"../node_modules/fp-ts/lib/refinement.d.ts"
|
|
4964
|
+
],
|
|
4965
|
+
"../node_modules/fp-ts/lib/function.d.ts": [
|
|
4966
|
+
"../node_modules/fp-ts/lib/booleanalgebra.d.ts",
|
|
4967
|
+
"../node_modules/fp-ts/lib/monoid.d.ts",
|
|
4968
|
+
"../node_modules/fp-ts/lib/ring.d.ts",
|
|
4969
|
+
"../node_modules/fp-ts/lib/semigroup.d.ts",
|
|
4970
|
+
"../node_modules/fp-ts/lib/semiring.d.ts"
|
|
4971
|
+
],
|
|
4972
|
+
"../node_modules/fp-ts/lib/functor.d.ts": [
|
|
4973
|
+
"../node_modules/fp-ts/hkt.d.ts"
|
|
4974
|
+
],
|
|
4975
|
+
"../node_modules/fp-ts/lib/functorwithindex.d.ts": [
|
|
4976
|
+
"../node_modules/fp-ts/hkt.d.ts",
|
|
4977
|
+
"../node_modules/fp-ts/lib/functor.d.ts"
|
|
4978
|
+
],
|
|
4979
|
+
"../node_modules/fp-ts/lib/heytingalgebra.d.ts": [
|
|
4980
|
+
"../node_modules/fp-ts/lib/boundeddistributivelattice.d.ts"
|
|
4981
|
+
],
|
|
4982
|
+
"../node_modules/fp-ts/lib/json.d.ts": [
|
|
4983
|
+
"../node_modules/fp-ts/lib/either.d.ts"
|
|
4984
|
+
],
|
|
4985
|
+
"../node_modules/fp-ts/lib/lattice.d.ts": [
|
|
4986
|
+
"../node_modules/fp-ts/lib/joinsemilattice.d.ts",
|
|
4987
|
+
"../node_modules/fp-ts/lib/meetsemilattice.d.ts"
|
|
4988
|
+
],
|
|
4989
|
+
"../node_modules/fp-ts/lib/magma.d.ts": [
|
|
4990
|
+
"../node_modules/fp-ts/lib/endomorphism.d.ts",
|
|
4991
|
+
"../node_modules/fp-ts/lib/predicate.d.ts"
|
|
4992
|
+
],
|
|
4993
|
+
"../node_modules/fp-ts/lib/monad.d.ts": [
|
|
4994
|
+
"../node_modules/fp-ts/hkt.d.ts",
|
|
4995
|
+
"../node_modules/fp-ts/lib/applicative.d.ts",
|
|
4996
|
+
"../node_modules/fp-ts/lib/chain.d.ts"
|
|
4997
|
+
],
|
|
4998
|
+
"../node_modules/fp-ts/lib/monadthrow.d.ts": [
|
|
4999
|
+
"../node_modules/fp-ts/hkt.d.ts",
|
|
5000
|
+
"../node_modules/fp-ts/lib/monad.d.ts"
|
|
5001
|
+
],
|
|
5002
|
+
"../node_modules/fp-ts/lib/monoid.d.ts": [
|
|
5003
|
+
"../node_modules/fp-ts/lib/bounded.d.ts",
|
|
5004
|
+
"../node_modules/fp-ts/lib/endomorphism.d.ts",
|
|
5005
|
+
"../node_modules/fp-ts/lib/readonlyrecord.d.ts",
|
|
5006
|
+
"../node_modules/fp-ts/lib/semigroup.d.ts"
|
|
5007
|
+
],
|
|
5008
|
+
"../node_modules/fp-ts/lib/naturaltransformation.d.ts": [
|
|
5009
|
+
"../node_modules/fp-ts/hkt.d.ts"
|
|
5010
|
+
],
|
|
5011
|
+
"../node_modules/fp-ts/lib/option.d.ts": [
|
|
5012
|
+
"../node_modules/fp-ts/hkt.d.ts",
|
|
5013
|
+
"../node_modules/fp-ts/lib/alt.d.ts",
|
|
5014
|
+
"../node_modules/fp-ts/lib/alternative.d.ts",
|
|
5015
|
+
"../node_modules/fp-ts/lib/applicative.d.ts",
|
|
5016
|
+
"../node_modules/fp-ts/lib/apply.d.ts",
|
|
5017
|
+
"../node_modules/fp-ts/lib/chain.d.ts",
|
|
5018
|
+
"../node_modules/fp-ts/lib/compactable.d.ts",
|
|
5019
|
+
"../node_modules/fp-ts/lib/either.d.ts",
|
|
5020
|
+
"../node_modules/fp-ts/lib/endomorphism.d.ts",
|
|
5021
|
+
"../node_modules/fp-ts/lib/eq.d.ts",
|
|
5022
|
+
"../node_modules/fp-ts/lib/extend.d.ts",
|
|
5023
|
+
"../node_modules/fp-ts/lib/filterable.d.ts",
|
|
5024
|
+
"../node_modules/fp-ts/lib/foldable.d.ts",
|
|
5025
|
+
"../node_modules/fp-ts/lib/fromeither.d.ts",
|
|
5026
|
+
"../node_modules/fp-ts/lib/function.d.ts",
|
|
5027
|
+
"../node_modules/fp-ts/lib/functor.d.ts",
|
|
5028
|
+
"../node_modules/fp-ts/lib/monad.d.ts",
|
|
5029
|
+
"../node_modules/fp-ts/lib/monadthrow.d.ts",
|
|
5030
|
+
"../node_modules/fp-ts/lib/monoid.d.ts",
|
|
5031
|
+
"../node_modules/fp-ts/lib/ord.d.ts",
|
|
5032
|
+
"../node_modules/fp-ts/lib/pointed.d.ts",
|
|
5033
|
+
"../node_modules/fp-ts/lib/predicate.d.ts",
|
|
5034
|
+
"../node_modules/fp-ts/lib/readonlynonemptyarray.d.ts",
|
|
5035
|
+
"../node_modules/fp-ts/lib/readonlyrecord.d.ts",
|
|
5036
|
+
"../node_modules/fp-ts/lib/refinement.d.ts",
|
|
5037
|
+
"../node_modules/fp-ts/lib/semigroup.d.ts",
|
|
5038
|
+
"../node_modules/fp-ts/lib/separated.d.ts",
|
|
5039
|
+
"../node_modules/fp-ts/lib/show.d.ts",
|
|
5040
|
+
"../node_modules/fp-ts/lib/traversable.d.ts",
|
|
5041
|
+
"../node_modules/fp-ts/lib/witherable.d.ts",
|
|
5042
|
+
"../node_modules/fp-ts/lib/zero.d.ts"
|
|
5043
|
+
],
|
|
5044
|
+
"../node_modules/fp-ts/lib/ord.d.ts": [
|
|
5045
|
+
"../node_modules/fp-ts/hkt.d.ts",
|
|
5046
|
+
"../node_modules/fp-ts/lib/contravariant.d.ts",
|
|
5047
|
+
"../node_modules/fp-ts/lib/either.d.ts",
|
|
5048
|
+
"../node_modules/fp-ts/lib/endomorphism.d.ts",
|
|
5049
|
+
"../node_modules/fp-ts/lib/eq.d.ts",
|
|
5050
|
+
"../node_modules/fp-ts/lib/monoid.d.ts",
|
|
5051
|
+
"../node_modules/fp-ts/lib/option.d.ts",
|
|
5052
|
+
"../node_modules/fp-ts/lib/ordering.d.ts",
|
|
5053
|
+
"../node_modules/fp-ts/lib/predicate.d.ts",
|
|
5054
|
+
"../node_modules/fp-ts/lib/readonlynonemptyarray.d.ts",
|
|
5055
|
+
"../node_modules/fp-ts/lib/readonlyrecord.d.ts",
|
|
5056
|
+
"../node_modules/fp-ts/lib/semigroup.d.ts",
|
|
5057
|
+
"../node_modules/fp-ts/lib/separated.d.ts"
|
|
5058
|
+
],
|
|
5059
|
+
"../node_modules/fp-ts/lib/ordering.d.ts": [
|
|
5060
|
+
"../node_modules/fp-ts/lib/eq.d.ts",
|
|
5061
|
+
"../node_modules/fp-ts/lib/monoid.d.ts",
|
|
5062
|
+
"../node_modules/fp-ts/lib/semigroup.d.ts"
|
|
5063
|
+
],
|
|
5064
|
+
"../node_modules/fp-ts/lib/pointed.d.ts": [
|
|
5065
|
+
"../node_modules/fp-ts/hkt.d.ts"
|
|
5066
|
+
],
|
|
5067
|
+
"../node_modules/fp-ts/lib/predicate.d.ts": [
|
|
5068
|
+
"../node_modules/fp-ts/hkt.d.ts",
|
|
5069
|
+
"../node_modules/fp-ts/lib/contravariant.d.ts",
|
|
5070
|
+
"../node_modules/fp-ts/lib/either.d.ts",
|
|
5071
|
+
"../node_modules/fp-ts/lib/endomorphism.d.ts",
|
|
5072
|
+
"../node_modules/fp-ts/lib/eq.d.ts",
|
|
5073
|
+
"../node_modules/fp-ts/lib/monoid.d.ts",
|
|
5074
|
+
"../node_modules/fp-ts/lib/option.d.ts",
|
|
5075
|
+
"../node_modules/fp-ts/lib/ord.d.ts",
|
|
5076
|
+
"../node_modules/fp-ts/lib/readonlynonemptyarray.d.ts",
|
|
5077
|
+
"../node_modules/fp-ts/lib/readonlyrecord.d.ts",
|
|
5078
|
+
"../node_modules/fp-ts/lib/semigroup.d.ts",
|
|
5079
|
+
"../node_modules/fp-ts/lib/separated.d.ts"
|
|
5080
|
+
],
|
|
5081
|
+
"../node_modules/fp-ts/lib/readonlynonemptyarray.d.ts": [
|
|
5082
|
+
"../node_modules/fp-ts/hkt.d.ts",
|
|
5083
|
+
"../node_modules/fp-ts/lib/alt.d.ts",
|
|
5084
|
+
"../node_modules/fp-ts/lib/applicative.d.ts",
|
|
5085
|
+
"../node_modules/fp-ts/lib/apply.d.ts",
|
|
5086
|
+
"../node_modules/fp-ts/lib/chain.d.ts",
|
|
5087
|
+
"../node_modules/fp-ts/lib/comonad.d.ts",
|
|
5088
|
+
"../node_modules/fp-ts/lib/either.d.ts",
|
|
5089
|
+
"../node_modules/fp-ts/lib/endomorphism.d.ts",
|
|
5090
|
+
"../node_modules/fp-ts/lib/eq.d.ts",
|
|
5091
|
+
"../node_modules/fp-ts/lib/foldable.d.ts",
|
|
5092
|
+
"../node_modules/fp-ts/lib/foldablewithindex.d.ts",
|
|
5093
|
+
"../node_modules/fp-ts/lib/function.d.ts",
|
|
5094
|
+
"../node_modules/fp-ts/lib/functor.d.ts",
|
|
5095
|
+
"../node_modules/fp-ts/lib/functorwithindex.d.ts",
|
|
5096
|
+
"../node_modules/fp-ts/lib/monad.d.ts",
|
|
5097
|
+
"../node_modules/fp-ts/lib/option.d.ts",
|
|
5098
|
+
"../node_modules/fp-ts/lib/ord.d.ts",
|
|
5099
|
+
"../node_modules/fp-ts/lib/pointed.d.ts",
|
|
5100
|
+
"../node_modules/fp-ts/lib/predicate.d.ts",
|
|
5101
|
+
"../node_modules/fp-ts/lib/readonlyrecord.d.ts",
|
|
5102
|
+
"../node_modules/fp-ts/lib/refinement.d.ts",
|
|
5103
|
+
"../node_modules/fp-ts/lib/semigroup.d.ts",
|
|
5104
|
+
"../node_modules/fp-ts/lib/separated.d.ts",
|
|
5105
|
+
"../node_modules/fp-ts/lib/show.d.ts",
|
|
5106
|
+
"../node_modules/fp-ts/lib/traversable.d.ts",
|
|
5107
|
+
"../node_modules/fp-ts/lib/traversablewithindex.d.ts"
|
|
5108
|
+
],
|
|
5109
|
+
"../node_modules/fp-ts/lib/readonlyrecord.d.ts": [
|
|
5110
|
+
"../node_modules/fp-ts/hkt.d.ts",
|
|
5111
|
+
"../node_modules/fp-ts/lib/applicative.d.ts",
|
|
5112
|
+
"../node_modules/fp-ts/lib/compactable.d.ts",
|
|
5113
|
+
"../node_modules/fp-ts/lib/either.d.ts",
|
|
5114
|
+
"../node_modules/fp-ts/lib/endomorphism.d.ts",
|
|
5115
|
+
"../node_modules/fp-ts/lib/eq.d.ts",
|
|
5116
|
+
"../node_modules/fp-ts/lib/filterable.d.ts",
|
|
5117
|
+
"../node_modules/fp-ts/lib/filterablewithindex.d.ts",
|
|
5118
|
+
"../node_modules/fp-ts/lib/foldable.d.ts",
|
|
5119
|
+
"../node_modules/fp-ts/lib/foldablewithindex.d.ts",
|
|
5120
|
+
"../node_modules/fp-ts/lib/functor.d.ts",
|
|
5121
|
+
"../node_modules/fp-ts/lib/functorwithindex.d.ts",
|
|
5122
|
+
"../node_modules/fp-ts/lib/magma.d.ts",
|
|
5123
|
+
"../node_modules/fp-ts/lib/monoid.d.ts",
|
|
5124
|
+
"../node_modules/fp-ts/lib/option.d.ts",
|
|
5125
|
+
"../node_modules/fp-ts/lib/ord.d.ts",
|
|
5126
|
+
"../node_modules/fp-ts/lib/predicate.d.ts",
|
|
5127
|
+
"../node_modules/fp-ts/lib/readonlynonemptyarray.d.ts",
|
|
5128
|
+
"../node_modules/fp-ts/lib/refinement.d.ts",
|
|
5129
|
+
"../node_modules/fp-ts/lib/semigroup.d.ts",
|
|
5130
|
+
"../node_modules/fp-ts/lib/separated.d.ts",
|
|
5131
|
+
"../node_modules/fp-ts/lib/show.d.ts",
|
|
5132
|
+
"../node_modules/fp-ts/lib/traversable.d.ts",
|
|
5133
|
+
"../node_modules/fp-ts/lib/traversablewithindex.d.ts",
|
|
5134
|
+
"../node_modules/fp-ts/lib/unfoldable.d.ts",
|
|
5135
|
+
"../node_modules/fp-ts/lib/witherable.d.ts"
|
|
5136
|
+
],
|
|
5137
|
+
"../node_modules/fp-ts/lib/refinement.d.ts": [
|
|
5138
|
+
"../node_modules/fp-ts/lib/either.d.ts",
|
|
5139
|
+
"../node_modules/fp-ts/lib/option.d.ts"
|
|
5140
|
+
],
|
|
5141
|
+
"../node_modules/fp-ts/lib/ring.d.ts": [
|
|
5142
|
+
"../node_modules/fp-ts/lib/semiring.d.ts"
|
|
5143
|
+
],
|
|
5144
|
+
"../node_modules/fp-ts/lib/semigroup.d.ts": [
|
|
5145
|
+
"../node_modules/fp-ts/lib/magma.d.ts",
|
|
5146
|
+
"../node_modules/fp-ts/lib/ord.d.ts",
|
|
5147
|
+
"../node_modules/fp-ts/lib/readonlyrecord.d.ts"
|
|
5148
|
+
],
|
|
5149
|
+
"../node_modules/fp-ts/lib/separated.d.ts": [
|
|
5150
|
+
"../node_modules/fp-ts/hkt.d.ts",
|
|
5151
|
+
"../node_modules/fp-ts/lib/bifunctor.d.ts",
|
|
5152
|
+
"../node_modules/fp-ts/lib/either.d.ts",
|
|
5153
|
+
"../node_modules/fp-ts/lib/endomorphism.d.ts",
|
|
5154
|
+
"../node_modules/fp-ts/lib/eq.d.ts",
|
|
5155
|
+
"../node_modules/fp-ts/lib/functor.d.ts",
|
|
5156
|
+
"../node_modules/fp-ts/lib/option.d.ts",
|
|
5157
|
+
"../node_modules/fp-ts/lib/ord.d.ts",
|
|
5158
|
+
"../node_modules/fp-ts/lib/predicate.d.ts",
|
|
5159
|
+
"../node_modules/fp-ts/lib/readonlynonemptyarray.d.ts",
|
|
5160
|
+
"../node_modules/fp-ts/lib/readonlyrecord.d.ts"
|
|
5161
|
+
],
|
|
5162
|
+
"../node_modules/fp-ts/lib/show.d.ts": [
|
|
5163
|
+
"../node_modules/fp-ts/lib/readonlyrecord.d.ts"
|
|
5164
|
+
],
|
|
5165
|
+
"../node_modules/fp-ts/lib/traversable.d.ts": [
|
|
5166
|
+
"../node_modules/fp-ts/hkt.d.ts",
|
|
5167
|
+
"../node_modules/fp-ts/lib/applicative.d.ts",
|
|
5168
|
+
"../node_modules/fp-ts/lib/foldable.d.ts",
|
|
5169
|
+
"../node_modules/fp-ts/lib/functor.d.ts"
|
|
5170
|
+
],
|
|
5171
|
+
"../node_modules/fp-ts/lib/traversablewithindex.d.ts": [
|
|
5172
|
+
"../node_modules/fp-ts/hkt.d.ts",
|
|
5173
|
+
"../node_modules/fp-ts/lib/applicative.d.ts",
|
|
5174
|
+
"../node_modules/fp-ts/lib/foldablewithindex.d.ts",
|
|
5175
|
+
"../node_modules/fp-ts/lib/functorwithindex.d.ts",
|
|
5176
|
+
"../node_modules/fp-ts/lib/traversable.d.ts"
|
|
5177
|
+
],
|
|
5178
|
+
"../node_modules/fp-ts/lib/unfoldable.d.ts": [
|
|
5179
|
+
"../node_modules/fp-ts/hkt.d.ts",
|
|
5180
|
+
"../node_modules/fp-ts/lib/option.d.ts"
|
|
5181
|
+
],
|
|
5182
|
+
"../node_modules/fp-ts/lib/witherable.d.ts": [
|
|
5183
|
+
"../node_modules/fp-ts/hkt.d.ts",
|
|
5184
|
+
"../node_modules/fp-ts/lib/applicative.d.ts",
|
|
5185
|
+
"../node_modules/fp-ts/lib/compactable.d.ts",
|
|
5186
|
+
"../node_modules/fp-ts/lib/either.d.ts",
|
|
5187
|
+
"../node_modules/fp-ts/lib/filterable.d.ts",
|
|
5188
|
+
"../node_modules/fp-ts/lib/option.d.ts",
|
|
5189
|
+
"../node_modules/fp-ts/lib/separated.d.ts",
|
|
5190
|
+
"../node_modules/fp-ts/lib/traversable.d.ts"
|
|
5191
|
+
],
|
|
5192
|
+
"../node_modules/fp-ts/lib/zero.d.ts": [
|
|
5193
|
+
"../node_modules/fp-ts/hkt.d.ts",
|
|
5194
|
+
"../node_modules/fp-ts/lib/pointed.d.ts"
|
|
5195
|
+
],
|
|
5196
|
+
"../node_modules/io-ts/lib/index.d.ts": [
|
|
5197
|
+
"../node_modules/fp-ts/lib/either.d.ts",
|
|
5198
|
+
"../node_modules/fp-ts/lib/function.d.ts"
|
|
5199
|
+
],
|
|
4157
5200
|
"../src/account-lib/basecoin/basekeypair.ts": [
|
|
4158
5201
|
"../src/account-lib/basecoin/enum.ts"
|
|
4159
5202
|
],
|
|
@@ -4201,7 +5244,7 @@
|
|
|
4201
5244
|
],
|
|
4202
5245
|
"../src/account-lib/basecoin/secp256k1extendedkeypair.ts": [
|
|
4203
5246
|
"../../../node_modules/bip32/types/index.d.ts",
|
|
4204
|
-
"../../../node_modules/
|
|
5247
|
+
"../../../node_modules/ecpair/src/index.d.ts",
|
|
4205
5248
|
"../src/account-lib/basecoin/basekeypair.ts",
|
|
4206
5249
|
"../src/account-lib/basecoin/enum.ts",
|
|
4207
5250
|
"../src/account-lib/basecoin/iface.ts"
|
|
@@ -4230,6 +5273,7 @@
|
|
|
4230
5273
|
"../src/account-lib/mpc/index.ts": [
|
|
4231
5274
|
"../src/account-lib/mpc/curves/index.ts",
|
|
4232
5275
|
"../src/account-lib/mpc/hdtree.ts",
|
|
5276
|
+
"../src/account-lib/mpc/shamir.ts",
|
|
4233
5277
|
"../src/account-lib/mpc/tss/index.ts",
|
|
4234
5278
|
"../src/account-lib/mpc/util.ts"
|
|
4235
5279
|
],
|
|
@@ -4237,6 +5281,7 @@
|
|
|
4237
5281
|
"../src/account-lib/mpc/curves/index.ts"
|
|
4238
5282
|
],
|
|
4239
5283
|
"../src/account-lib/mpc/tss/ecdsa/ecdsa.ts": [
|
|
5284
|
+
"../../../node_modules/@types/node/crypto.d.ts",
|
|
4240
5285
|
"../src/account-lib/mpc/curves/index.ts",
|
|
4241
5286
|
"../src/account-lib/mpc/shamir.ts",
|
|
4242
5287
|
"../src/account-lib/mpc/tss/ecdsa/types.ts"
|
|
@@ -4299,7 +5344,8 @@
|
|
|
4299
5344
|
"../src/bitgo/market/index.ts",
|
|
4300
5345
|
"../src/bitgo/pendingapproval/index.ts",
|
|
4301
5346
|
"../src/bitgo/recovery/index.ts",
|
|
4302
|
-
"../src/bitgo/utils/index.ts",
|
|
5347
|
+
"../src/bitgo/utils/tss/ecdsa/index.ts",
|
|
5348
|
+
"../src/bitgo/utils/tss/eddsa/index.ts",
|
|
4303
5349
|
"../src/bitgo/wallet/index.ts",
|
|
4304
5350
|
"../src/bitgo/webhook/iwebhooks.ts"
|
|
4305
5351
|
],
|
|
@@ -4312,6 +5358,7 @@
|
|
|
4312
5358
|
],
|
|
4313
5359
|
"../src/bitgo/bitcoin.ts": [
|
|
4314
5360
|
"../../../node_modules/bip32/types/index.d.ts",
|
|
5361
|
+
"../../../node_modules/ecpair/src/index.d.ts",
|
|
4315
5362
|
"../../utxo-lib/dist/src/index.d.ts",
|
|
4316
5363
|
"../src/bitgo/types.ts"
|
|
4317
5364
|
],
|
|
@@ -4331,7 +5378,7 @@
|
|
|
4331
5378
|
],
|
|
4332
5379
|
"../src/bitgo/ecdh.ts": [
|
|
4333
5380
|
"../../../node_modules/bip32/types/index.d.ts",
|
|
4334
|
-
"
|
|
5381
|
+
"../../../node_modules/ecpair/src/index.d.ts"
|
|
4335
5382
|
],
|
|
4336
5383
|
"../src/bitgo/enterprise/enterprise.ts": [
|
|
4337
5384
|
"../src/bitgo/basecoin/index.ts",
|
|
@@ -4378,6 +5425,8 @@
|
|
|
4378
5425
|
"../src/bitgo/errors.ts",
|
|
4379
5426
|
"../src/bitgo/internal/index.ts",
|
|
4380
5427
|
"../src/bitgo/keychain/index.ts",
|
|
5428
|
+
"../src/bitgo/legacybitcoin.ts",
|
|
5429
|
+
"../src/bitgo/lightning/index.ts",
|
|
4381
5430
|
"../src/bitgo/market/index.ts",
|
|
4382
5431
|
"../src/bitgo/pendingapproval/index.ts",
|
|
4383
5432
|
"../src/bitgo/recovery/index.ts",
|
|
@@ -4414,6 +5463,28 @@
|
|
|
4414
5463
|
"../src/bitgo/bitgobase.ts",
|
|
4415
5464
|
"../src/bitgo/keychain/ikeychains.ts"
|
|
4416
5465
|
],
|
|
5466
|
+
"../src/bitgo/legacybitcoin.ts": [
|
|
5467
|
+
"../../../node_modules/bip32/types/index.d.ts",
|
|
5468
|
+
"../../../node_modules/ecpair/src/index.d.ts",
|
|
5469
|
+
"../../utxo-lib/dist/src/index.d.ts"
|
|
5470
|
+
],
|
|
5471
|
+
"../src/bitgo/lightning/ilightning.ts": [
|
|
5472
|
+
"../node_modules/io-ts/lib/index.d.ts"
|
|
5473
|
+
],
|
|
5474
|
+
"../src/bitgo/lightning/index.ts": [
|
|
5475
|
+
"../src/bitgo/lightning/ilightning.ts",
|
|
5476
|
+
"../src/bitgo/lightning/lightning.ts",
|
|
5477
|
+
"../src/bitgo/lightning/lightningutils.ts",
|
|
5478
|
+
"../src/bitgo/lightning/lnurlcodec.ts"
|
|
5479
|
+
],
|
|
5480
|
+
"../src/bitgo/lightning/lightning.ts": [
|
|
5481
|
+
"../src/bitgo/bitgobase.ts",
|
|
5482
|
+
"../src/bitgo/lightning/ilightning.ts",
|
|
5483
|
+
"../src/bitgo/wallet/index.ts"
|
|
5484
|
+
],
|
|
5485
|
+
"../src/bitgo/lightning/lightningutils.ts": [
|
|
5486
|
+
"../src/bitgo/lightning/ilightning.ts"
|
|
5487
|
+
],
|
|
4417
5488
|
"../src/bitgo/market/index.ts": [
|
|
4418
5489
|
"../src/bitgo/market/imarkets.ts",
|
|
4419
5490
|
"../src/bitgo/market/markets.ts"
|
|
@@ -4589,6 +5660,10 @@
|
|
|
4589
5660
|
"../src/bitgo/utils/iblsutils.ts",
|
|
4590
5661
|
"../src/bitgo/utils/mpcutils.ts"
|
|
4591
5662
|
],
|
|
5663
|
+
"../src/bitgo/utils/decode.ts": [
|
|
5664
|
+
"../node_modules/fp-ts/lib/either.d.ts",
|
|
5665
|
+
"../node_modules/io-ts/lib/index.d.ts"
|
|
5666
|
+
],
|
|
4592
5667
|
"../src/bitgo/utils/iblsutils.ts": [
|
|
4593
5668
|
"../../../node_modules/openpgp/openpgp.d.ts",
|
|
4594
5669
|
"../src/bitgo/basecoin/index.ts",
|
|
@@ -4692,6 +5767,7 @@
|
|
|
4692
5767
|
"../src/bitgo/basecoin/index.ts",
|
|
4693
5768
|
"../src/bitgo/bitgobase.ts",
|
|
4694
5769
|
"../src/bitgo/keychain/index.ts",
|
|
5770
|
+
"../src/bitgo/lightning/index.ts",
|
|
4695
5771
|
"../src/bitgo/pendingapproval/index.ts",
|
|
4696
5772
|
"../src/bitgo/staking/index.ts",
|
|
4697
5773
|
"../src/bitgo/trading/index.ts",
|
|
@@ -4706,6 +5782,7 @@
|
|
|
4706
5782
|
"../src/bitgo/wallet/wallet.ts": [
|
|
4707
5783
|
"../src/bitgo/basecoin/index.ts",
|
|
4708
5784
|
"../src/bitgo/bitgobase.ts",
|
|
5785
|
+
"../src/bitgo/lightning/index.ts",
|
|
4709
5786
|
"../src/bitgo/pendingapproval/index.ts",
|
|
4710
5787
|
"../src/bitgo/staking/stakingwallet.ts",
|
|
4711
5788
|
"../src/bitgo/trading/tradingaccount.ts",
|
|
@@ -4824,34 +5901,34 @@
|
|
|
4824
5901
|
"../../statics/dist/src/networks.d.ts"
|
|
4825
5902
|
],
|
|
4826
5903
|
"../../utxo-lib/dist/src/address.d.ts": [
|
|
4827
|
-
"../../../node_modules
|
|
5904
|
+
"../../../node_modules/bitcoinjs-lib/src/address.d.ts",
|
|
5905
|
+
"../../../node_modules/bitcoinjs-lib/src/index.d.ts",
|
|
4828
5906
|
"../../utxo-lib/dist/src/networks.d.ts",
|
|
4829
|
-
"../../utxo-lib/node_modules/
|
|
4830
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/index.d.ts"
|
|
5907
|
+
"../../utxo-lib/node_modules/@types/node/index.d.ts"
|
|
4831
5908
|
],
|
|
4832
5909
|
"../../utxo-lib/dist/src/addressformat.d.ts": [
|
|
4833
|
-
"
|
|
4834
|
-
"../../utxo-lib/
|
|
5910
|
+
"../../utxo-lib/dist/src/networks.d.ts",
|
|
5911
|
+
"../../utxo-lib/node_modules/@types/node/index.d.ts"
|
|
4835
5912
|
],
|
|
4836
5913
|
"../../utxo-lib/dist/src/bitgo/bitcoincash/address.d.ts": [
|
|
4837
|
-
"../../../node_modules/@types/node/index.d.ts",
|
|
4838
5914
|
"../../utxo-lib/dist/src/addressformat.d.ts",
|
|
4839
|
-
"../../utxo-lib/dist/src/networks.d.ts"
|
|
5915
|
+
"../../utxo-lib/dist/src/networks.d.ts",
|
|
5916
|
+
"../../utxo-lib/node_modules/@types/node/index.d.ts"
|
|
4840
5917
|
],
|
|
4841
5918
|
"../../utxo-lib/dist/src/bitgo/bitcoincash/index.d.ts": [
|
|
4842
5919
|
"../../utxo-lib/dist/src/bitgo/bitcoincash/address.d.ts"
|
|
4843
5920
|
],
|
|
4844
5921
|
"../../utxo-lib/dist/src/bitgo/dash/dashtransaction.d.ts": [
|
|
4845
|
-
"../../../node_modules/@types/node/index.d.ts",
|
|
4846
5922
|
"../../utxo-lib/dist/src/bitgo/utxotransaction.d.ts",
|
|
4847
|
-
"../../utxo-lib/dist/src/networks.d.ts"
|
|
5923
|
+
"../../utxo-lib/dist/src/networks.d.ts",
|
|
5924
|
+
"../../utxo-lib/node_modules/@types/node/index.d.ts"
|
|
4848
5925
|
],
|
|
4849
5926
|
"../../utxo-lib/dist/src/bitgo/dash/dashtransactionbuilder.d.ts": [
|
|
4850
|
-
"../../../node_modules
|
|
5927
|
+
"../../../node_modules/bitcoinjs-lib/src/index.d.ts",
|
|
4851
5928
|
"../../utxo-lib/dist/src/bitgo/dash/dashtransaction.d.ts",
|
|
4852
5929
|
"../../utxo-lib/dist/src/bitgo/utxotransactionbuilder.d.ts",
|
|
4853
5930
|
"../../utxo-lib/dist/src/networks.d.ts",
|
|
4854
|
-
"../../utxo-lib/node_modules/
|
|
5931
|
+
"../../utxo-lib/node_modules/@types/node/index.d.ts"
|
|
4855
5932
|
],
|
|
4856
5933
|
"../../utxo-lib/dist/src/bitgo/dash/index.d.ts": [
|
|
4857
5934
|
"../../utxo-lib/dist/src/bitgo/dash/dashtransaction.d.ts",
|
|
@@ -4874,53 +5951,54 @@
|
|
|
4874
5951
|
"../../utxo-lib/dist/src/bitgo/zcash/index.d.ts"
|
|
4875
5952
|
],
|
|
4876
5953
|
"../../utxo-lib/dist/src/bitgo/keyutil.d.ts": [
|
|
4877
|
-
"../../../node_modules
|
|
5954
|
+
"../../../node_modules/ecpair/src/index.d.ts",
|
|
4878
5955
|
"../../utxo-lib/dist/src/networks.d.ts",
|
|
4879
|
-
"../../utxo-lib/node_modules/
|
|
5956
|
+
"../../utxo-lib/node_modules/@types/node/index.d.ts"
|
|
4880
5957
|
],
|
|
4881
5958
|
"../../utxo-lib/dist/src/bitgo/nonstandardhalfsigned.d.ts": [
|
|
4882
5959
|
"../../utxo-lib/dist/src/index.d.ts"
|
|
4883
5960
|
],
|
|
4884
5961
|
"../../utxo-lib/dist/src/bitgo/outputscripts.d.ts": [
|
|
4885
|
-
"../../../node_modules
|
|
5962
|
+
"../../../node_modules/bitcoinjs-lib/src/index.d.ts",
|
|
4886
5963
|
"../../utxo-lib/dist/src/bitgo/types.d.ts",
|
|
4887
5964
|
"../../utxo-lib/dist/src/bitgo/wallet/chains.d.ts",
|
|
4888
5965
|
"../../utxo-lib/dist/src/index.d.ts",
|
|
4889
|
-
"../../utxo-lib/node_modules/
|
|
5966
|
+
"../../utxo-lib/node_modules/@types/node/index.d.ts"
|
|
4890
5967
|
],
|
|
4891
5968
|
"../../utxo-lib/dist/src/bitgo/signature.d.ts": [
|
|
4892
|
-
"../../../node_modules/@types/node/index.d.ts",
|
|
4893
5969
|
"../../../node_modules/bip32/types/index.d.ts",
|
|
5970
|
+
"../../../node_modules/bitcoinjs-lib/src/index.d.ts",
|
|
4894
5971
|
"../../utxo-lib/dist/src/bitgo/outputscripts.d.ts",
|
|
4895
5972
|
"../../utxo-lib/dist/src/bitgo/types.d.ts",
|
|
4896
5973
|
"../../utxo-lib/dist/src/bitgo/utxotransaction.d.ts",
|
|
4897
5974
|
"../../utxo-lib/dist/src/bitgo/utxotransactionbuilder.d.ts",
|
|
4898
5975
|
"../../utxo-lib/dist/src/networks.d.ts",
|
|
4899
|
-
"../../utxo-lib/node_modules/
|
|
5976
|
+
"../../utxo-lib/node_modules/@types/node/index.d.ts"
|
|
4900
5977
|
],
|
|
4901
5978
|
"../../utxo-lib/dist/src/bitgo/transaction.d.ts": [
|
|
4902
|
-
"../../../node_modules
|
|
5979
|
+
"../../../node_modules/bitcoinjs-lib/src/index.d.ts",
|
|
4903
5980
|
"../../utxo-lib/dist/src/bitgo/utxotransaction.d.ts",
|
|
4904
5981
|
"../../utxo-lib/dist/src/bitgo/utxotransactionbuilder.d.ts",
|
|
4905
5982
|
"../../utxo-lib/dist/src/networks.d.ts",
|
|
4906
|
-
"../../utxo-lib/node_modules/
|
|
5983
|
+
"../../utxo-lib/node_modules/@types/node/index.d.ts"
|
|
4907
5984
|
],
|
|
4908
5985
|
"../../utxo-lib/dist/src/bitgo/unspent.d.ts": [
|
|
4909
|
-
"../../../node_modules
|
|
5986
|
+
"../../../node_modules/bitcoinjs-lib/src/index.d.ts",
|
|
4910
5987
|
"../../utxo-lib/dist/src/bitgo/utxotransactionbuilder.d.ts",
|
|
4911
5988
|
"../../utxo-lib/dist/src/index.d.ts",
|
|
4912
|
-
"../../utxo-lib/node_modules/
|
|
5989
|
+
"../../utxo-lib/node_modules/@types/node/index.d.ts"
|
|
4913
5990
|
],
|
|
4914
5991
|
"../../utxo-lib/dist/src/bitgo/utxotransaction.d.ts": [
|
|
4915
|
-
"../../../node_modules
|
|
5992
|
+
"../../../node_modules/bitcoinjs-lib/src/index.d.ts",
|
|
4916
5993
|
"../../utxo-lib/dist/src/networks.d.ts",
|
|
4917
|
-
"../../utxo-lib/node_modules/
|
|
5994
|
+
"../../utxo-lib/node_modules/@types/node/index.d.ts"
|
|
4918
5995
|
],
|
|
4919
5996
|
"../../utxo-lib/dist/src/bitgo/utxotransactionbuilder.d.ts": [
|
|
4920
|
-
"../../../node_modules
|
|
5997
|
+
"../../../node_modules/bitcoinjs-lib/src/index.d.ts",
|
|
4921
5998
|
"../../utxo-lib/dist/src/bitgo/utxotransaction.d.ts",
|
|
4922
5999
|
"../../utxo-lib/dist/src/index.d.ts",
|
|
4923
|
-
"../../utxo-lib/
|
|
6000
|
+
"../../utxo-lib/dist/src/transaction_builder.d.ts",
|
|
6001
|
+
"../../utxo-lib/node_modules/@types/node/index.d.ts"
|
|
4924
6002
|
],
|
|
4925
6003
|
"../../utxo-lib/dist/src/bitgo/wallet/chains.d.ts": [
|
|
4926
6004
|
"../../utxo-lib/dist/src/bitgo/outputscripts.d.ts"
|
|
@@ -4942,9 +6020,9 @@
|
|
|
4942
6020
|
"../../utxo-lib/dist/src/bitgo/wallet/walletunspentsigner.d.ts"
|
|
4943
6021
|
],
|
|
4944
6022
|
"../../utxo-lib/dist/src/bitgo/wallet/walletkeys.d.ts": [
|
|
4945
|
-
"../../../node_modules/@types/node/index.d.ts",
|
|
4946
6023
|
"../../../node_modules/bip32/types/index.d.ts",
|
|
4947
|
-
"../../utxo-lib/dist/src/bitgo/types.d.ts"
|
|
6024
|
+
"../../utxo-lib/dist/src/bitgo/types.d.ts",
|
|
6025
|
+
"../../utxo-lib/node_modules/@types/node/index.d.ts"
|
|
4948
6026
|
],
|
|
4949
6027
|
"../../utxo-lib/dist/src/bitgo/wallet/walletscripts.d.ts": [
|
|
4950
6028
|
"../../utxo-lib/dist/src/bitgo/index.d.ts",
|
|
@@ -4962,133 +6040,37 @@
|
|
|
4962
6040
|
"../../utxo-lib/dist/src/bitgo/zcash/zcashtransactionbuilder.d.ts"
|
|
4963
6041
|
],
|
|
4964
6042
|
"../../utxo-lib/dist/src/bitgo/zcash/zcashtransaction.d.ts": [
|
|
4965
|
-
"../../../node_modules/@types/node/index.d.ts",
|
|
4966
6043
|
"../../utxo-lib/dist/src/bitgo/utxotransaction.d.ts",
|
|
4967
|
-
"../../utxo-lib/dist/src/networks.d.ts"
|
|
6044
|
+
"../../utxo-lib/dist/src/networks.d.ts",
|
|
6045
|
+
"../../utxo-lib/node_modules/@types/node/index.d.ts"
|
|
4968
6046
|
],
|
|
4969
6047
|
"../../utxo-lib/dist/src/bitgo/zcash/zcashtransactionbuilder.d.ts": [
|
|
4970
|
-
"../../../node_modules
|
|
6048
|
+
"../../../node_modules/bitcoinjs-lib/src/index.d.ts",
|
|
4971
6049
|
"../../utxo-lib/dist/src/bitgo/utxotransactionbuilder.d.ts",
|
|
4972
6050
|
"../../utxo-lib/dist/src/bitgo/zcash/zcashtransaction.d.ts",
|
|
4973
6051
|
"../../utxo-lib/dist/src/index.d.ts",
|
|
4974
|
-
"../../utxo-lib/node_modules/
|
|
6052
|
+
"../../utxo-lib/node_modules/@types/node/index.d.ts"
|
|
6053
|
+
],
|
|
6054
|
+
"../../utxo-lib/dist/src/classify.d.ts": [
|
|
6055
|
+
"../../utxo-lib/node_modules/@types/node/index.d.ts"
|
|
4975
6056
|
],
|
|
4976
6057
|
"../../utxo-lib/dist/src/index.d.ts": [
|
|
6058
|
+
"../../../node_modules/bitcoinjs-lib/src/index.d.ts",
|
|
4977
6059
|
"../../utxo-lib/dist/src/address.d.ts",
|
|
4978
6060
|
"../../utxo-lib/dist/src/addressformat.d.ts",
|
|
4979
6061
|
"../../utxo-lib/dist/src/bitgo/index.d.ts",
|
|
6062
|
+
"../../utxo-lib/dist/src/classify.d.ts",
|
|
4980
6063
|
"../../utxo-lib/dist/src/networks.d.ts",
|
|
4981
|
-
"../../utxo-lib/
|
|
4982
|
-
|
|
4983
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/address.d.ts": [
|
|
4984
|
-
"../../../node_modules/@types/node/index.d.ts",
|
|
4985
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/networks.d.ts"
|
|
4986
|
-
],
|
|
4987
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/block.d.ts": [
|
|
4988
|
-
"../../../node_modules/@types/node/index.d.ts",
|
|
4989
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/transaction.d.ts"
|
|
6064
|
+
"../../utxo-lib/dist/src/noble_ecc.d.ts",
|
|
6065
|
+
"../../utxo-lib/dist/src/transaction_builder.d.ts"
|
|
4990
6066
|
],
|
|
4991
|
-
"../../utxo-lib/
|
|
4992
|
-
"../../../node_modules/@types/node/index.d.ts"
|
|
4993
|
-
],
|
|
4994
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/crypto.d.ts": [
|
|
4995
|
-
"../../../node_modules/@types/node/index.d.ts"
|
|
4996
|
-
],
|
|
4997
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/ecpair.d.ts": [
|
|
4998
|
-
"../../../node_modules/@types/node/index.d.ts",
|
|
4999
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/networks.d.ts"
|
|
5000
|
-
],
|
|
5001
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/index.d.ts": [
|
|
6067
|
+
"../../utxo-lib/dist/src/noble_ecc.d.ts": [
|
|
5002
6068
|
"../../../node_modules/bip32/types/index.d.ts",
|
|
5003
|
-
"
|
|
5004
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/block.d.ts",
|
|
5005
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/classify.d.ts",
|
|
5006
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/crypto.d.ts",
|
|
5007
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/ecpair.d.ts",
|
|
5008
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/networks.d.ts",
|
|
5009
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/payments/index.d.ts",
|
|
5010
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/psbt.d.ts",
|
|
5011
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/schnorrbip340.d.ts",
|
|
5012
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/script.d.ts",
|
|
5013
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/script_signature.d.ts",
|
|
5014
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/taproot.d.ts",
|
|
5015
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/transaction.d.ts",
|
|
5016
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/transaction_builder.d.ts"
|
|
5017
|
-
],
|
|
5018
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/payments/embed.d.ts": [
|
|
5019
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/payments/index.d.ts"
|
|
5020
|
-
],
|
|
5021
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/payments/index.d.ts": [
|
|
5022
|
-
"../../../node_modules/@types/node/index.d.ts",
|
|
5023
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/networks.d.ts",
|
|
5024
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/payments/embed.d.ts",
|
|
5025
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/payments/p2ms.d.ts",
|
|
5026
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/payments/p2pk.d.ts",
|
|
5027
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/payments/p2pkh.d.ts",
|
|
5028
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/payments/p2sh.d.ts",
|
|
5029
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/payments/p2tr.d.ts",
|
|
5030
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/payments/p2tr_ns.d.ts",
|
|
5031
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/payments/p2wpkh.d.ts",
|
|
5032
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/payments/p2wsh.d.ts"
|
|
5033
|
-
],
|
|
5034
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/payments/p2ms.d.ts": [
|
|
5035
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/payments/index.d.ts"
|
|
5036
|
-
],
|
|
5037
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/payments/p2pk.d.ts": [
|
|
5038
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/payments/index.d.ts"
|
|
5039
|
-
],
|
|
5040
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/payments/p2pkh.d.ts": [
|
|
5041
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/payments/index.d.ts"
|
|
5042
|
-
],
|
|
5043
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/payments/p2sh.d.ts": [
|
|
5044
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/payments/index.d.ts"
|
|
5045
|
-
],
|
|
5046
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/payments/p2tr.d.ts": [
|
|
5047
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/payments/index.d.ts"
|
|
5048
|
-
],
|
|
5049
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/payments/p2tr_ns.d.ts": [
|
|
5050
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/payments/index.d.ts"
|
|
5051
|
-
],
|
|
5052
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/payments/p2wpkh.d.ts": [
|
|
5053
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/payments/index.d.ts"
|
|
5054
|
-
],
|
|
5055
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/payments/p2wsh.d.ts": [
|
|
5056
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/payments/index.d.ts"
|
|
5057
|
-
],
|
|
5058
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/psbt.d.ts": [
|
|
5059
|
-
"../../../node_modules/@types/node/index.d.ts",
|
|
5060
|
-
"../../../node_modules/bip174/src/lib/interfaces.d.ts",
|
|
5061
|
-
"../../../node_modules/bip174/src/lib/psbt.d.ts",
|
|
5062
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/ecpair.d.ts",
|
|
5063
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/networks.d.ts",
|
|
5064
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/transaction.d.ts"
|
|
5065
|
-
],
|
|
5066
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/schnorrbip340.d.ts": [
|
|
5067
|
-
"../../../node_modules/@types/node/index.d.ts"
|
|
6069
|
+
"../../../node_modules/ecpair/src/index.d.ts"
|
|
5068
6070
|
],
|
|
5069
|
-
"../../utxo-lib/
|
|
5070
|
-
"
|
|
5071
|
-
"../../utxo-lib/node_modules
|
|
5072
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/script_number.d.ts",
|
|
5073
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/script_signature.d.ts"
|
|
5074
|
-
],
|
|
5075
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/script_number.d.ts": [
|
|
5076
|
-
"../../../node_modules/@types/node/index.d.ts"
|
|
5077
|
-
],
|
|
5078
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/script_signature.d.ts": [
|
|
5079
|
-
"../../../node_modules/@types/node/index.d.ts"
|
|
5080
|
-
],
|
|
5081
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/taproot.d.ts": [
|
|
5082
|
-
"../../../node_modules/@types/node/index.d.ts"
|
|
5083
|
-
],
|
|
5084
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/transaction.d.ts": [
|
|
5085
|
-
"../../../node_modules/@types/node/index.d.ts"
|
|
5086
|
-
],
|
|
5087
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/transaction_builder.d.ts": [
|
|
5088
|
-
"../../../node_modules/@types/node/index.d.ts",
|
|
5089
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/ecpair.d.ts",
|
|
5090
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/networks.d.ts",
|
|
5091
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/transaction.d.ts"
|
|
6071
|
+
"../../utxo-lib/dist/src/transaction_builder.d.ts": [
|
|
6072
|
+
"../../utxo-lib/dist/src/index.d.ts",
|
|
6073
|
+
"../../utxo-lib/node_modules/@types/node/index.d.ts"
|
|
5092
6074
|
],
|
|
5093
6075
|
"../../../node_modules/@types/bn.js/index.d.ts": [
|
|
5094
6076
|
"../../../node_modules/@types/node/index.d.ts"
|
|
@@ -5178,6 +6160,10 @@
|
|
|
5178
6160
|
"../../../node_modules/@types/node/stream.d.ts",
|
|
5179
6161
|
"../../../node_modules/@types/node/url.d.ts"
|
|
5180
6162
|
],
|
|
6163
|
+
"../../../node_modules/@types/keccak/index.d.ts": [
|
|
6164
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
6165
|
+
"../../../node_modules/@types/node/stream.d.ts"
|
|
6166
|
+
],
|
|
5181
6167
|
"../../../node_modules/@types/lodash/common/array.d.ts": [
|
|
5182
6168
|
"../../../node_modules/@types/lodash/common/collection.d.ts",
|
|
5183
6169
|
"../../../node_modules/@types/lodash/common/common.d.ts",
|
|
@@ -5360,6 +6346,12 @@
|
|
|
5360
6346
|
"../../../node_modules/@types/lodash/common/string.d.ts",
|
|
5361
6347
|
"../../../node_modules/@types/lodash/common/util.d.ts"
|
|
5362
6348
|
],
|
|
6349
|
+
"../../../node_modules/@types/mime/index.d.ts": [
|
|
6350
|
+
"../../../node_modules/@types/mime/mime.d.ts"
|
|
6351
|
+
],
|
|
6352
|
+
"../../../node_modules/@types/mime/mime.d.ts": [
|
|
6353
|
+
"../../../node_modules/@types/mime/index.d.ts"
|
|
6354
|
+
],
|
|
5363
6355
|
"../../../node_modules/@types/morgan/index.d.ts": [
|
|
5364
6356
|
"../../../node_modules/@types/node/http.d.ts",
|
|
5365
6357
|
"../../../node_modules/@types/node/index.d.ts"
|
|
@@ -5706,115 +6698,113 @@
|
|
|
5706
6698
|
"../../../node_modules/bip32/types/index.d.ts": [
|
|
5707
6699
|
"../../../node_modules/bip32/types/bip32.d.ts"
|
|
5708
6700
|
],
|
|
5709
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
6701
|
+
"../../../node_modules/bitcoinjs-lib/src/address.d.ts": [
|
|
5710
6702
|
"../../../node_modules/@types/node/index.d.ts",
|
|
5711
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
6703
|
+
"../../../node_modules/bitcoinjs-lib/src/networks.d.ts"
|
|
5712
6704
|
],
|
|
5713
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
6705
|
+
"../../../node_modules/bitcoinjs-lib/src/block.d.ts": [
|
|
5714
6706
|
"../../../node_modules/@types/node/index.d.ts",
|
|
5715
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
6707
|
+
"../../../node_modules/bitcoinjs-lib/src/transaction.d.ts"
|
|
5716
6708
|
],
|
|
5717
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
6709
|
+
"../../../node_modules/bitcoinjs-lib/src/crypto.d.ts": [
|
|
5718
6710
|
"../../../node_modules/@types/node/index.d.ts"
|
|
5719
6711
|
],
|
|
5720
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
5721
|
-
"../../../node_modules
|
|
5722
|
-
|
|
5723
|
-
|
|
5724
|
-
"../../../node_modules
|
|
5725
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
5726
|
-
|
|
5727
|
-
|
|
5728
|
-
"../../../node_modules/
|
|
5729
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
5730
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
5731
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
5732
|
-
|
|
5733
|
-
|
|
5734
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
5735
|
-
|
|
5736
|
-
|
|
5737
|
-
"../../../node_modules/bitcoinjs-lib/types/schnorrbip340.d.ts",
|
|
5738
|
-
"../../../node_modules/bitcoinjs-lib/types/script.d.ts",
|
|
5739
|
-
"../../../node_modules/bitcoinjs-lib/types/script_signature.d.ts",
|
|
5740
|
-
"../../../node_modules/bitcoinjs-lib/types/taproot.d.ts",
|
|
5741
|
-
"../../../node_modules/bitcoinjs-lib/types/transaction.d.ts",
|
|
5742
|
-
"../../../node_modules/bitcoinjs-lib/types/transaction_builder.d.ts"
|
|
5743
|
-
],
|
|
5744
|
-
"../../../node_modules/bitcoinjs-lib/types/payments/embed.d.ts": [
|
|
5745
|
-
"../../../node_modules/bitcoinjs-lib/types/payments/index.d.ts"
|
|
5746
|
-
],
|
|
5747
|
-
"../../../node_modules/bitcoinjs-lib/types/payments/index.d.ts": [
|
|
6712
|
+
"../../../node_modules/bitcoinjs-lib/src/index.d.ts": [
|
|
6713
|
+
"../../../node_modules/bitcoinjs-lib/src/address.d.ts",
|
|
6714
|
+
"../../../node_modules/bitcoinjs-lib/src/block.d.ts",
|
|
6715
|
+
"../../../node_modules/bitcoinjs-lib/src/crypto.d.ts",
|
|
6716
|
+
"../../../node_modules/bitcoinjs-lib/src/networks.d.ts",
|
|
6717
|
+
"../../../node_modules/bitcoinjs-lib/src/ops.d.ts",
|
|
6718
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/index.d.ts",
|
|
6719
|
+
"../../../node_modules/bitcoinjs-lib/src/psbt.d.ts",
|
|
6720
|
+
"../../../node_modules/bitcoinjs-lib/src/script.d.ts",
|
|
6721
|
+
"../../../node_modules/bitcoinjs-lib/src/script_signature.d.ts",
|
|
6722
|
+
"../../../node_modules/bitcoinjs-lib/src/taproot.d.ts",
|
|
6723
|
+
"../../../node_modules/bitcoinjs-lib/src/transaction.d.ts"
|
|
6724
|
+
],
|
|
6725
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/embed.d.ts": [
|
|
6726
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/index.d.ts"
|
|
6727
|
+
],
|
|
6728
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/index.d.ts": [
|
|
5748
6729
|
"../../../node_modules/@types/node/index.d.ts",
|
|
5749
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
5750
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
5751
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
5752
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
5753
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
5754
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
5755
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
5756
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
5757
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
5758
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
6730
|
+
"../../../node_modules/bitcoinjs-lib/src/networks.d.ts",
|
|
6731
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/embed.d.ts",
|
|
6732
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/p2ms.d.ts",
|
|
6733
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/p2pk.d.ts",
|
|
6734
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/p2pkh.d.ts",
|
|
6735
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/p2sh.d.ts",
|
|
6736
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/p2tr.d.ts",
|
|
6737
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/p2tr_ns.d.ts",
|
|
6738
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/p2wpkh.d.ts",
|
|
6739
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/p2wsh.d.ts",
|
|
6740
|
+
"../../../node_modules/bitcoinjs-lib/src/types.d.ts"
|
|
5759
6741
|
],
|
|
5760
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
5761
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
6742
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/p2ms.d.ts": [
|
|
6743
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/index.d.ts"
|
|
5762
6744
|
],
|
|
5763
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
5764
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
6745
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/p2pk.d.ts": [
|
|
6746
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/index.d.ts"
|
|
5765
6747
|
],
|
|
5766
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
5767
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
6748
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/p2pkh.d.ts": [
|
|
6749
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/index.d.ts"
|
|
5768
6750
|
],
|
|
5769
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
5770
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
6751
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/p2sh.d.ts": [
|
|
6752
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/index.d.ts"
|
|
5771
6753
|
],
|
|
5772
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
5773
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
6754
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/p2tr.d.ts": [
|
|
6755
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/index.d.ts"
|
|
5774
6756
|
],
|
|
5775
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
5776
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
6757
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/p2tr_ns.d.ts": [
|
|
6758
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/index.d.ts"
|
|
5777
6759
|
],
|
|
5778
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
5779
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
6760
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/p2wpkh.d.ts": [
|
|
6761
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/index.d.ts"
|
|
5780
6762
|
],
|
|
5781
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
5782
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
6763
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/p2wsh.d.ts": [
|
|
6764
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/index.d.ts"
|
|
5783
6765
|
],
|
|
5784
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
6766
|
+
"../../../node_modules/bitcoinjs-lib/src/psbt.d.ts": [
|
|
5785
6767
|
"../../../node_modules/@types/node/index.d.ts",
|
|
5786
6768
|
"../../../node_modules/bip174/src/lib/interfaces.d.ts",
|
|
5787
6769
|
"../../../node_modules/bip174/src/lib/psbt.d.ts",
|
|
5788
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
5789
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
5790
|
-
|
|
6770
|
+
"../../../node_modules/bitcoinjs-lib/src/networks.d.ts",
|
|
6771
|
+
"../../../node_modules/bitcoinjs-lib/src/transaction.d.ts"
|
|
6772
|
+
],
|
|
6773
|
+
"../../../node_modules/bitcoinjs-lib/src/script.d.ts": [
|
|
6774
|
+
"../../../node_modules/@types/node/index.d.ts",
|
|
6775
|
+
"../../../node_modules/bitcoinjs-lib/src/ops.d.ts",
|
|
6776
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/index.d.ts",
|
|
6777
|
+
"../../../node_modules/bitcoinjs-lib/src/script_number.d.ts",
|
|
6778
|
+
"../../../node_modules/bitcoinjs-lib/src/script_signature.d.ts"
|
|
5791
6779
|
],
|
|
5792
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
6780
|
+
"../../../node_modules/bitcoinjs-lib/src/script_number.d.ts": [
|
|
5793
6781
|
"../../../node_modules/@types/node/index.d.ts"
|
|
5794
6782
|
],
|
|
5795
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
6783
|
+
"../../../node_modules/bitcoinjs-lib/src/script_signature.d.ts": [
|
|
6784
|
+
"../../../node_modules/@types/node/index.d.ts"
|
|
6785
|
+
],
|
|
6786
|
+
"../../../node_modules/bitcoinjs-lib/src/taproot.d.ts": [
|
|
5796
6787
|
"../../../node_modules/@types/node/index.d.ts",
|
|
5797
|
-
"../../../node_modules/bitcoinjs-lib/types
|
|
5798
|
-
"../../../node_modules/bitcoinjs-lib/types/script_number.d.ts",
|
|
5799
|
-
"../../../node_modules/bitcoinjs-lib/types/script_signature.d.ts"
|
|
6788
|
+
"../../../node_modules/bitcoinjs-lib/src/types.d.ts"
|
|
5800
6789
|
],
|
|
5801
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
6790
|
+
"../../../node_modules/bitcoinjs-lib/src/transaction.d.ts": [
|
|
5802
6791
|
"../../../node_modules/@types/node/index.d.ts"
|
|
5803
6792
|
],
|
|
5804
|
-
"../../../node_modules/bitcoinjs-lib/types
|
|
6793
|
+
"../../../node_modules/bitcoinjs-lib/src/types.d.ts": [
|
|
5805
6794
|
"../../../node_modules/@types/node/index.d.ts"
|
|
5806
6795
|
],
|
|
5807
|
-
"../../../node_modules/
|
|
6796
|
+
"../../../node_modules/bolt11/node_modules/@types/bn.js/index.d.ts": [
|
|
5808
6797
|
"../../../node_modules/@types/node/index.d.ts"
|
|
5809
6798
|
],
|
|
5810
|
-
"../../../node_modules/
|
|
5811
|
-
"../../../node_modules/@types/
|
|
6799
|
+
"../../../node_modules/bolt11/payreq.d.ts": [
|
|
6800
|
+
"../../../node_modules/bolt11/node_modules/@types/bn.js/index.d.ts"
|
|
5812
6801
|
],
|
|
5813
|
-
"../../../node_modules/
|
|
6802
|
+
"../../../node_modules/ecpair/src/ecpair.d.ts": [
|
|
5814
6803
|
"../../../node_modules/@types/node/index.d.ts",
|
|
5815
|
-
"../../../node_modules/
|
|
5816
|
-
|
|
5817
|
-
|
|
6804
|
+
"../../../node_modules/ecpair/src/networks.d.ts"
|
|
6805
|
+
],
|
|
6806
|
+
"../../../node_modules/ecpair/src/index.d.ts": [
|
|
6807
|
+
"../../../node_modules/ecpair/src/ecpair.d.ts"
|
|
5818
6808
|
],
|
|
5819
6809
|
"../../../node_modules/ethereumjs-util/dist/account.d.ts": [
|
|
5820
6810
|
"../../../node_modules/@types/bn.js/index.d.ts",
|
|
@@ -5904,6 +6894,65 @@
|
|
|
5904
6894
|
]
|
|
5905
6895
|
},
|
|
5906
6896
|
"semanticDiagnosticsPerFile": [
|
|
6897
|
+
"../node_modules/fp-ts/hkt.d.ts",
|
|
6898
|
+
"../node_modules/fp-ts/lib/alt.d.ts",
|
|
6899
|
+
"../node_modules/fp-ts/lib/alternative.d.ts",
|
|
6900
|
+
"../node_modules/fp-ts/lib/applicative.d.ts",
|
|
6901
|
+
"../node_modules/fp-ts/lib/apply.d.ts",
|
|
6902
|
+
"../node_modules/fp-ts/lib/bifunctor.d.ts",
|
|
6903
|
+
"../node_modules/fp-ts/lib/booleanalgebra.d.ts",
|
|
6904
|
+
"../node_modules/fp-ts/lib/bounded.d.ts",
|
|
6905
|
+
"../node_modules/fp-ts/lib/boundeddistributivelattice.d.ts",
|
|
6906
|
+
"../node_modules/fp-ts/lib/boundedjoinsemilattice.d.ts",
|
|
6907
|
+
"../node_modules/fp-ts/lib/boundedlattice.d.ts",
|
|
6908
|
+
"../node_modules/fp-ts/lib/boundedmeetsemilattice.d.ts",
|
|
6909
|
+
"../node_modules/fp-ts/lib/chain.d.ts",
|
|
6910
|
+
"../node_modules/fp-ts/lib/chainrec.d.ts",
|
|
6911
|
+
"../node_modules/fp-ts/lib/comonad.d.ts",
|
|
6912
|
+
"../node_modules/fp-ts/lib/compactable.d.ts",
|
|
6913
|
+
"../node_modules/fp-ts/lib/contravariant.d.ts",
|
|
6914
|
+
"../node_modules/fp-ts/lib/distributivelattice.d.ts",
|
|
6915
|
+
"../node_modules/fp-ts/lib/either.d.ts",
|
|
6916
|
+
"../node_modules/fp-ts/lib/endomorphism.d.ts",
|
|
6917
|
+
"../node_modules/fp-ts/lib/eq.d.ts",
|
|
6918
|
+
"../node_modules/fp-ts/lib/extend.d.ts",
|
|
6919
|
+
"../node_modules/fp-ts/lib/filterable.d.ts",
|
|
6920
|
+
"../node_modules/fp-ts/lib/filterablewithindex.d.ts",
|
|
6921
|
+
"../node_modules/fp-ts/lib/foldable.d.ts",
|
|
6922
|
+
"../node_modules/fp-ts/lib/foldablewithindex.d.ts",
|
|
6923
|
+
"../node_modules/fp-ts/lib/fromeither.d.ts",
|
|
6924
|
+
"../node_modules/fp-ts/lib/function.d.ts",
|
|
6925
|
+
"../node_modules/fp-ts/lib/functor.d.ts",
|
|
6926
|
+
"../node_modules/fp-ts/lib/functorwithindex.d.ts",
|
|
6927
|
+
"../node_modules/fp-ts/lib/heytingalgebra.d.ts",
|
|
6928
|
+
"../node_modules/fp-ts/lib/joinsemilattice.d.ts",
|
|
6929
|
+
"../node_modules/fp-ts/lib/json.d.ts",
|
|
6930
|
+
"../node_modules/fp-ts/lib/lattice.d.ts",
|
|
6931
|
+
"../node_modules/fp-ts/lib/magma.d.ts",
|
|
6932
|
+
"../node_modules/fp-ts/lib/meetsemilattice.d.ts",
|
|
6933
|
+
"../node_modules/fp-ts/lib/monad.d.ts",
|
|
6934
|
+
"../node_modules/fp-ts/lib/monadthrow.d.ts",
|
|
6935
|
+
"../node_modules/fp-ts/lib/monoid.d.ts",
|
|
6936
|
+
"../node_modules/fp-ts/lib/naturaltransformation.d.ts",
|
|
6937
|
+
"../node_modules/fp-ts/lib/option.d.ts",
|
|
6938
|
+
"../node_modules/fp-ts/lib/ord.d.ts",
|
|
6939
|
+
"../node_modules/fp-ts/lib/ordering.d.ts",
|
|
6940
|
+
"../node_modules/fp-ts/lib/pointed.d.ts",
|
|
6941
|
+
"../node_modules/fp-ts/lib/predicate.d.ts",
|
|
6942
|
+
"../node_modules/fp-ts/lib/readonlynonemptyarray.d.ts",
|
|
6943
|
+
"../node_modules/fp-ts/lib/readonlyrecord.d.ts",
|
|
6944
|
+
"../node_modules/fp-ts/lib/refinement.d.ts",
|
|
6945
|
+
"../node_modules/fp-ts/lib/ring.d.ts",
|
|
6946
|
+
"../node_modules/fp-ts/lib/semigroup.d.ts",
|
|
6947
|
+
"../node_modules/fp-ts/lib/semiring.d.ts",
|
|
6948
|
+
"../node_modules/fp-ts/lib/separated.d.ts",
|
|
6949
|
+
"../node_modules/fp-ts/lib/show.d.ts",
|
|
6950
|
+
"../node_modules/fp-ts/lib/traversable.d.ts",
|
|
6951
|
+
"../node_modules/fp-ts/lib/traversablewithindex.d.ts",
|
|
6952
|
+
"../node_modules/fp-ts/lib/unfoldable.d.ts",
|
|
6953
|
+
"../node_modules/fp-ts/lib/witherable.d.ts",
|
|
6954
|
+
"../node_modules/fp-ts/lib/zero.d.ts",
|
|
6955
|
+
"../node_modules/io-ts/lib/index.d.ts",
|
|
5907
6956
|
"../src/account-lib/basecoin/basekeypair.ts",
|
|
5908
6957
|
"../src/account-lib/basecoin/basetransaction.ts",
|
|
5909
6958
|
"../src/account-lib/basecoin/basetransactionbuilder.ts",
|
|
@@ -5962,6 +7011,12 @@
|
|
|
5962
7011
|
"../src/bitgo/keychain/ikeychains.ts",
|
|
5963
7012
|
"../src/bitgo/keychain/index.ts",
|
|
5964
7013
|
"../src/bitgo/keychain/keychains.ts",
|
|
7014
|
+
"../src/bitgo/legacybitcoin.ts",
|
|
7015
|
+
"../src/bitgo/lightning/ilightning.ts",
|
|
7016
|
+
"../src/bitgo/lightning/index.ts",
|
|
7017
|
+
"../src/bitgo/lightning/lightning.ts",
|
|
7018
|
+
"../src/bitgo/lightning/lightningutils.ts",
|
|
7019
|
+
"../src/bitgo/lightning/lnurlcodec.ts",
|
|
5965
7020
|
"../src/bitgo/market/imarkets.ts",
|
|
5966
7021
|
"../src/bitgo/market/index.ts",
|
|
5967
7022
|
"../src/bitgo/market/markets.ts",
|
|
@@ -6005,6 +7060,7 @@
|
|
|
6005
7060
|
"../src/bitgo/types.ts",
|
|
6006
7061
|
"../src/bitgo/utils/abstractutxocoinutil.ts",
|
|
6007
7062
|
"../src/bitgo/utils/blsutils.ts",
|
|
7063
|
+
"../src/bitgo/utils/decode.ts",
|
|
6008
7064
|
"../src/bitgo/utils/iblsutils.ts",
|
|
6009
7065
|
"../src/bitgo/utils/index.ts",
|
|
6010
7066
|
"../src/bitgo/utils/mpcutils.ts",
|
|
@@ -6080,33 +7136,11 @@
|
|
|
6080
7136
|
"../../utxo-lib/dist/src/bitgo/zcash/index.d.ts",
|
|
6081
7137
|
"../../utxo-lib/dist/src/bitgo/zcash/zcashtransaction.d.ts",
|
|
6082
7138
|
"../../utxo-lib/dist/src/bitgo/zcash/zcashtransactionbuilder.d.ts",
|
|
7139
|
+
"../../utxo-lib/dist/src/classify.d.ts",
|
|
6083
7140
|
"../../utxo-lib/dist/src/index.d.ts",
|
|
6084
7141
|
"../../utxo-lib/dist/src/networks.d.ts",
|
|
6085
|
-
"../../utxo-lib/
|
|
6086
|
-
"../../utxo-lib/
|
|
6087
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/classify.d.ts",
|
|
6088
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/crypto.d.ts",
|
|
6089
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/ecpair.d.ts",
|
|
6090
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/index.d.ts",
|
|
6091
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/networks.d.ts",
|
|
6092
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/payments/embed.d.ts",
|
|
6093
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/payments/index.d.ts",
|
|
6094
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/payments/p2ms.d.ts",
|
|
6095
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/payments/p2pk.d.ts",
|
|
6096
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/payments/p2pkh.d.ts",
|
|
6097
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/payments/p2sh.d.ts",
|
|
6098
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/payments/p2tr.d.ts",
|
|
6099
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/payments/p2tr_ns.d.ts",
|
|
6100
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/payments/p2wpkh.d.ts",
|
|
6101
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/payments/p2wsh.d.ts",
|
|
6102
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/psbt.d.ts",
|
|
6103
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/schnorrbip340.d.ts",
|
|
6104
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/script.d.ts",
|
|
6105
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/script_number.d.ts",
|
|
6106
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/script_signature.d.ts",
|
|
6107
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/taproot.d.ts",
|
|
6108
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/transaction.d.ts",
|
|
6109
|
-
"../../utxo-lib/node_modules/bitcoinjs-lib/types/transaction_builder.d.ts",
|
|
7142
|
+
"../../utxo-lib/dist/src/noble_ecc.d.ts",
|
|
7143
|
+
"../../utxo-lib/dist/src/transaction_builder.d.ts",
|
|
6110
7144
|
"../../../node_modules/@noble/secp256k1/lib/index.d.ts",
|
|
6111
7145
|
"../../../node_modules/@stablelib/hex/lib/hex.d.ts",
|
|
6112
7146
|
"../../../node_modules/@types/archy/index.d.ts",
|
|
@@ -6142,6 +7176,7 @@
|
|
|
6142
7176
|
"../../../node_modules/@types/jasmine/index.d.ts",
|
|
6143
7177
|
"../../../node_modules/@types/json-schema/index.d.ts",
|
|
6144
7178
|
"../../../node_modules/@types/json5/index.d.ts",
|
|
7179
|
+
"../../../node_modules/@types/keccak/index.d.ts",
|
|
6145
7180
|
"../../../node_modules/@types/lodash/common/array.d.ts",
|
|
6146
7181
|
"../../../node_modules/@types/lodash/common/collection.d.ts",
|
|
6147
7182
|
"../../../node_modules/@types/lodash/common/common.d.ts",
|
|
@@ -6158,6 +7193,7 @@
|
|
|
6158
7193
|
"../../../node_modules/@types/long/index.d.ts",
|
|
6159
7194
|
"../../../node_modules/@types/mime-types/index.d.ts",
|
|
6160
7195
|
"../../../node_modules/@types/mime/index.d.ts",
|
|
7196
|
+
"../../../node_modules/@types/mime/mime.d.ts",
|
|
6161
7197
|
"../../../node_modules/@types/minimatch/index.d.ts",
|
|
6162
7198
|
"../../../node_modules/@types/minimist/index.d.ts",
|
|
6163
7199
|
"../../../node_modules/@types/mocha/index.d.ts",
|
|
@@ -6261,39 +7297,43 @@
|
|
|
6261
7297
|
"../../../node_modules/@types/yauzl/index.d.ts",
|
|
6262
7298
|
"../../../node_modules/anymatch/index.d.ts",
|
|
6263
7299
|
"../../../node_modules/base-x/src/index.d.ts",
|
|
7300
|
+
"../../../node_modules/bech32/dist/index.d.ts",
|
|
6264
7301
|
"../../../node_modules/bignumber.js/bignumber.d.ts",
|
|
6265
7302
|
"../../../node_modules/bip174/src/lib/interfaces.d.ts",
|
|
6266
7303
|
"../../../node_modules/bip174/src/lib/psbt.d.ts",
|
|
6267
7304
|
"../../../node_modules/bip32/types/bip32.d.ts",
|
|
6268
7305
|
"../../../node_modules/bip32/types/index.d.ts",
|
|
6269
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
6270
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
6271
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
6272
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
6273
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
6274
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
6275
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
6276
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
6277
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
6278
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
6279
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
6280
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
6281
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
6282
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
6283
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
6284
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
6285
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
6286
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
6287
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
6288
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
6289
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
6290
|
-
"../../../node_modules/bitcoinjs-lib/
|
|
6291
|
-
"../../../node_modules/bitcoinjs-lib/types
|
|
6292
|
-
"../../../node_modules/bitcoinjs-lib/types/transaction.d.ts",
|
|
6293
|
-
"../../../node_modules/bitcoinjs-lib/types/transaction_builder.d.ts",
|
|
7306
|
+
"../../../node_modules/bitcoinjs-lib/src/address.d.ts",
|
|
7307
|
+
"../../../node_modules/bitcoinjs-lib/src/block.d.ts",
|
|
7308
|
+
"../../../node_modules/bitcoinjs-lib/src/crypto.d.ts",
|
|
7309
|
+
"../../../node_modules/bitcoinjs-lib/src/index.d.ts",
|
|
7310
|
+
"../../../node_modules/bitcoinjs-lib/src/networks.d.ts",
|
|
7311
|
+
"../../../node_modules/bitcoinjs-lib/src/ops.d.ts",
|
|
7312
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/embed.d.ts",
|
|
7313
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/index.d.ts",
|
|
7314
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/p2ms.d.ts",
|
|
7315
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/p2pk.d.ts",
|
|
7316
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/p2pkh.d.ts",
|
|
7317
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/p2sh.d.ts",
|
|
7318
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/p2tr.d.ts",
|
|
7319
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/p2tr_ns.d.ts",
|
|
7320
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/p2wpkh.d.ts",
|
|
7321
|
+
"../../../node_modules/bitcoinjs-lib/src/payments/p2wsh.d.ts",
|
|
7322
|
+
"../../../node_modules/bitcoinjs-lib/src/psbt.d.ts",
|
|
7323
|
+
"../../../node_modules/bitcoinjs-lib/src/script.d.ts",
|
|
7324
|
+
"../../../node_modules/bitcoinjs-lib/src/script_number.d.ts",
|
|
7325
|
+
"../../../node_modules/bitcoinjs-lib/src/script_signature.d.ts",
|
|
7326
|
+
"../../../node_modules/bitcoinjs-lib/src/taproot.d.ts",
|
|
7327
|
+
"../../../node_modules/bitcoinjs-lib/src/transaction.d.ts",
|
|
7328
|
+
"../../../node_modules/bitcoinjs-lib/src/types.d.ts",
|
|
6294
7329
|
"../../../node_modules/bitcoinjs-message/index.d.ts",
|
|
7330
|
+
"../../../node_modules/bolt11/node_modules/@types/bn.js/index.d.ts",
|
|
7331
|
+
"../../../node_modules/bolt11/payreq.d.ts",
|
|
6295
7332
|
"../../../node_modules/buffer/index.d.ts",
|
|
6296
7333
|
"../../../node_modules/csstype/index.d.ts",
|
|
7334
|
+
"../../../node_modules/ecpair/src/ecpair.d.ts",
|
|
7335
|
+
"../../../node_modules/ecpair/src/index.d.ts",
|
|
7336
|
+
"../../../node_modules/ecpair/src/networks.d.ts",
|
|
6297
7337
|
"../../../node_modules/ethereumjs-util/dist/account.d.ts",
|
|
6298
7338
|
"../../../node_modules/ethereumjs-util/dist/address.d.ts",
|
|
6299
7339
|
"../../../node_modules/ethereumjs-util/dist/bytes.d.ts",
|