@bitgo/sdk-api 1.1.0-rc.11 → 1.1.0-rc.12

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 CHANGED
@@ -3,6 +3,14 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [1.1.0-rc.12](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.1.0-rc.11...@bitgo/sdk-api@1.1.0-rc.12) (2022-06-13)
7
+
8
+ **Note:** Version bump only for package @bitgo/sdk-api
9
+
10
+
11
+
12
+
13
+
6
14
  # [1.1.0-rc.11](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.1.0-rc.10...@bitgo/sdk-api@1.1.0-rc.11) (2022-06-10)
7
15
 
8
16
 
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bitgo/sdk-api",
3
- "version": "1.1.0-rc.11",
3
+ "version": "1.1.0-rc.12",
4
4
  "description": "REST wrapper for BitGoJS",
5
5
  "main": "./dist/src/index.js",
6
6
  "web": "./dist/web/main.js",
@@ -39,9 +39,9 @@
39
39
  ]
40
40
  },
41
41
  "dependencies": {
42
- "@bitgo/sdk-core": "^1.1.0-rc.8",
42
+ "@bitgo/sdk-core": "^1.1.0-rc.9",
43
43
  "@bitgo/sjcl": "^1.0.1-rc.3",
44
- "@bitgo/utxo-lib": "^2.3.0-rc.6",
44
+ "@bitgo/utxo-lib": "^2.3.0-rc.7",
45
45
  "@types/superagent": "4.1.15",
46
46
  "bip32": "^2.0.6",
47
47
  "bitcoinjs-message": "^2.0.0",
@@ -63,5 +63,5 @@
63
63
  "webpack": "5.66.0",
64
64
  "webpack-cli": "4.9.1"
65
65
  },
66
- "gitHead": "ba8cd5df9db7252eb16c73483d999f043dcbd372"
66
+ "gitHead": "69940d6c1d879bfb143720c1b4f5754627b83175"
67
67
  }
@@ -0,0 +1,24 @@
1
+ /**
2
+ * @prettier
3
+ */
4
+ /**
5
+ * BitGoJS includes some custom hand-rolled bip32 derivation logic in `bitcoin.ts`, which sadly
6
+ * has numerous bugs.
7
+ *
8
+ * One of the effects is that the methods accept invalid bip32 paths:
9
+ * - the `m` prefix is ignored ('m/0' === '0')
10
+ * - path components that cannot be parsed as base-10 numbers are mapped to `0` ('0/x' === '0/0')
11
+ * - path components with trailing characters after numerals are accepted, trailing characters
12
+ * are ignored ('1x' === '1')
13
+ *
14
+ * This probably does not cover everything but it should cover most bugs encountered in our code.
15
+ *
16
+ * This method attempts to convert a "legacy path", which may be invalid, to a standard bip32 path:
17
+ * meaning the result should be equivalent to the input path when passed to either our custom
18
+ * derivation log or when passed to a standard bip32 library.
19
+ *
20
+ * @param path - legacy path
21
+ * @return string - somewhat sanitized path that can be passed to standard bip32 libraries
22
+ */
23
+ export declare function sanitizeLegacyPath(path: string): string;
24
+ //# sourceMappingURL=bip32path.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"bip32path.d.ts","sourceRoot":"","sources":["../../src/bip32path.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH;;;;;;;;;;;;;;;;;;GAkBG;AACH,wBAAgB,kBAAkB,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,CAkBvD"}
@@ -0,0 +1,45 @@
1
+ "use strict";
2
+ /**
3
+ * @prettier
4
+ */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.sanitizeLegacyPath = void 0;
7
+ /**
8
+ * BitGoJS includes some custom hand-rolled bip32 derivation logic in `bitcoin.ts`, which sadly
9
+ * has numerous bugs.
10
+ *
11
+ * One of the effects is that the methods accept invalid bip32 paths:
12
+ * - the `m` prefix is ignored ('m/0' === '0')
13
+ * - path components that cannot be parsed as base-10 numbers are mapped to `0` ('0/x' === '0/0')
14
+ * - path components with trailing characters after numerals are accepted, trailing characters
15
+ * are ignored ('1x' === '1')
16
+ *
17
+ * This probably does not cover everything but it should cover most bugs encountered in our code.
18
+ *
19
+ * This method attempts to convert a "legacy path", which may be invalid, to a standard bip32 path:
20
+ * meaning the result should be equivalent to the input path when passed to either our custom
21
+ * derivation log or when passed to a standard bip32 library.
22
+ *
23
+ * @param path - legacy path
24
+ * @return string - somewhat sanitized path that can be passed to standard bip32 libraries
25
+ */
26
+ function sanitizeLegacyPath(path) {
27
+ const parts = path
28
+ .split('/')
29
+ .filter((p) => p !== '')
30
+ .filter((p, i) => i !== 0 || p !== 'm')
31
+ .map((p) => {
32
+ const hardened = p.slice(-1) === "'";
33
+ const v = parseInt(p.slice(0, hardened ? -1 : undefined), 10);
34
+ if (Number.isNaN(v)) {
35
+ return '0';
36
+ }
37
+ return String(v) + (hardened ? "'" : '');
38
+ });
39
+ if (parts.length === 0) {
40
+ throw new Error(`empty path`);
41
+ }
42
+ return parts.join('/');
43
+ }
44
+ exports.sanitizeLegacyPath = sanitizeLegacyPath;
45
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYmlwMzJwYXRoLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vc3JjL2JpcDMycGF0aC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUE7O0dBRUc7OztBQUVIOzs7Ozs7Ozs7Ozs7Ozs7Ozs7R0FrQkc7QUFDSCxTQUFnQixrQkFBa0IsQ0FBQyxJQUFZO0lBQzdDLE1BQU0sS0FBSyxHQUFhLElBQUk7U0FDekIsS0FBSyxDQUFDLEdBQUcsQ0FBQztTQUNWLE1BQU0sQ0FBQyxDQUFDLENBQUMsRUFBRSxFQUFFLENBQUMsQ0FBQyxLQUFLLEVBQUUsQ0FBQztTQUN2QixNQUFNLENBQUMsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxFQUFFLEVBQUUsQ0FBQyxDQUFDLEtBQUssQ0FBQyxJQUFJLENBQUMsS0FBSyxHQUFHLENBQUM7U0FDdEMsR0FBRyxDQUFDLENBQUMsQ0FBQyxFQUFFLEVBQUU7UUFDVCxNQUFNLFFBQVEsR0FBRyxDQUFDLENBQUMsS0FBSyxDQUFDLENBQUMsQ0FBQyxDQUFDLEtBQUssR0FBRyxDQUFDO1FBQ3JDLE1BQU0sQ0FBQyxHQUFHLFFBQVEsQ0FBQyxDQUFDLENBQUMsS0FBSyxDQUFDLENBQUMsRUFBRSxRQUFRLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLENBQUMsQ0FBQyxTQUFTLENBQUMsRUFBRSxFQUFFLENBQUMsQ0FBQztRQUM5RCxJQUFJLE1BQU0sQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFDLEVBQUU7WUFDbkIsT0FBTyxHQUFHLENBQUM7U0FDWjtRQUNELE9BQU8sTUFBTSxDQUFDLENBQUMsQ0FBQyxHQUFHLENBQUMsUUFBUSxDQUFDLENBQUMsQ0FBQyxHQUFHLENBQUMsQ0FBQyxDQUFDLEVBQUUsQ0FBQyxDQUFDO0lBQzNDLENBQUMsQ0FBQyxDQUFDO0lBRUwsSUFBSSxLQUFLLENBQUMsTUFBTSxLQUFLLENBQUMsRUFBRTtRQUN0QixNQUFNLElBQUksS0FBSyxDQUFDLFlBQVksQ0FBQyxDQUFDO0tBQy9CO0lBQ0QsT0FBTyxLQUFLLENBQUMsSUFBSSxDQUFDLEdBQUcsQ0FBQyxDQUFDO0FBQ3pCLENBQUM7QUFsQkQsZ0RBa0JDIiwic291cmNlc0NvbnRlbnQiOlsiLyoqXG4gKiBAcHJldHRpZXJcbiAqL1xuXG4vKipcbiAqIEJpdEdvSlMgaW5jbHVkZXMgc29tZSBjdXN0b20gaGFuZC1yb2xsZWQgYmlwMzIgZGVyaXZhdGlvbiBsb2dpYyBpbiBgYml0Y29pbi50c2AsIHdoaWNoIHNhZGx5XG4gKiBoYXMgbnVtZXJvdXMgYnVncy5cbiAqXG4gKiBPbmUgb2YgdGhlIGVmZmVjdHMgaXMgdGhhdCB0aGUgbWV0aG9kcyBhY2NlcHQgaW52YWxpZCBiaXAzMiBwYXRoczpcbiAqIC0gdGhlIGBtYCBwcmVmaXggaXMgaWdub3JlZCAoJ20vMCcgPT09ICcwJylcbiAqIC0gcGF0aCBjb21wb25lbnRzIHRoYXQgY2Fubm90IGJlIHBhcnNlZCBhcyBiYXNlLTEwIG51bWJlcnMgYXJlIG1hcHBlZCB0byBgMGAgKCcwL3gnID09PSAnMC8wJylcbiAqIC0gcGF0aCBjb21wb25lbnRzIHdpdGggdHJhaWxpbmcgY2hhcmFjdGVycyBhZnRlciBudW1lcmFscyBhcmUgYWNjZXB0ZWQsIHRyYWlsaW5nIGNoYXJhY3RlcnNcbiAqICAgYXJlIGlnbm9yZWQgKCcxeCcgPT09ICcxJylcbiAqXG4gKiBUaGlzIHByb2JhYmx5IGRvZXMgbm90IGNvdmVyIGV2ZXJ5dGhpbmcgYnV0IGl0IHNob3VsZCBjb3ZlciBtb3N0IGJ1Z3MgZW5jb3VudGVyZWQgaW4gb3VyIGNvZGUuXG4gKlxuICogVGhpcyBtZXRob2QgYXR0ZW1wdHMgdG8gY29udmVydCBhIFwibGVnYWN5IHBhdGhcIiwgd2hpY2ggbWF5IGJlIGludmFsaWQsIHRvIGEgc3RhbmRhcmQgYmlwMzIgcGF0aDpcbiAqIG1lYW5pbmcgdGhlIHJlc3VsdCBzaG91bGQgYmUgZXF1aXZhbGVudCB0byB0aGUgaW5wdXQgcGF0aCB3aGVuIHBhc3NlZCB0byBlaXRoZXIgb3VyIGN1c3RvbVxuICogZGVyaXZhdGlvbiBsb2cgb3Igd2hlbiBwYXNzZWQgdG8gYSBzdGFuZGFyZCBiaXAzMiBsaWJyYXJ5LlxuICpcbiAqIEBwYXJhbSBwYXRoIC0gbGVnYWN5IHBhdGhcbiAqIEByZXR1cm4gc3RyaW5nIC0gc29tZXdoYXQgc2FuaXRpemVkIHBhdGggdGhhdCBjYW4gYmUgcGFzc2VkIHRvIHN0YW5kYXJkIGJpcDMyIGxpYnJhcmllc1xuICovXG5leHBvcnQgZnVuY3Rpb24gc2FuaXRpemVMZWdhY3lQYXRoKHBhdGg6IHN0cmluZyk6IHN0cmluZyB7XG4gIGNvbnN0IHBhcnRzOiBzdHJpbmdbXSA9IHBhdGhcbiAgICAuc3BsaXQoJy8nKVxuICAgIC5maWx0ZXIoKHApID0+IHAgIT09ICcnKVxuICAgIC5maWx0ZXIoKHAsIGkpID0+IGkgIT09IDAgfHwgcCAhPT0gJ20nKVxuICAgIC5tYXAoKHApID0+IHtcbiAgICAgIGNvbnN0IGhhcmRlbmVkID0gcC5zbGljZSgtMSkgPT09IFwiJ1wiO1xuICAgICAgY29uc3QgdiA9IHBhcnNlSW50KHAuc2xpY2UoMCwgaGFyZGVuZWQgPyAtMSA6IHVuZGVmaW5lZCksIDEwKTtcbiAgICAgIGlmIChOdW1iZXIuaXNOYU4odikpIHtcbiAgICAgICAgcmV0dXJuICcwJztcbiAgICAgIH1cbiAgICAgIHJldHVybiBTdHJpbmcodikgKyAoaGFyZGVuZWQgPyBcIidcIiA6ICcnKTtcbiAgICB9KTtcblxuICBpZiAocGFydHMubGVuZ3RoID09PSAwKSB7XG4gICAgdGhyb3cgbmV3IEVycm9yKGBlbXB0eSBwYXRoYCk7XG4gIH1cbiAgcmV0dXJuIHBhcnRzLmpvaW4oJy8nKTtcbn1cbiJdfQ==
@@ -577,8 +577,8 @@
577
577
  "affectsGlobalScope": false
578
578
  },
579
579
  "../../statics/dist/src/account.d.ts": {
580
- "version": "379d2251821c3750a57c9b266c7111fd0899d251dbe3e7c26de1c413baabb56e",
581
- "signature": "379d2251821c3750a57c9b266c7111fd0899d251dbe3e7c26de1c413baabb56e",
580
+ "version": "5b060d934531c822539a1414a39bc71221fad4977bac873c627106f3d3932c14",
581
+ "signature": "5b060d934531c822539a1414a39bc71221fad4977bac873c627106f3d3932c14",
582
582
  "affectsGlobalScope": false
583
583
  },
584
584
  "../../statics/dist/src/index.d.ts": {
@@ -736,11 +736,31 @@
736
736
  "signature": "3989b1217696c364f0515520fdb66396423c4a72ec38395e415b6e2909cdac30",
737
737
  "affectsGlobalScope": false
738
738
  },
739
+ "../../utxo-lib/dist/src/addressformat.d.ts": {
740
+ "version": "a65546ad2f2624eb4cb1b91f2d65a1c8b36f23235f3218d890755fe122df37a8",
741
+ "signature": "a65546ad2f2624eb4cb1b91f2d65a1c8b36f23235f3218d890755fe122df37a8",
742
+ "affectsGlobalScope": false
743
+ },
744
+ "../../utxo-lib/dist/src/bitgo/bitcoincash/address.d.ts": {
745
+ "version": "fe89f6decc8896721129284b4e3b1189f5f42b9d16bed836873faeae101014b1",
746
+ "signature": "fe89f6decc8896721129284b4e3b1189f5f42b9d16bed836873faeae101014b1",
747
+ "affectsGlobalScope": false
748
+ },
749
+ "../../utxo-lib/dist/src/bitgo/bitcoincash/index.d.ts": {
750
+ "version": "b838405edd6c2e68b261abb25dcb55bd223a310541016208ee1b93ba179dfb64",
751
+ "signature": "b838405edd6c2e68b261abb25dcb55bd223a310541016208ee1b93ba179dfb64",
752
+ "affectsGlobalScope": false
753
+ },
739
754
  "../../utxo-lib/dist/src/bitgo/keyutil.d.ts": {
740
755
  "version": "45b32ec049b993b86438d72c69a89297edde3ec1ecf0fd25c22c39aec9e7ec32",
741
756
  "signature": "45b32ec049b993b86438d72c69a89297edde3ec1ecf0fd25c22c39aec9e7ec32",
742
757
  "affectsGlobalScope": false
743
758
  },
759
+ "../../utxo-lib/dist/src/bitgo/nonstandardhalfsigned.d.ts": {
760
+ "version": "770ba645782e35f9931fc9480d101c70071ff454c1e2cb44bbc5748acd970359",
761
+ "signature": "770ba645782e35f9931fc9480d101c70071ff454c1e2cb44bbc5748acd970359",
762
+ "affectsGlobalScope": false
763
+ },
744
764
  "../../utxo-lib/dist/src/bitgo/types.d.ts": {
745
765
  "version": "b75907349e7621c0af4b0725cd272038d086e879cb5db399e278c5b5ef7f9a7d",
746
766
  "signature": "b75907349e7621c0af4b0725cd272038d086e879cb5db399e278c5b5ef7f9a7d",
@@ -756,21 +776,31 @@
756
776
  "signature": "c80a3282e2f7468049fc54772a381ef4253ec271a07a4a1eb0207444611244b2",
757
777
  "affectsGlobalScope": false
758
778
  },
759
- "../../utxo-lib/dist/src/bitgo/nonstandardhalfsigned.d.ts": {
760
- "version": "770ba645782e35f9931fc9480d101c70071ff454c1e2cb44bbc5748acd970359",
761
- "signature": "770ba645782e35f9931fc9480d101c70071ff454c1e2cb44bbc5748acd970359",
762
- "affectsGlobalScope": false
763
- },
764
779
  "../../utxo-lib/dist/src/bitgo/utxotransaction.d.ts": {
765
780
  "version": "7d07e12a150bd9cc9b2b6b5cb19b617592765c7985f9ea44c190aa2ea4b13d6d",
766
781
  "signature": "7d07e12a150bd9cc9b2b6b5cb19b617592765c7985f9ea44c190aa2ea4b13d6d",
767
782
  "affectsGlobalScope": false
768
783
  },
784
+ "../../utxo-lib/dist/src/bitgo/dash/dashtransaction.d.ts": {
785
+ "version": "94c380303f397e6b7b755a34587e5c1fb9cbd2cab71c18f2eb92eb03dcfdda51",
786
+ "signature": "94c380303f397e6b7b755a34587e5c1fb9cbd2cab71c18f2eb92eb03dcfdda51",
787
+ "affectsGlobalScope": false
788
+ },
769
789
  "../../utxo-lib/dist/src/bitgo/utxotransactionbuilder.d.ts": {
770
790
  "version": "bdbc1fe8fed03ae6acf7274328e83816c8aba843b7734990c493ec6d452f375b",
771
791
  "signature": "bdbc1fe8fed03ae6acf7274328e83816c8aba843b7734990c493ec6d452f375b",
772
792
  "affectsGlobalScope": false
773
793
  },
794
+ "../../utxo-lib/dist/src/bitgo/dash/dashtransactionbuilder.d.ts": {
795
+ "version": "783452fbde062c5f5659db5e53f728e3fec8c3fe2883c846771ad8c3b8d54b58",
796
+ "signature": "783452fbde062c5f5659db5e53f728e3fec8c3fe2883c846771ad8c3b8d54b58",
797
+ "affectsGlobalScope": false
798
+ },
799
+ "../../utxo-lib/dist/src/bitgo/dash/index.d.ts": {
800
+ "version": "574eb3378daa80e1fdeb1548684419b9953ffc12df979e7cc2bfb831f5fd40b9",
801
+ "signature": "574eb3378daa80e1fdeb1548684419b9953ffc12df979e7cc2bfb831f5fd40b9",
802
+ "affectsGlobalScope": false
803
+ },
774
804
  "../../utxo-lib/dist/src/bitgo/signature.d.ts": {
775
805
  "version": "337a230c1ee72b89fadd200d272073004103a902a1325e224eaaf913493ffa07",
776
806
  "signature": "337a230c1ee72b89fadd200d272073004103a902a1325e224eaaf913493ffa07",
@@ -786,36 +816,6 @@
786
816
  "signature": "c6d3f3f9e408cfa906a40ff74613d18ad3d1067e1ab7c5503164c6304d7c29ca",
787
817
  "affectsGlobalScope": false
788
818
  },
789
- "../../utxo-lib/dist/src/bitgo/zcash/zcashtransaction.d.ts": {
790
- "version": "11610e3b4303ccfa245e74447ea6821de40ce9691f2a653c1424a4b7c2bdd64c",
791
- "signature": "11610e3b4303ccfa245e74447ea6821de40ce9691f2a653c1424a4b7c2bdd64c",
792
- "affectsGlobalScope": false
793
- },
794
- "../../utxo-lib/dist/src/bitgo/zcash/zcashtransactionbuilder.d.ts": {
795
- "version": "5ab36158c4f53de85c28c91d33cc78f66248b2ce09456404b647ed822eb211fa",
796
- "signature": "5ab36158c4f53de85c28c91d33cc78f66248b2ce09456404b647ed822eb211fa",
797
- "affectsGlobalScope": false
798
- },
799
- "../../utxo-lib/dist/src/bitgo/zcash/index.d.ts": {
800
- "version": "fd88385eddbc39f5ed5e075ba79916a499d1f54c3af35f673091c7560fca2d73",
801
- "signature": "fd88385eddbc39f5ed5e075ba79916a499d1f54c3af35f673091c7560fca2d73",
802
- "affectsGlobalScope": false
803
- },
804
- "../../utxo-lib/dist/src/bitgo/dash/dashtransaction.d.ts": {
805
- "version": "94c380303f397e6b7b755a34587e5c1fb9cbd2cab71c18f2eb92eb03dcfdda51",
806
- "signature": "94c380303f397e6b7b755a34587e5c1fb9cbd2cab71c18f2eb92eb03dcfdda51",
807
- "affectsGlobalScope": false
808
- },
809
- "../../utxo-lib/dist/src/bitgo/dash/dashtransactionbuilder.d.ts": {
810
- "version": "783452fbde062c5f5659db5e53f728e3fec8c3fe2883c846771ad8c3b8d54b58",
811
- "signature": "783452fbde062c5f5659db5e53f728e3fec8c3fe2883c846771ad8c3b8d54b58",
812
- "affectsGlobalScope": false
813
- },
814
- "../../utxo-lib/dist/src/bitgo/dash/index.d.ts": {
815
- "version": "574eb3378daa80e1fdeb1548684419b9953ffc12df979e7cc2bfb831f5fd40b9",
816
- "signature": "574eb3378daa80e1fdeb1548684419b9953ffc12df979e7cc2bfb831f5fd40b9",
817
- "affectsGlobalScope": false
818
- },
819
819
  "../../utxo-lib/dist/src/bitgo/wallet/walletkeys.d.ts": {
820
820
  "version": "0d8d863dc5109215a9abfd16b17d7425771b10e876c14dac2826279e184d6cc2",
821
821
  "signature": "0d8d863dc5109215a9abfd16b17d7425771b10e876c14dac2826279e184d6cc2",
@@ -841,9 +841,24 @@
841
841
  "signature": "6cb001d134345712b1ab8ee294dc16685d1f5b248802a7223b7e47e4332655fc",
842
842
  "affectsGlobalScope": false
843
843
  },
844
+ "../../utxo-lib/dist/src/bitgo/zcash/zcashtransaction.d.ts": {
845
+ "version": "11610e3b4303ccfa245e74447ea6821de40ce9691f2a653c1424a4b7c2bdd64c",
846
+ "signature": "11610e3b4303ccfa245e74447ea6821de40ce9691f2a653c1424a4b7c2bdd64c",
847
+ "affectsGlobalScope": false
848
+ },
849
+ "../../utxo-lib/dist/src/bitgo/zcash/zcashtransactionbuilder.d.ts": {
850
+ "version": "5ab36158c4f53de85c28c91d33cc78f66248b2ce09456404b647ed822eb211fa",
851
+ "signature": "5ab36158c4f53de85c28c91d33cc78f66248b2ce09456404b647ed822eb211fa",
852
+ "affectsGlobalScope": false
853
+ },
854
+ "../../utxo-lib/dist/src/bitgo/zcash/index.d.ts": {
855
+ "version": "fd88385eddbc39f5ed5e075ba79916a499d1f54c3af35f673091c7560fca2d73",
856
+ "signature": "fd88385eddbc39f5ed5e075ba79916a499d1f54c3af35f673091c7560fca2d73",
857
+ "affectsGlobalScope": false
858
+ },
844
859
  "../../utxo-lib/dist/src/bitgo/index.d.ts": {
845
- "version": "e64cd28ea26ff530e8595d1ff8eecec5d42ab93df1c2ae1ba9f1a930f668a6a1",
846
- "signature": "e64cd28ea26ff530e8595d1ff8eecec5d42ab93df1c2ae1ba9f1a930f668a6a1",
860
+ "version": "8a2d735726cbfe144441cb7784c99088b278a98a3c323012dbe0e53d17fe3104",
861
+ "signature": "8a2d735726cbfe144441cb7784c99088b278a98a3c323012dbe0e53d17fe3104",
847
862
  "affectsGlobalScope": false
848
863
  },
849
864
  "../../utxo-lib/dist/src/address.d.ts": {
@@ -851,11 +866,6 @@
851
866
  "signature": "35b4034b25c8d254cff12177c18f5112a878d9fec4b2149ed677bff381b2819d",
852
867
  "affectsGlobalScope": false
853
868
  },
854
- "../../utxo-lib/dist/src/addressformat.d.ts": {
855
- "version": "a65546ad2f2624eb4cb1b91f2d65a1c8b36f23235f3218d890755fe122df37a8",
856
- "signature": "a65546ad2f2624eb4cb1b91f2d65a1c8b36f23235f3218d890755fe122df37a8",
857
- "affectsGlobalScope": false
858
- },
859
869
  "../../utxo-lib/dist/src/index.d.ts": {
860
870
  "version": "e5fcb871ede087c010863ffe1368f2d08dcf222bdfc56e70df740444b8fc8112",
861
871
  "signature": "e5fcb871ede087c010863ffe1368f2d08dcf222bdfc56e70df740444b8fc8112",
@@ -891,49 +901,14 @@
891
901
  "signature": "f4508d538311f1e1ce71c921186102cf8fe24fc72bb1799b95ac5a0c342a9b95",
892
902
  "affectsGlobalScope": false
893
903
  },
894
- "../../sdk-core/dist/src/account-lib/mpc/shamir.d.ts": {
895
- "version": "81e88ac4961408d804f04b8af3d7c1a2a72732ad2d5266a6ca21d698ca16c487",
896
- "signature": "81e88ac4961408d804f04b8af3d7c1a2a72732ad2d5266a6ca21d698ca16c487",
897
- "affectsGlobalScope": false
898
- },
899
904
  "../../sdk-core/dist/src/account-lib/mpc/hdtree.d.ts": {
900
905
  "version": "19c9b69cd472352f54269a2c15d8b275b2332e1234424aed7c0d7371d604b3c9",
901
906
  "signature": "19c9b69cd472352f54269a2c15d8b275b2332e1234424aed7c0d7371d604b3c9",
902
907
  "affectsGlobalScope": false
903
908
  },
904
- "../../sdk-core/dist/src/account-lib/mpc/tss/eddsa/types.d.ts": {
905
- "version": "8f37a990435c15a00c8232df0c5d40401e3b004fe3468f06f28ecff5f8e7dac3",
906
- "signature": "8f37a990435c15a00c8232df0c5d40401e3b004fe3468f06f28ecff5f8e7dac3",
907
- "affectsGlobalScope": false
908
- },
909
- "../../sdk-core/dist/src/account-lib/mpc/tss/eddsa/eddsa.d.ts": {
910
- "version": "d386ce9b0e4b162f8524a39245a101dde0c7d9541a1c5e214f300fad7e0fc32e",
911
- "signature": "d386ce9b0e4b162f8524a39245a101dde0c7d9541a1c5e214f300fad7e0fc32e",
912
- "affectsGlobalScope": false
913
- },
914
- "../../sdk-core/dist/src/account-lib/mpc/tss/eddsa/index.d.ts": {
915
- "version": "573922398e041604c57e5ebbdec883940b41d085a45a369db565e01b9397731a",
916
- "signature": "573922398e041604c57e5ebbdec883940b41d085a45a369db565e01b9397731a",
917
- "affectsGlobalScope": false
918
- },
919
- "../../sdk-core/dist/src/account-lib/mpc/tss/ecdsa/types.d.ts": {
920
- "version": "f3111dd6889ac5c78104afc5b8b9bc401692db48317bc42e6edb36677abaa521",
921
- "signature": "f3111dd6889ac5c78104afc5b8b9bc401692db48317bc42e6edb36677abaa521",
922
- "affectsGlobalScope": false
923
- },
924
- "../../sdk-core/dist/src/account-lib/mpc/tss/ecdsa/ecdsa.d.ts": {
925
- "version": "94c458b75f9e5d03e3b73cbdddc4a7603b192d93e4edccf9fa755dbd33d97e2f",
926
- "signature": "94c458b75f9e5d03e3b73cbdddc4a7603b192d93e4edccf9fa755dbd33d97e2f",
927
- "affectsGlobalScope": false
928
- },
929
- "../../sdk-core/dist/src/account-lib/mpc/tss/ecdsa/index.d.ts": {
930
- "version": "e50b04036bf89a885314725ac3cc9e6153387c5df5128c8031d0cea5c9a96dbe",
931
- "signature": "e50b04036bf89a885314725ac3cc9e6153387c5df5128c8031d0cea5c9a96dbe",
932
- "affectsGlobalScope": false
933
- },
934
- "../../sdk-core/dist/src/account-lib/mpc/tss/index.d.ts": {
935
- "version": "5617e56b8eafbb87ab4adda6a05f12b362c0e69de7910909452908b9d159588b",
936
- "signature": "5617e56b8eafbb87ab4adda6a05f12b362c0e69de7910909452908b9d159588b",
909
+ "../../sdk-core/dist/src/account-lib/mpc/tss.d.ts": {
910
+ "version": "259d88134dd15af9fe45ebb0ad5532285bacf495c44154b11a7bb638fbd69c51",
911
+ "signature": "259d88134dd15af9fe45ebb0ad5532285bacf495c44154b11a7bb638fbd69c51",
937
912
  "affectsGlobalScope": false
938
913
  },
939
914
  "../../sdk-core/dist/src/api/bip32path.d.ts": {
@@ -1472,7 +1447,7 @@
1472
1447
  "affectsGlobalScope": false
1473
1448
  },
1474
1449
  "../package.json": {
1475
- "version": "cfce534ad24b121491e6e0322f6a7f5c614c96620ad16a6be6414fab3a61267c",
1450
+ "version": "1c74a5913776e374b6c38949e4518d986907e8473df0182ec4720402bd2f4f9d",
1476
1451
  "affectsGlobalScope": true
1477
1452
  },
1478
1453
  "../src/encrypt.ts": {
@@ -2211,48 +2186,13 @@
2211
2186
  "../../../node_modules/@types/node/util.d.ts",
2212
2187
  "../../sdk-core/dist/src/account-lib/mpc/curves/index.d.ts",
2213
2188
  "../../sdk-core/dist/src/account-lib/mpc/hdtree.d.ts",
2214
- "../../sdk-core/dist/src/account-lib/mpc/tss/index.d.ts",
2189
+ "../../sdk-core/dist/src/account-lib/mpc/tss.d.ts",
2215
2190
  "../../sdk-core/dist/src/account-lib/mpc/util.d.ts"
2216
2191
  ],
2217
- "../../sdk-core/dist/src/account-lib/mpc/shamir.d.ts": [
2218
- "../../../node_modules/@types/node/util.d.ts",
2219
- "../../sdk-core/dist/src/account-lib/mpc/curves/index.d.ts"
2220
- ],
2221
- "../../sdk-core/dist/src/account-lib/mpc/tss/ecdsa/ecdsa.d.ts": [
2222
- "../../../node_modules/@types/node/util.d.ts",
2223
- "../../sdk-core/dist/src/account-lib/mpc/curves/index.d.ts",
2224
- "../../sdk-core/dist/src/account-lib/mpc/shamir.d.ts",
2225
- "../../sdk-core/dist/src/account-lib/mpc/tss/ecdsa/types.d.ts"
2226
- ],
2227
- "../../sdk-core/dist/src/account-lib/mpc/tss/ecdsa/index.d.ts": [
2228
- "../../../node_modules/@types/node/util.d.ts",
2229
- "../../sdk-core/dist/src/account-lib/mpc/tss/ecdsa/ecdsa.d.ts",
2230
- "../../sdk-core/dist/src/account-lib/mpc/tss/ecdsa/types.d.ts"
2231
- ],
2232
- "../../sdk-core/dist/src/account-lib/mpc/tss/ecdsa/types.d.ts": [
2233
- "../../../node_modules/@types/node/util.d.ts"
2234
- ],
2235
- "../../sdk-core/dist/src/account-lib/mpc/tss/eddsa/eddsa.d.ts": [
2192
+ "../../sdk-core/dist/src/account-lib/mpc/tss.d.ts": [
2236
2193
  "../../../node_modules/@types/node/index.d.ts",
2237
2194
  "../../../node_modules/@types/node/util.d.ts",
2238
- "../../sdk-core/dist/src/account-lib/mpc/curves/index.d.ts",
2239
- "../../sdk-core/dist/src/account-lib/mpc/hdtree.d.ts",
2240
- "../../sdk-core/dist/src/account-lib/mpc/shamir.d.ts",
2241
- "../../sdk-core/dist/src/account-lib/mpc/tss/eddsa/types.d.ts"
2242
- ],
2243
- "../../sdk-core/dist/src/account-lib/mpc/tss/eddsa/index.d.ts": [
2244
- "../../../node_modules/@types/node/util.d.ts",
2245
- "../../sdk-core/dist/src/account-lib/mpc/tss/eddsa/eddsa.d.ts",
2246
- "../../sdk-core/dist/src/account-lib/mpc/tss/eddsa/types.d.ts"
2247
- ],
2248
- "../../sdk-core/dist/src/account-lib/mpc/tss/eddsa/types.d.ts": [
2249
- "../../../node_modules/@types/node/util.d.ts"
2250
- ],
2251
- "../../sdk-core/dist/src/account-lib/mpc/tss/index.d.ts": [
2252
- "../../../node_modules/@types/node/util.d.ts",
2253
- "../../sdk-core/dist/src/account-lib/mpc/tss/ecdsa/index.d.ts",
2254
- "../../sdk-core/dist/src/account-lib/mpc/tss/eddsa/index.d.ts",
2255
- "../../sdk-core/dist/src/account-lib/mpc/tss/eddsa/types.d.ts"
2195
+ "../../sdk-core/dist/src/account-lib/mpc/hdtree.d.ts"
2256
2196
  ],
2257
2197
  "../../sdk-core/dist/src/account-lib/mpc/util.d.ts": [
2258
2198
  "../../../node_modules/@types/node/index.d.ts",
@@ -2593,7 +2533,7 @@
2593
2533
  "../../sdk-core/dist/src/bitgo/tss/eddsa/eddsa.d.ts": [
2594
2534
  "../../../node_modules/@types/node/index.d.ts",
2595
2535
  "../../../node_modules/@types/node/util.d.ts",
2596
- "../../sdk-core/dist/src/account-lib/mpc/tss/index.d.ts",
2536
+ "../../sdk-core/dist/src/account-lib/mpc/tss.d.ts",
2597
2537
  "../../sdk-core/dist/src/bitgo/bitgobase.d.ts",
2598
2538
  "../../sdk-core/dist/src/bitgo/tss/eddsa/types.d.ts",
2599
2539
  "../../sdk-core/dist/src/bitgo/utils/index.d.ts"
@@ -2605,7 +2545,7 @@
2605
2545
  ],
2606
2546
  "../../sdk-core/dist/src/bitgo/tss/eddsa/types.d.ts": [
2607
2547
  "../../../node_modules/@types/node/util.d.ts",
2608
- "../../sdk-core/dist/src/account-lib/mpc/tss/index.d.ts"
2548
+ "../../sdk-core/dist/src/account-lib/mpc/tss.d.ts"
2609
2549
  ],
2610
2550
  "../../sdk-core/dist/src/bitgo/tss/index.d.ts": [
2611
2551
  "../../../node_modules/@types/node/util.d.ts",
@@ -2670,7 +2610,7 @@
2670
2610
  "../../sdk-core/dist/src/bitgo/utils/tss/eddsa/eddsa.d.ts": [
2671
2611
  "../../../node_modules/@types/node/util.d.ts",
2672
2612
  "../../../node_modules/openpgp/openpgp.d.ts",
2673
- "../../sdk-core/dist/src/account-lib/mpc/tss/index.d.ts",
2613
+ "../../sdk-core/dist/src/account-lib/mpc/tss.d.ts",
2674
2614
  "../../sdk-core/dist/src/api/index.d.ts",
2675
2615
  "../../sdk-core/dist/src/bitgo/basecoin/index.d.ts",
2676
2616
  "../../sdk-core/dist/src/bitgo/bitgobase.d.ts",
@@ -2687,7 +2627,7 @@
2687
2627
  "../../sdk-core/dist/src/bitgo/utils/tss/eddsa/types.d.ts": [
2688
2628
  "../../../node_modules/@types/node/util.d.ts",
2689
2629
  "../../../node_modules/openpgp/openpgp.d.ts",
2690
- "../../sdk-core/dist/src/account-lib/mpc/tss/index.d.ts",
2630
+ "../../sdk-core/dist/src/account-lib/mpc/tss.d.ts",
2691
2631
  "../../sdk-core/dist/src/api/index.d.ts",
2692
2632
  "../../sdk-core/dist/src/bitgo/basecoin/index.d.ts",
2693
2633
  "../../sdk-core/dist/src/bitgo/keychain/index.d.ts",
@@ -2826,6 +2766,16 @@
2826
2766
  "../../../node_modules/@types/node/util.d.ts",
2827
2767
  "../../utxo-lib/dist/src/networks.d.ts"
2828
2768
  ],
2769
+ "../../utxo-lib/dist/src/bitgo/bitcoincash/address.d.ts": [
2770
+ "../../../node_modules/@types/node/index.d.ts",
2771
+ "../../../node_modules/@types/node/util.d.ts",
2772
+ "../../utxo-lib/dist/src/addressformat.d.ts",
2773
+ "../../utxo-lib/dist/src/networks.d.ts"
2774
+ ],
2775
+ "../../utxo-lib/dist/src/bitgo/bitcoincash/index.d.ts": [
2776
+ "../../../node_modules/@types/node/util.d.ts",
2777
+ "../../utxo-lib/dist/src/bitgo/bitcoincash/address.d.ts"
2778
+ ],
2829
2779
  "../../utxo-lib/dist/src/bitgo/dash/dashtransaction.d.ts": [
2830
2780
  "../../../node_modules/@types/node/index.d.ts",
2831
2781
  "../../../node_modules/@types/node/util.d.ts",
@@ -2847,6 +2797,7 @@
2847
2797
  ],
2848
2798
  "../../utxo-lib/dist/src/bitgo/index.d.ts": [
2849
2799
  "../../../node_modules/@types/node/util.d.ts",
2800
+ "../../utxo-lib/dist/src/bitgo/bitcoincash/index.d.ts",
2850
2801
  "../../utxo-lib/dist/src/bitgo/dash/index.d.ts",
2851
2802
  "../../utxo-lib/dist/src/bitgo/keyutil.d.ts",
2852
2803
  "../../utxo-lib/dist/src/bitgo/nonstandardhalfsigned.d.ts",
@@ -4432,48 +4383,13 @@
4432
4383
  "../../../node_modules/@types/node/util.d.ts",
4433
4384
  "../../sdk-core/dist/src/account-lib/mpc/curves/index.d.ts",
4434
4385
  "../../sdk-core/dist/src/account-lib/mpc/hdtree.d.ts",
4435
- "../../sdk-core/dist/src/account-lib/mpc/tss/index.d.ts",
4386
+ "../../sdk-core/dist/src/account-lib/mpc/tss.d.ts",
4436
4387
  "../../sdk-core/dist/src/account-lib/mpc/util.d.ts"
4437
4388
  ],
4438
- "../../sdk-core/dist/src/account-lib/mpc/shamir.d.ts": [
4439
- "../../../node_modules/@types/node/util.d.ts",
4440
- "../../sdk-core/dist/src/account-lib/mpc/curves/index.d.ts"
4441
- ],
4442
- "../../sdk-core/dist/src/account-lib/mpc/tss/ecdsa/ecdsa.d.ts": [
4443
- "../../../node_modules/@types/node/util.d.ts",
4444
- "../../sdk-core/dist/src/account-lib/mpc/curves/index.d.ts",
4445
- "../../sdk-core/dist/src/account-lib/mpc/shamir.d.ts",
4446
- "../../sdk-core/dist/src/account-lib/mpc/tss/ecdsa/types.d.ts"
4447
- ],
4448
- "../../sdk-core/dist/src/account-lib/mpc/tss/ecdsa/index.d.ts": [
4449
- "../../../node_modules/@types/node/util.d.ts",
4450
- "../../sdk-core/dist/src/account-lib/mpc/tss/ecdsa/ecdsa.d.ts",
4451
- "../../sdk-core/dist/src/account-lib/mpc/tss/ecdsa/types.d.ts"
4452
- ],
4453
- "../../sdk-core/dist/src/account-lib/mpc/tss/ecdsa/types.d.ts": [
4454
- "../../../node_modules/@types/node/util.d.ts"
4455
- ],
4456
- "../../sdk-core/dist/src/account-lib/mpc/tss/eddsa/eddsa.d.ts": [
4389
+ "../../sdk-core/dist/src/account-lib/mpc/tss.d.ts": [
4457
4390
  "../../../node_modules/@types/node/index.d.ts",
4458
4391
  "../../../node_modules/@types/node/util.d.ts",
4459
- "../../sdk-core/dist/src/account-lib/mpc/curves/index.d.ts",
4460
- "../../sdk-core/dist/src/account-lib/mpc/hdtree.d.ts",
4461
- "../../sdk-core/dist/src/account-lib/mpc/shamir.d.ts",
4462
- "../../sdk-core/dist/src/account-lib/mpc/tss/eddsa/types.d.ts"
4463
- ],
4464
- "../../sdk-core/dist/src/account-lib/mpc/tss/eddsa/index.d.ts": [
4465
- "../../../node_modules/@types/node/util.d.ts",
4466
- "../../sdk-core/dist/src/account-lib/mpc/tss/eddsa/eddsa.d.ts",
4467
- "../../sdk-core/dist/src/account-lib/mpc/tss/eddsa/types.d.ts"
4468
- ],
4469
- "../../sdk-core/dist/src/account-lib/mpc/tss/eddsa/types.d.ts": [
4470
- "../../../node_modules/@types/node/util.d.ts"
4471
- ],
4472
- "../../sdk-core/dist/src/account-lib/mpc/tss/index.d.ts": [
4473
- "../../../node_modules/@types/node/util.d.ts",
4474
- "../../sdk-core/dist/src/account-lib/mpc/tss/ecdsa/index.d.ts",
4475
- "../../sdk-core/dist/src/account-lib/mpc/tss/eddsa/index.d.ts",
4476
- "../../sdk-core/dist/src/account-lib/mpc/tss/eddsa/types.d.ts"
4392
+ "../../sdk-core/dist/src/account-lib/mpc/hdtree.d.ts"
4477
4393
  ],
4478
4394
  "../../sdk-core/dist/src/account-lib/mpc/util.d.ts": [
4479
4395
  "../../../node_modules/@types/node/index.d.ts",
@@ -4814,7 +4730,7 @@
4814
4730
  "../../sdk-core/dist/src/bitgo/tss/eddsa/eddsa.d.ts": [
4815
4731
  "../../../node_modules/@types/node/index.d.ts",
4816
4732
  "../../../node_modules/@types/node/util.d.ts",
4817
- "../../sdk-core/dist/src/account-lib/mpc/tss/index.d.ts",
4733
+ "../../sdk-core/dist/src/account-lib/mpc/tss.d.ts",
4818
4734
  "../../sdk-core/dist/src/bitgo/bitgobase.d.ts",
4819
4735
  "../../sdk-core/dist/src/bitgo/tss/eddsa/types.d.ts",
4820
4736
  "../../sdk-core/dist/src/bitgo/utils/index.d.ts"
@@ -4826,7 +4742,7 @@
4826
4742
  ],
4827
4743
  "../../sdk-core/dist/src/bitgo/tss/eddsa/types.d.ts": [
4828
4744
  "../../../node_modules/@types/node/util.d.ts",
4829
- "../../sdk-core/dist/src/account-lib/mpc/tss/index.d.ts"
4745
+ "../../sdk-core/dist/src/account-lib/mpc/tss.d.ts"
4830
4746
  ],
4831
4747
  "../../sdk-core/dist/src/bitgo/tss/index.d.ts": [
4832
4748
  "../../../node_modules/@types/node/util.d.ts",
@@ -4891,7 +4807,7 @@
4891
4807
  "../../sdk-core/dist/src/bitgo/utils/tss/eddsa/eddsa.d.ts": [
4892
4808
  "../../../node_modules/@types/node/util.d.ts",
4893
4809
  "../../../node_modules/openpgp/openpgp.d.ts",
4894
- "../../sdk-core/dist/src/account-lib/mpc/tss/index.d.ts",
4810
+ "../../sdk-core/dist/src/account-lib/mpc/tss.d.ts",
4895
4811
  "../../sdk-core/dist/src/api/index.d.ts",
4896
4812
  "../../sdk-core/dist/src/bitgo/basecoin/index.d.ts",
4897
4813
  "../../sdk-core/dist/src/bitgo/bitgobase.d.ts",
@@ -4908,7 +4824,7 @@
4908
4824
  "../../sdk-core/dist/src/bitgo/utils/tss/eddsa/types.d.ts": [
4909
4825
  "../../../node_modules/@types/node/util.d.ts",
4910
4826
  "../../../node_modules/openpgp/openpgp.d.ts",
4911
- "../../sdk-core/dist/src/account-lib/mpc/tss/index.d.ts",
4827
+ "../../sdk-core/dist/src/account-lib/mpc/tss.d.ts",
4912
4828
  "../../sdk-core/dist/src/api/index.d.ts",
4913
4829
  "../../sdk-core/dist/src/bitgo/basecoin/index.d.ts",
4914
4830
  "../../sdk-core/dist/src/bitgo/keychain/index.d.ts",
@@ -5047,6 +4963,16 @@
5047
4963
  "../../../node_modules/@types/node/util.d.ts",
5048
4964
  "../../utxo-lib/dist/src/networks.d.ts"
5049
4965
  ],
4966
+ "../../utxo-lib/dist/src/bitgo/bitcoincash/address.d.ts": [
4967
+ "../../../node_modules/@types/node/index.d.ts",
4968
+ "../../../node_modules/@types/node/util.d.ts",
4969
+ "../../utxo-lib/dist/src/addressformat.d.ts",
4970
+ "../../utxo-lib/dist/src/networks.d.ts"
4971
+ ],
4972
+ "../../utxo-lib/dist/src/bitgo/bitcoincash/index.d.ts": [
4973
+ "../../../node_modules/@types/node/util.d.ts",
4974
+ "../../utxo-lib/dist/src/bitgo/bitcoincash/address.d.ts"
4975
+ ],
5050
4976
  "../../utxo-lib/dist/src/bitgo/dash/dashtransaction.d.ts": [
5051
4977
  "../../../node_modules/@types/node/index.d.ts",
5052
4978
  "../../../node_modules/@types/node/util.d.ts",
@@ -5068,6 +4994,7 @@
5068
4994
  ],
5069
4995
  "../../utxo-lib/dist/src/bitgo/index.d.ts": [
5070
4996
  "../../../node_modules/@types/node/util.d.ts",
4997
+ "../../utxo-lib/dist/src/bitgo/bitcoincash/index.d.ts",
5071
4998
  "../../utxo-lib/dist/src/bitgo/dash/index.d.ts",
5072
4999
  "../../utxo-lib/dist/src/bitgo/keyutil.d.ts",
5073
5000
  "../../utxo-lib/dist/src/bitgo/nonstandardhalfsigned.d.ts",
@@ -5606,11 +5533,11 @@
5606
5533
  ],
5607
5534
  "../../../node_modules/@types/node-fetch/index.d.ts": [
5608
5535
  "../../../node_modules/@types/node-fetch/externals.d.ts",
5609
- "../../../node_modules/@types/node-fetch/node_modules/form-data/index.d.ts",
5610
5536
  "../../../node_modules/@types/node/http.d.ts",
5611
5537
  "../../../node_modules/@types/node/index.d.ts",
5612
5538
  "../../../node_modules/@types/node/url.d.ts",
5613
- "../../../node_modules/@types/node/util.d.ts"
5539
+ "../../../node_modules/@types/node/util.d.ts",
5540
+ "../../../node_modules/form-data/index.d.ts"
5614
5541
  ],
5615
5542
  "../../../node_modules/@types/node-fetch/node_modules/form-data/index.d.ts": [
5616
5543
  "../../../node_modules/@types/node/http.d.ts",
@@ -6542,14 +6469,7 @@
6542
6469
  "../../sdk-core/dist/src/account-lib/mpc/curves/secp256k1.d.ts",
6543
6470
  "../../sdk-core/dist/src/account-lib/mpc/hdtree.d.ts",
6544
6471
  "../../sdk-core/dist/src/account-lib/mpc/index.d.ts",
6545
- "../../sdk-core/dist/src/account-lib/mpc/shamir.d.ts",
6546
- "../../sdk-core/dist/src/account-lib/mpc/tss/ecdsa/ecdsa.d.ts",
6547
- "../../sdk-core/dist/src/account-lib/mpc/tss/ecdsa/index.d.ts",
6548
- "../../sdk-core/dist/src/account-lib/mpc/tss/ecdsa/types.d.ts",
6549
- "../../sdk-core/dist/src/account-lib/mpc/tss/eddsa/eddsa.d.ts",
6550
- "../../sdk-core/dist/src/account-lib/mpc/tss/eddsa/index.d.ts",
6551
- "../../sdk-core/dist/src/account-lib/mpc/tss/eddsa/types.d.ts",
6552
- "../../sdk-core/dist/src/account-lib/mpc/tss/index.d.ts",
6472
+ "../../sdk-core/dist/src/account-lib/mpc/tss.d.ts",
6553
6473
  "../../sdk-core/dist/src/account-lib/mpc/util.d.ts",
6554
6474
  "../../sdk-core/dist/src/account-lib/util/crypto.d.ts",
6555
6475
  "../../sdk-core/dist/src/account-lib/util/ed25519keyderiver.d.ts",
@@ -6648,6 +6568,8 @@
6648
6568
  "../../statics/dist/src/utxo.d.ts",
6649
6569
  "../../utxo-lib/dist/src/address.d.ts",
6650
6570
  "../../utxo-lib/dist/src/addressformat.d.ts",
6571
+ "../../utxo-lib/dist/src/bitgo/bitcoincash/address.d.ts",
6572
+ "../../utxo-lib/dist/src/bitgo/bitcoincash/index.d.ts",
6651
6573
  "../../utxo-lib/dist/src/bitgo/dash/dashtransaction.d.ts",
6652
6574
  "../../utxo-lib/dist/src/bitgo/dash/dashtransactionbuilder.d.ts",
6653
6575
  "../../utxo-lib/dist/src/bitgo/dash/index.d.ts",