@bitgo-beta/sdk-api 1.10.1-beta.181 → 1.10.1-beta.1811

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (79) hide show
  1. package/dist/package.json +20 -27
  2. package/dist/src/api.d.ts +8 -5
  3. package/dist/src/api.d.ts.map +1 -1
  4. package/dist/src/api.js +130 -71
  5. package/dist/src/bitgoAPI.d.ts +133 -16
  6. package/dist/src/bitgoAPI.d.ts.map +1 -1
  7. package/dist/src/bitgoAPI.js +786 -303
  8. package/dist/src/encrypt.d.ts +23 -4
  9. package/dist/src/encrypt.d.ts.map +1 -1
  10. package/dist/src/encrypt.js +86 -13
  11. package/dist/src/encryptV2.d.ts +68 -0
  12. package/dist/src/encryptV2.d.ts.map +1 -0
  13. package/dist/src/encryptV2.js +202 -0
  14. package/dist/src/encryptionSession.d.ts +34 -0
  15. package/dist/src/encryptionSession.d.ts.map +1 -0
  16. package/dist/src/encryptionSession.js +95 -0
  17. package/dist/src/index.d.ts +2 -0
  18. package/dist/src/index.d.ts.map +1 -1
  19. package/dist/src/index.js +8 -2
  20. package/dist/src/types.d.ts +64 -44
  21. package/dist/src/types.d.ts.map +1 -1
  22. package/dist/src/types.js +4 -2
  23. package/dist/src/util.d.ts +12 -0
  24. package/dist/src/util.d.ts.map +1 -1
  25. package/dist/src/util.js +57 -4
  26. package/dist/src/v1/blockchain.js +25 -12
  27. package/dist/src/v1/keychains.js +39 -26
  28. package/dist/src/v1/markets.js +10 -5
  29. package/dist/src/v1/pendingapproval.d.ts.map +1 -1
  30. package/dist/src/v1/pendingapproval.js +57 -18
  31. package/dist/src/v1/pendingapprovals.d.ts.map +1 -1
  32. package/dist/src/v1/pendingapprovals.js +41 -7
  33. package/dist/src/v1/signPsbt.d.ts +14 -0
  34. package/dist/src/v1/signPsbt.d.ts.map +1 -0
  35. package/dist/src/v1/signPsbt.js +69 -0
  36. package/dist/src/v1/transactionBuilder.js +214 -90
  37. package/dist/src/v1/travelRule.js +163 -66
  38. package/dist/src/v1/verifyAddress.d.ts +6 -0
  39. package/dist/src/v1/verifyAddress.d.ts.map +1 -0
  40. package/dist/src/v1/verifyAddress.js +50 -0
  41. package/dist/src/v1/wallet.d.ts.map +1 -1
  42. package/dist/src/v1/wallet.js +498 -230
  43. package/dist/src/v1/wallets.js +118 -53
  44. package/dist/test/unit/api.d.ts +2 -0
  45. package/dist/test/unit/api.d.ts.map +1 -0
  46. package/dist/test/unit/api.js +307 -0
  47. package/dist/test/unit/bitgoAPI.d.ts +2 -0
  48. package/dist/test/unit/bitgoAPI.d.ts.map +1 -0
  49. package/dist/test/unit/bitgoAPI.js +957 -0
  50. package/dist/test/unit/encrypt.d.ts +2 -0
  51. package/dist/test/unit/encrypt.d.ts.map +1 -0
  52. package/dist/test/unit/encrypt.js +415 -0
  53. package/dist/test/unit/hmacStrategy.d.ts +2 -0
  54. package/dist/test/unit/hmacStrategy.d.ts.map +1 -0
  55. package/dist/test/unit/hmacStrategy.js +136 -0
  56. package/dist/test/unit/utils.d.ts +2 -0
  57. package/dist/test/unit/utils.d.ts.map +1 -0
  58. package/dist/test/unit/utils.js +65 -0
  59. package/dist/test/unit/v1/fixtures/accelerate-tx.d.ts +4 -0
  60. package/dist/test/unit/v1/fixtures/accelerate-tx.d.ts.map +1 -0
  61. package/dist/test/unit/v1/fixtures/accelerate-tx.js +53 -0
  62. package/dist/test/unit/v1/fixtures/index.d.ts +3 -0
  63. package/dist/test/unit/v1/fixtures/index.d.ts.map +1 -0
  64. package/dist/test/unit/v1/fixtures/index.js +24 -0
  65. package/dist/test/unit/v1/signPsbt.d.ts +2 -0
  66. package/dist/test/unit/v1/signPsbt.d.ts.map +1 -0
  67. package/dist/test/unit/v1/signPsbt.js +53 -0
  68. package/dist/test/unit/v1/travelRule.d.ts +2 -0
  69. package/dist/test/unit/v1/travelRule.d.ts.map +1 -0
  70. package/dist/test/unit/v1/travelRule.js +173 -0
  71. package/dist/test/unit/v1/wallet.d.ts +2 -0
  72. package/dist/test/unit/v1/wallet.d.ts.map +1 -0
  73. package/dist/test/unit/v1/wallet.js +1603 -0
  74. package/dist/tsconfig.tsbuildinfo +1 -0
  75. package/package.json +20 -27
  76. package/.eslintignore +0 -5
  77. package/CHANGELOG.md +0 -555
  78. package/dist/web/main.js +0 -2
  79. package/dist/web/main.js.LICENSE.txt +0 -110
package/package.json CHANGED
@@ -1,32 +1,22 @@
1
1
  {
2
2
  "name": "@bitgo-beta/sdk-api",
3
- "version": "1.10.1-beta.181",
3
+ "version": "1.10.1-beta.1811",
4
4
  "description": "REST wrapper for BitGoJS",
5
5
  "main": "./dist/src/index.js",
6
6
  "types": "./dist/src/index.d.ts",
7
- "exports": {
8
- "./package.json": "./package.json",
9
- ".": {
10
- "node": "./dist/src/index.js",
11
- "default": "./dist/web/main.js"
12
- }
13
- },
14
7
  "browser": {
15
8
  "proxy-agent": false
16
9
  },
17
10
  "scripts": {
18
11
  "build": "yarn tsc --build --incremental --verbose .",
19
12
  "fmt": "prettier --write .",
20
- "check-fmt": "prettier --check .",
13
+ "check-fmt": "prettier --check '**/*.{ts,js,json}'",
21
14
  "clean": "rm -r ./dist",
22
15
  "lint": "eslint --quiet .",
23
16
  "prepare": "npm run build",
24
- "webpack-dev": "yarn webpack",
25
- "webpack-prod": "yarn webpack --mode=production --node-env=production",
26
- "prepublishOnly": "yarn webpack-prod",
27
17
  "test": "npm run coverage",
28
18
  "coverage": "nyc -- npm run unit-test",
29
- "unit-test": "mocha"
19
+ "unit-test": "mocha 'test/unit/**/*.ts'"
30
20
  },
31
21
  "author": "BitGo SDK Team <sdkteam@bitgo.com>",
32
22
  "license": "MIT",
@@ -50,23 +40,23 @@
50
40
  ]
51
41
  },
52
42
  "dependencies": {
53
- "@bitgo-beta/sdk-core": "8.2.1-beta.181",
54
- "@bitgo-beta/sjcl": "1.0.2-beta.419",
55
- "@bitgo-beta/unspents": "0.13.2-beta.181",
56
- "@bitgo-beta/utxo-lib": "8.0.3-beta.182",
43
+ "@bitgo-beta/argon2": "0.0.1-beta.126",
44
+ "@bitgo-beta/sdk-core": "8.2.1-beta.1814",
45
+ "@bitgo-beta/sdk-hmac": "1.0.1-beta.1187",
46
+ "@bitgo-beta/sjcl": "1.0.2-beta.2060",
47
+ "@bitgo-beta/unspents": "0.13.2-beta.1815",
48
+ "@bitgo-beta/utxo-lib": "8.0.3-beta.1816",
57
49
  "@types/superagent": "4.1.15",
58
- "bitcoinjs-message": "npm:@bitgo-forks/bitcoinjs-message@1.0.0-master.2",
59
- "bluebird": "^3.5.3",
60
- "browser-or-node": "2.0.0",
61
- "bs58": "^2.0.1",
50
+ "bitcoinjs-message": "npm:@bitgo-forks/bitcoinjs-message@1.0.0-master.3",
62
51
  "debug": "3.1.0",
63
52
  "eol": "^0.5.0",
64
- "lodash": "^4.17.15",
65
- "proxy-agent": "6.3.1",
66
- "sanitize-html": "^2.11",
67
- "secp256k1": "^4.0.2",
53
+ "io-ts": "npm:@bitgo-forks/io-ts@2.1.4",
54
+ "lodash": "^4.18.0",
55
+ "proxy-agent": "6.4.0",
56
+ "sanitize-html": "^2.17.4",
57
+ "secp256k1": "5.0.1",
68
58
  "secrets.js-grempe": "^1.1.0",
69
- "superagent": "3.8.3"
59
+ "superagent": "^9.0.1"
70
60
  },
71
61
  "overrides": {
72
62
  "degenerator": "5.0.0"
@@ -74,5 +64,8 @@
74
64
  "resolutions": {
75
65
  "degenerator": "5.0.0"
76
66
  },
77
- "gitHead": "aedbc202192d41d3d70466157932ae5781532be2"
67
+ "gitHead": "ad1fa5c4588bf93968233c8aa2643bcfc2ba153b",
68
+ "files": [
69
+ "dist"
70
+ ]
78
71
  }
package/.eslintignore DELETED
@@ -1,5 +0,0 @@
1
- node_modules
2
- .idea
3
- public
4
- dist
5
- browser
package/CHANGELOG.md DELETED
@@ -1,555 +0,0 @@
1
- # Change Log
2
-
3
- All notable changes to this project will be documented in this file.
4
- See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
-
6
- # [1.29.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.13.0...@bitgo/sdk-api@1.29.0) (2023-11-24)
7
-
8
- ### Bug Fixes
9
-
10
- - **bitgo:** add overrides and resolutions to pkgs ([14c33b4](https://github.com/BitGo/BitGoJS/commit/14c33b4bbffda09ba6a389f540c1fb8cc2a43bf9))
11
- - **sdk-api:** drop `superagent-proxy` dependency ([06a86fd](https://github.com/BitGo/BitGoJS/commit/06a86fd3def3865ac05713bd879e2d2df32c599d))
12
- - **sdk-api:** upgrade critical vulnerabilities from snyk scan ([cd97347](https://github.com/BitGo/BitGoJS/commit/cd97347046b1a6644db6682e9f8e9ca8b5fe4ad7))
13
- - **statics:** make corrections for arbeth and opeth ([5dfc405](https://github.com/BitGo/BitGoJS/commit/5dfc405a36fc97b2c902fec44562b169d8013a18))
14
-
15
- ### Features
16
-
17
- - improve logic and add unit test ([722d729](https://github.com/BitGo/BitGoJS/commit/722d729600ff6de2a04e93329d27e406f51a456b))
18
- - **sdk-api:** add size correction factor for transactions created ([5f0131c](https://github.com/BitGo/BitGoJS/commit/5f0131cd7016ad7dc4cf4b0be177e0c7ab7f4d25))
19
- - **sdk-api:** test for fully signed tx of v1 safe wallet ([ec91fb6](https://github.com/BitGo/BitGoJS/commit/ec91fb616187983611044230097236fa9229f55d))
20
- - **utxo-lib:** add tests for v1 safe wallets with uncompressed ([4ac75f0](https://github.com/BitGo/BitGoJS/commit/4ac75f0031a40aa17de37f176e3493284cba4cac))
21
-
22
- # [1.28.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.13.0...@bitgo/sdk-api@1.28.0) (2023-11-17)
23
-
24
- ### Bug Fixes
25
-
26
- - **bitgo:** add overrides and resolutions to pkgs ([14c33b4](https://github.com/BitGo/BitGoJS/commit/14c33b4bbffda09ba6a389f540c1fb8cc2a43bf9))
27
- - **sdk-api:** drop `superagent-proxy` dependency ([06a86fd](https://github.com/BitGo/BitGoJS/commit/06a86fd3def3865ac05713bd879e2d2df32c599d))
28
- - **sdk-api:** upgrade critical vulnerabilities from snyk scan ([cd97347](https://github.com/BitGo/BitGoJS/commit/cd97347046b1a6644db6682e9f8e9ca8b5fe4ad7))
29
- - **statics:** make corrections for arbeth and opeth ([5dfc405](https://github.com/BitGo/BitGoJS/commit/5dfc405a36fc97b2c902fec44562b169d8013a18))
30
-
31
- ### Features
32
-
33
- - improve logic and add unit test ([722d729](https://github.com/BitGo/BitGoJS/commit/722d729600ff6de2a04e93329d27e406f51a456b))
34
- - **sdk-api:** add size correction factor for transactions created ([5f0131c](https://github.com/BitGo/BitGoJS/commit/5f0131cd7016ad7dc4cf4b0be177e0c7ab7f4d25))
35
- - **sdk-api:** test for fully signed tx of v1 safe wallet ([ec91fb6](https://github.com/BitGo/BitGoJS/commit/ec91fb616187983611044230097236fa9229f55d))
36
- - **utxo-lib:** add tests for v1 safe wallets with uncompressed ([4ac75f0](https://github.com/BitGo/BitGoJS/commit/4ac75f0031a40aa17de37f176e3493284cba4cac))
37
-
38
- # [1.27.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.13.0...@bitgo/sdk-api@1.27.0) (2023-11-13)
39
-
40
- ### Bug Fixes
41
-
42
- - **bitgo:** add overrides and resolutions to pkgs ([14c33b4](https://github.com/BitGo/BitGoJS/commit/14c33b4bbffda09ba6a389f540c1fb8cc2a43bf9))
43
- - **sdk-api:** drop `superagent-proxy` dependency ([06a86fd](https://github.com/BitGo/BitGoJS/commit/06a86fd3def3865ac05713bd879e2d2df32c599d))
44
- - **sdk-api:** upgrade critical vulnerabilities from snyk scan ([cd97347](https://github.com/BitGo/BitGoJS/commit/cd97347046b1a6644db6682e9f8e9ca8b5fe4ad7))
45
-
46
- ### Features
47
-
48
- - improve logic and add unit test ([722d729](https://github.com/BitGo/BitGoJS/commit/722d729600ff6de2a04e93329d27e406f51a456b))
49
- - **sdk-api:** add size correction factor for transactions created ([5f0131c](https://github.com/BitGo/BitGoJS/commit/5f0131cd7016ad7dc4cf4b0be177e0c7ab7f4d25))
50
- - **sdk-api:** test for fully signed tx of v1 safe wallet ([ec91fb6](https://github.com/BitGo/BitGoJS/commit/ec91fb616187983611044230097236fa9229f55d))
51
- - **utxo-lib:** add tests for v1 safe wallets with uncompressed ([4ac75f0](https://github.com/BitGo/BitGoJS/commit/4ac75f0031a40aa17de37f176e3493284cba4cac))
52
-
53
- # [1.26.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.13.0...@bitgo/sdk-api@1.26.0) (2023-11-13)
54
-
55
- ### Bug Fixes
56
-
57
- - **bitgo:** add overrides and resolutions to pkgs ([14c33b4](https://github.com/BitGo/BitGoJS/commit/14c33b4bbffda09ba6a389f540c1fb8cc2a43bf9))
58
- - **sdk-api:** drop `superagent-proxy` dependency ([06a86fd](https://github.com/BitGo/BitGoJS/commit/06a86fd3def3865ac05713bd879e2d2df32c599d))
59
- - **sdk-api:** upgrade critical vulnerabilities from snyk scan ([cd97347](https://github.com/BitGo/BitGoJS/commit/cd97347046b1a6644db6682e9f8e9ca8b5fe4ad7))
60
-
61
- ### Features
62
-
63
- - improve logic and add unit test ([722d729](https://github.com/BitGo/BitGoJS/commit/722d729600ff6de2a04e93329d27e406f51a456b))
64
- - **sdk-api:** add size correction factor for transactions created ([5f0131c](https://github.com/BitGo/BitGoJS/commit/5f0131cd7016ad7dc4cf4b0be177e0c7ab7f4d25))
65
- - **sdk-api:** test for fully signed tx of v1 safe wallet ([ec91fb6](https://github.com/BitGo/BitGoJS/commit/ec91fb616187983611044230097236fa9229f55d))
66
- - **utxo-lib:** add tests for v1 safe wallets with uncompressed ([4ac75f0](https://github.com/BitGo/BitGoJS/commit/4ac75f0031a40aa17de37f176e3493284cba4cac))
67
-
68
- # [1.25.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.13.0...@bitgo/sdk-api@1.25.0) (2023-11-13)
69
-
70
- ### Bug Fixes
71
-
72
- - **bitgo:** add overrides and resolutions to pkgs ([14c33b4](https://github.com/BitGo/BitGoJS/commit/14c33b4bbffda09ba6a389f540c1fb8cc2a43bf9))
73
- - **sdk-api:** drop `superagent-proxy` dependency ([06a86fd](https://github.com/BitGo/BitGoJS/commit/06a86fd3def3865ac05713bd879e2d2df32c599d))
74
- - **sdk-api:** upgrade critical vulnerabilities from snyk scan ([cd97347](https://github.com/BitGo/BitGoJS/commit/cd97347046b1a6644db6682e9f8e9ca8b5fe4ad7))
75
-
76
- ### Features
77
-
78
- - improve logic and add unit test ([722d729](https://github.com/BitGo/BitGoJS/commit/722d729600ff6de2a04e93329d27e406f51a456b))
79
- - **sdk-api:** add size correction factor for transactions created ([5f0131c](https://github.com/BitGo/BitGoJS/commit/5f0131cd7016ad7dc4cf4b0be177e0c7ab7f4d25))
80
- - **sdk-api:** test for fully signed tx of v1 safe wallet ([ec91fb6](https://github.com/BitGo/BitGoJS/commit/ec91fb616187983611044230097236fa9229f55d))
81
- - **utxo-lib:** add tests for v1 safe wallets with uncompressed ([4ac75f0](https://github.com/BitGo/BitGoJS/commit/4ac75f0031a40aa17de37f176e3493284cba4cac))
82
-
83
- # [1.24.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.13.0...@bitgo/sdk-api@1.24.0) (2023-10-20)
84
-
85
- ### Bug Fixes
86
-
87
- - **bitgo:** add overrides and resolutions to pkgs ([14c33b4](https://github.com/BitGo/BitGoJS/commit/14c33b4bbffda09ba6a389f540c1fb8cc2a43bf9))
88
- - **sdk-api:** drop `superagent-proxy` dependency ([06a86fd](https://github.com/BitGo/BitGoJS/commit/06a86fd3def3865ac05713bd879e2d2df32c599d))
89
- - **sdk-api:** upgrade critical vulnerabilities from snyk scan ([cd97347](https://github.com/BitGo/BitGoJS/commit/cd97347046b1a6644db6682e9f8e9ca8b5fe4ad7))
90
-
91
- ### Features
92
-
93
- - improve logic and add unit test ([722d729](https://github.com/BitGo/BitGoJS/commit/722d729600ff6de2a04e93329d27e406f51a456b))
94
- - **sdk-api:** add size correction factor for transactions created ([5f0131c](https://github.com/BitGo/BitGoJS/commit/5f0131cd7016ad7dc4cf4b0be177e0c7ab7f4d25))
95
- - **sdk-api:** test for fully signed tx of v1 safe wallet ([ec91fb6](https://github.com/BitGo/BitGoJS/commit/ec91fb616187983611044230097236fa9229f55d))
96
- - **utxo-lib:** add tests for v1 safe wallets with uncompressed ([4ac75f0](https://github.com/BitGo/BitGoJS/commit/4ac75f0031a40aa17de37f176e3493284cba4cac))
97
-
98
- # [1.23.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.13.0...@bitgo/sdk-api@1.23.0) (2023-10-18)
99
-
100
- ### Bug Fixes
101
-
102
- - **bitgo:** add overrides and resolutions to pkgs ([14c33b4](https://github.com/BitGo/BitGoJS/commit/14c33b4bbffda09ba6a389f540c1fb8cc2a43bf9))
103
- - **sdk-api:** drop `superagent-proxy` dependency ([06a86fd](https://github.com/BitGo/BitGoJS/commit/06a86fd3def3865ac05713bd879e2d2df32c599d))
104
- - **sdk-api:** upgrade critical vulnerabilities from snyk scan ([cd97347](https://github.com/BitGo/BitGoJS/commit/cd97347046b1a6644db6682e9f8e9ca8b5fe4ad7))
105
-
106
- ### Features
107
-
108
- - improve logic and add unit test ([722d729](https://github.com/BitGo/BitGoJS/commit/722d729600ff6de2a04e93329d27e406f51a456b))
109
- - **sdk-api:** add size correction factor for transactions created ([5f0131c](https://github.com/BitGo/BitGoJS/commit/5f0131cd7016ad7dc4cf4b0be177e0c7ab7f4d25))
110
- - **sdk-api:** test for fully signed tx of v1 safe wallet ([ec91fb6](https://github.com/BitGo/BitGoJS/commit/ec91fb616187983611044230097236fa9229f55d))
111
- - **utxo-lib:** add tests for v1 safe wallets with uncompressed ([4ac75f0](https://github.com/BitGo/BitGoJS/commit/4ac75f0031a40aa17de37f176e3493284cba4cac))
112
-
113
- # [1.22.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.13.0...@bitgo/sdk-api@1.22.0) (2023-09-25)
114
-
115
- ### Bug Fixes
116
-
117
- - **bitgo:** add overrides and resolutions to pkgs ([14c33b4](https://github.com/BitGo/BitGoJS/commit/14c33b4bbffda09ba6a389f540c1fb8cc2a43bf9))
118
- - **sdk-api:** drop `superagent-proxy` dependency ([06a86fd](https://github.com/BitGo/BitGoJS/commit/06a86fd3def3865ac05713bd879e2d2df32c599d))
119
- - **sdk-api:** upgrade critical vulnerabilities from snyk scan ([cd97347](https://github.com/BitGo/BitGoJS/commit/cd97347046b1a6644db6682e9f8e9ca8b5fe4ad7))
120
-
121
- ### Features
122
-
123
- - **sdk-api:** add size correction factor for transactions created ([5f0131c](https://github.com/BitGo/BitGoJS/commit/5f0131cd7016ad7dc4cf4b0be177e0c7ab7f4d25))
124
- - **sdk-api:** test for fully signed tx of v1 safe wallet ([ec91fb6](https://github.com/BitGo/BitGoJS/commit/ec91fb616187983611044230097236fa9229f55d))
125
- - **utxo-lib:** add tests for v1 safe wallets with uncompressed ([4ac75f0](https://github.com/BitGo/BitGoJS/commit/4ac75f0031a40aa17de37f176e3493284cba4cac))
126
-
127
- # [1.21.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.13.0...@bitgo/sdk-api@1.21.0) (2023-09-09)
128
-
129
- ### Bug Fixes
130
-
131
- - **bitgo:** add overrides and resolutions to pkgs ([14c33b4](https://github.com/BitGo/BitGoJS/commit/14c33b4bbffda09ba6a389f540c1fb8cc2a43bf9))
132
- - **sdk-api:** upgrade critical vulnerabilities from snyk scan ([cd97347](https://github.com/BitGo/BitGoJS/commit/cd97347046b1a6644db6682e9f8e9ca8b5fe4ad7))
133
-
134
- ### Features
135
-
136
- - **sdk-api:** add size correction factor for transactions created ([5f0131c](https://github.com/BitGo/BitGoJS/commit/5f0131cd7016ad7dc4cf4b0be177e0c7ab7f4d25))
137
- - **sdk-api:** test for fully signed tx of v1 safe wallet ([ec91fb6](https://github.com/BitGo/BitGoJS/commit/ec91fb616187983611044230097236fa9229f55d))
138
- - **utxo-lib:** add tests for v1 safe wallets with uncompressed ([4ac75f0](https://github.com/BitGo/BitGoJS/commit/4ac75f0031a40aa17de37f176e3493284cba4cac))
139
-
140
- # [1.20.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.13.0...@bitgo/sdk-api@1.20.0) (2023-09-09)
141
-
142
- ### Bug Fixes
143
-
144
- - **bitgo:** add overrides and resolutions to pkgs ([14c33b4](https://github.com/BitGo/BitGoJS/commit/14c33b4bbffda09ba6a389f540c1fb8cc2a43bf9))
145
- - **sdk-api:** upgrade critical vulnerabilities from snyk scan ([cd97347](https://github.com/BitGo/BitGoJS/commit/cd97347046b1a6644db6682e9f8e9ca8b5fe4ad7))
146
-
147
- ### Features
148
-
149
- - **sdk-api:** add size correction factor for transactions created ([5f0131c](https://github.com/BitGo/BitGoJS/commit/5f0131cd7016ad7dc4cf4b0be177e0c7ab7f4d25))
150
- - **sdk-api:** test for fully signed tx of v1 safe wallet ([ec91fb6](https://github.com/BitGo/BitGoJS/commit/ec91fb616187983611044230097236fa9229f55d))
151
- - **utxo-lib:** add tests for v1 safe wallets with uncompressed ([4ac75f0](https://github.com/BitGo/BitGoJS/commit/4ac75f0031a40aa17de37f176e3493284cba4cac))
152
-
153
- # [1.19.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.13.0...@bitgo/sdk-api@1.19.0) (2023-09-07)
154
-
155
- ### Bug Fixes
156
-
157
- - **bitgo:** add overrides and resolutions to pkgs ([14c33b4](https://github.com/BitGo/BitGoJS/commit/14c33b4bbffda09ba6a389f540c1fb8cc2a43bf9))
158
- - **sdk-api:** upgrade critical vulnerabilities from snyk scan ([cd97347](https://github.com/BitGo/BitGoJS/commit/cd97347046b1a6644db6682e9f8e9ca8b5fe4ad7))
159
-
160
- ### Features
161
-
162
- - **sdk-api:** add size correction factor for transactions created ([5f0131c](https://github.com/BitGo/BitGoJS/commit/5f0131cd7016ad7dc4cf4b0be177e0c7ab7f4d25))
163
- - **sdk-api:** test for fully signed tx of v1 safe wallet ([ec91fb6](https://github.com/BitGo/BitGoJS/commit/ec91fb616187983611044230097236fa9229f55d))
164
- - **utxo-lib:** add tests for v1 safe wallets with uncompressed ([4ac75f0](https://github.com/BitGo/BitGoJS/commit/4ac75f0031a40aa17de37f176e3493284cba4cac))
165
-
166
- # [1.18.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.13.0...@bitgo/sdk-api@1.18.0) (2023-09-05)
167
-
168
- ### Bug Fixes
169
-
170
- - **bitgo:** add overrides and resolutions to pkgs ([14c33b4](https://github.com/BitGo/BitGoJS/commit/14c33b4bbffda09ba6a389f540c1fb8cc2a43bf9))
171
- - **sdk-api:** upgrade critical vulnerabilities from snyk scan ([cd97347](https://github.com/BitGo/BitGoJS/commit/cd97347046b1a6644db6682e9f8e9ca8b5fe4ad7))
172
-
173
- ### Features
174
-
175
- - **sdk-api:** add size correction factor for transactions created ([5f0131c](https://github.com/BitGo/BitGoJS/commit/5f0131cd7016ad7dc4cf4b0be177e0c7ab7f4d25))
176
- - **sdk-api:** test for fully signed tx of v1 safe wallet ([ec91fb6](https://github.com/BitGo/BitGoJS/commit/ec91fb616187983611044230097236fa9229f55d))
177
- - **utxo-lib:** add tests for v1 safe wallets with uncompressed ([4ac75f0](https://github.com/BitGo/BitGoJS/commit/4ac75f0031a40aa17de37f176e3493284cba4cac))
178
-
179
- # [1.17.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.13.0...@bitgo/sdk-api@1.17.0) (2023-09-01)
180
-
181
- ### Bug Fixes
182
-
183
- - **bitgo:** add overrides and resolutions to pkgs ([14c33b4](https://github.com/BitGo/BitGoJS/commit/14c33b4bbffda09ba6a389f540c1fb8cc2a43bf9))
184
- - **sdk-api:** upgrade critical vulnerabilities from snyk scan ([cd97347](https://github.com/BitGo/BitGoJS/commit/cd97347046b1a6644db6682e9f8e9ca8b5fe4ad7))
185
-
186
- ### Features
187
-
188
- - **sdk-api:** add size correction factor for transactions created ([5f0131c](https://github.com/BitGo/BitGoJS/commit/5f0131cd7016ad7dc4cf4b0be177e0c7ab7f4d25))
189
- - **sdk-api:** test for fully signed tx of v1 safe wallet ([ec91fb6](https://github.com/BitGo/BitGoJS/commit/ec91fb616187983611044230097236fa9229f55d))
190
- - **utxo-lib:** add tests for v1 safe wallets with uncompressed ([4ac75f0](https://github.com/BitGo/BitGoJS/commit/4ac75f0031a40aa17de37f176e3493284cba4cac))
191
-
192
- # [1.16.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.13.0...@bitgo/sdk-api@1.16.0) (2023-08-29)
193
-
194
- ### Bug Fixes
195
-
196
- - **bitgo:** add overrides and resolutions to pkgs ([14c33b4](https://github.com/BitGo/BitGoJS/commit/14c33b4bbffda09ba6a389f540c1fb8cc2a43bf9))
197
- - **sdk-api:** upgrade critical vulnerabilities from snyk scan ([cd97347](https://github.com/BitGo/BitGoJS/commit/cd97347046b1a6644db6682e9f8e9ca8b5fe4ad7))
198
-
199
- ### Features
200
-
201
- - **sdk-api:** add size correction factor for transactions created ([5f0131c](https://github.com/BitGo/BitGoJS/commit/5f0131cd7016ad7dc4cf4b0be177e0c7ab7f4d25))
202
- - **sdk-api:** test for fully signed tx of v1 safe wallet ([ec91fb6](https://github.com/BitGo/BitGoJS/commit/ec91fb616187983611044230097236fa9229f55d))
203
- - **utxo-lib:** add tests for v1 safe wallets with uncompressed ([4ac75f0](https://github.com/BitGo/BitGoJS/commit/4ac75f0031a40aa17de37f176e3493284cba4cac))
204
-
205
- # [1.15.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.13.0...@bitgo/sdk-api@1.15.0) (2023-08-25)
206
-
207
- ### Bug Fixes
208
-
209
- - **bitgo:** add overrides and resolutions to pkgs ([14c33b4](https://github.com/BitGo/BitGoJS/commit/14c33b4bbffda09ba6a389f540c1fb8cc2a43bf9))
210
- - **sdk-api:** upgrade critical vulnerabilities from snyk scan ([cd97347](https://github.com/BitGo/BitGoJS/commit/cd97347046b1a6644db6682e9f8e9ca8b5fe4ad7))
211
-
212
- ### Features
213
-
214
- - **sdk-api:** add size correction factor for transactions created ([5f0131c](https://github.com/BitGo/BitGoJS/commit/5f0131cd7016ad7dc4cf4b0be177e0c7ab7f4d25))
215
- - **sdk-api:** test for fully signed tx of v1 safe wallet ([ec91fb6](https://github.com/BitGo/BitGoJS/commit/ec91fb616187983611044230097236fa9229f55d))
216
- - **utxo-lib:** add tests for v1 safe wallets with uncompressed ([4ac75f0](https://github.com/BitGo/BitGoJS/commit/4ac75f0031a40aa17de37f176e3493284cba4cac))
217
-
218
- # [1.14.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.13.0...@bitgo/sdk-api@1.14.0) (2023-08-24)
219
-
220
- ### Bug Fixes
221
-
222
- - **bitgo:** add overrides and resolutions to pkgs ([14c33b4](https://github.com/BitGo/BitGoJS/commit/14c33b4bbffda09ba6a389f540c1fb8cc2a43bf9))
223
- - **sdk-api:** upgrade critical vulnerabilities from snyk scan ([cd97347](https://github.com/BitGo/BitGoJS/commit/cd97347046b1a6644db6682e9f8e9ca8b5fe4ad7))
224
-
225
- ### Features
226
-
227
- - **sdk-api:** add size correction factor for transactions created ([5f0131c](https://github.com/BitGo/BitGoJS/commit/5f0131cd7016ad7dc4cf4b0be177e0c7ab7f4d25))
228
- - **sdk-api:** test for fully signed tx of v1 safe wallet ([ec91fb6](https://github.com/BitGo/BitGoJS/commit/ec91fb616187983611044230097236fa9229f55d))
229
- - **utxo-lib:** add tests for v1 safe wallets with uncompressed ([4ac75f0](https://github.com/BitGo/BitGoJS/commit/4ac75f0031a40aa17de37f176e3493284cba4cac))
230
-
231
- ## [1.13.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.13.0...@bitgo/sdk-api@1.13.2) (2023-08-16)
232
-
233
- ### Bug Fixes
234
-
235
- - **bitgo:** add overrides and resolutions to pkgs ([14c33b4](https://github.com/BitGo/BitGoJS/commit/14c33b4bbffda09ba6a389f540c1fb8cc2a43bf9))
236
- - **sdk-api:** upgrade critical vulnerabilities from snyk scan ([cd97347](https://github.com/BitGo/BitGoJS/commit/cd97347046b1a6644db6682e9f8e9ca8b5fe4ad7))
237
-
238
- ## [1.13.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.13.0...@bitgo/sdk-api@1.13.1) (2023-08-16)
239
-
240
- ### Bug Fixes
241
-
242
- - **bitgo:** add overrides and resolutions to pkgs ([14c33b4](https://github.com/BitGo/BitGoJS/commit/14c33b4bbffda09ba6a389f540c1fb8cc2a43bf9))
243
- - **sdk-api:** upgrade critical vulnerabilities from snyk scan ([cd97347](https://github.com/BitGo/BitGoJS/commit/cd97347046b1a6644db6682e9f8e9ca8b5fe4ad7))
244
-
245
- # [1.13.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.11.3...@bitgo/sdk-api@1.13.0) (2023-08-04)
246
-
247
- ### Features
248
-
249
- - **unspents:** fix unspents module setup ([687f4c3](https://github.com/BitGo/BitGoJS/commit/687f4c3c29885b1e5b5bf9d79782d265937d6f1d)), closes [#3651](https://github.com/BitGo/BitGoJS/issues/3651)
250
-
251
- # [1.12.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.11.3...@bitgo/sdk-api@1.12.0) (2023-07-28)
252
-
253
- ### Features
254
-
255
- - **unspents:** fix unspents module setup ([687f4c3](https://github.com/BitGo/BitGoJS/commit/687f4c3c29885b1e5b5bf9d79782d265937d6f1d)), closes [#3651](https://github.com/BitGo/BitGoJS/issues/3651)
256
-
257
- ## [1.11.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.11.2...@bitgo/sdk-api@1.11.3) (2023-07-18)
258
-
259
- **Note:** Version bump only for package @bitgo/sdk-api
260
-
261
- ## [1.11.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.11.1...@bitgo/sdk-api@1.11.2) (2023-06-21)
262
-
263
- **Note:** Version bump only for package @bitgo/sdk-api
264
-
265
- ## [1.11.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.11.0...@bitgo/sdk-api@1.11.1) (2023-06-14)
266
-
267
- **Note:** Version bump only for package @bitgo/sdk-api
268
-
269
- # [1.11.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.10.6...@bitgo/sdk-api@1.11.0) (2023-06-13)
270
-
271
- ### Features
272
-
273
- - **sdk-api:** add snowtrace api token support in BitgoAPI ([3f9efd8](https://github.com/BitGo/BitGoJS/commit/3f9efd88638b1d72fd63becd7f6173166ede59a9))
274
-
275
- ## [1.10.6](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.10.5...@bitgo/sdk-api@1.10.6) (2023-06-07)
276
-
277
- **Note:** Version bump only for package @bitgo/sdk-api
278
-
279
- ## [1.10.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.10.4...@bitgo/sdk-api@1.10.5) (2023-06-05)
280
-
281
- **Note:** Version bump only for package @bitgo/sdk-api
282
-
283
- ## [1.10.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.10.3...@bitgo/sdk-api@1.10.4) (2023-05-25)
284
-
285
- **Note:** Version bump only for package @bitgo/sdk-api
286
-
287
- ## [1.10.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.10.2...@bitgo/sdk-api@1.10.3) (2023-05-17)
288
-
289
- **Note:** Version bump only for package @bitgo/sdk-api
290
-
291
- ## [1.10.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.10.1...@bitgo/sdk-api@1.10.2) (2023-05-10)
292
-
293
- **Note:** Version bump only for package @bitgo/sdk-api
294
-
295
- ## [1.10.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.10.0...@bitgo/sdk-api@1.10.1) (2023-05-03)
296
-
297
- **Note:** Version bump only for package @bitgo/sdk-api
298
-
299
- # [1.10.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.9.12...@bitgo/sdk-api@1.10.0) (2023-04-25)
300
-
301
- ### Features
302
-
303
- - **sdk-core:** add enterprise method to fetch ecdsa config ([59a2eae](https://github.com/BitGo/BitGoJS/commit/59a2eaea91c03bca95f485e933bfdd3b52896796))
304
- - **sdk-core:** initate, sign and verify ecdsa challenges for enterprise ([529ad9e](https://github.com/BitGo/BitGoJS/commit/529ad9e43e5123359c7417f3af2f5766e752474e))
305
- - **sdk-core:** update ecdsa signing to use enterprise challenge ([c626f00](https://github.com/BitGo/BitGoJS/commit/c626f00e141db2ef4147b3e0c4badf1776729465))
306
-
307
- ## [1.9.12](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.9.11...@bitgo/sdk-api@1.9.12) (2023-04-20)
308
-
309
- **Note:** Version bump only for package @bitgo/sdk-api
310
-
311
- ## [1.9.11](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.9.10...@bitgo/sdk-api@1.9.11) (2023-04-13)
312
-
313
- **Note:** Version bump only for package @bitgo/sdk-api
314
-
315
- ## [1.9.10](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.9.9...@bitgo/sdk-api@1.9.10) (2023-02-17)
316
-
317
- **Note:** Version bump only for package @bitgo/sdk-api
318
-
319
- ## [1.9.9](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.9.6...@bitgo/sdk-api@1.9.9) (2023-02-16)
320
-
321
- ### Bug Fixes
322
-
323
- - **bitgo:** remove enforcement of HMAC verification on all non-prod environments ([118722c](https://github.com/BitGo/BitGoJS/commit/118722c80bfcf8cfc850e07d575ecf10aacb3fd2))
324
-
325
- ## [1.9.8](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.9.6...@bitgo/sdk-api@1.9.8) (2023-02-08)
326
-
327
- ### Bug Fixes
328
-
329
- - **bitgo:** remove enforcement of HMAC verification on all non-prod environments ([118722c](https://github.com/BitGo/BitGoJS/commit/118722c80bfcf8cfc850e07d575ecf10aacb3fd2))
330
-
331
- ## [1.9.7](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.9.6...@bitgo/sdk-api@1.9.7) (2023-01-30)
332
-
333
- ### Bug Fixes
334
-
335
- - **bitgo:** remove enforcement of HMAC verification on all non-prod environments ([118722c](https://github.com/BitGo/BitGoJS/commit/118722c80bfcf8cfc850e07d575ecf10aacb3fd2))
336
-
337
- ## [1.9.6](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.9.5...@bitgo/sdk-api@1.9.6) (2023-01-25)
338
-
339
- ### Bug Fixes
340
-
341
- - **sdk-api:** don't throw a TypeError for errors without request body ([bbdc642](https://github.com/BitGo/BitGoJS/commit/bbdc642419a092d9373e3ed0f1112722954dd827))
342
-
343
- ## [1.9.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.9.4...@bitgo/sdk-api@1.9.5) (2022-12-23)
344
-
345
- **Note:** Version bump only for package @bitgo/sdk-api
346
-
347
- ## [1.9.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.9.3...@bitgo/sdk-api@1.9.4) (2022-12-20)
348
-
349
- **Note:** Version bump only for package @bitgo/sdk-api
350
-
351
- ## [1.9.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.9.2...@bitgo/sdk-api@1.9.3) (2022-12-09)
352
-
353
- ### Bug Fixes
354
-
355
- - enable cookie propagation gating for test and prod ([da6ddb3](https://github.com/BitGo/BitGoJS/commit/da6ddb30d99cb50f1434399a967f7d99e9fc5187))
356
-
357
- ## [1.9.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.9.1...@bitgo/sdk-api@1.9.2) (2022-12-06)
358
-
359
- **Note:** Version bump only for package @bitgo/sdk-api
360
-
361
- ## [1.9.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.9.0...@bitgo/sdk-api@1.9.1) (2022-12-01)
362
-
363
- **Note:** Version bump only for package @bitgo/sdk-api
364
-
365
- # [1.9.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.4.0...@bitgo/sdk-api@1.9.0) (2022-11-29)
366
-
367
- ### Features
368
-
369
- - allow the sdk to optionally send cookies with the request to custom domains ([e40349e](https://github.com/BitGo/BitGoJS/commit/e40349e8e36e946fe8630e94b0796e34b4aee51b))
370
-
371
- # [1.8.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.4.0...@bitgo/sdk-api@1.8.0) (2022-11-04)
372
-
373
- ### Features
374
-
375
- - allow the sdk to optionally send cookies with the request to custom domains ([e40349e](https://github.com/BitGo/BitGoJS/commit/e40349e8e36e946fe8630e94b0796e34b4aee51b))
376
-
377
- # [1.6.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.4.0...@bitgo/sdk-api@1.6.0) (2022-10-27)
378
-
379
- ### Features
380
-
381
- - allow the sdk to optionally send cookies with the request to custom domains ([e40349e](https://github.com/BitGo/BitGoJS/commit/e40349e8e36e946fe8630e94b0796e34b4aee51b))
382
-
383
- # [1.5.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.4.0...@bitgo/sdk-api@1.5.0) (2022-10-25)
384
-
385
- ### Features
386
-
387
- - allow the sdk to optionally send cookies with the request to custom domains ([e40349e](https://github.com/BitGo/BitGoJS/commit/e40349e8e36e946fe8630e94b0796e34b4aee51b))
388
-
389
- # [1.4.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.1.0-rc.33...@bitgo/sdk-api@1.4.0) (2022-10-18)
390
-
391
- ### Bug Fixes
392
-
393
- - **core:** fix bip32/ecpair, API vs Interface ([bec9c1e](https://github.com/BitGo/BitGoJS/commit/bec9c1e6ff0c23108dc27e171abdd3e4d2cfdfb1))
394
- - **sdk-api:** fix txValueLimit type ([029abab](https://github.com/BitGo/BitGoJS/commit/029ababf75eb04a51211782b8b99a476346bf3ff))
395
-
396
- ### Features
397
-
398
- - **sdk-coin-polygon:** support recovery ([15d6021](https://github.com/BitGo/BitGoJS/commit/15d602164d3a2b504d7995e65aa0fbcb38f98e89))
399
- - **utxo-lib:** export BIP32/ECPair interfaces ([8628507](https://github.com/BitGo/BitGoJS/commit/862850781b2e8b36c71608c5ae71424b9ebe9dee))
400
-
401
- # [1.1.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.1.0-rc.33...@bitgo/sdk-api@1.1.0) (2022-07-19)
402
-
403
- **Note:** Version bump only for package @bitgo/sdk-api
404
-
405
- # [1.1.0-rc.33](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.1.0-rc.31...@bitgo/sdk-api@1.1.0-rc.33) (2022-07-19)
406
-
407
- **Note:** Version bump only for package @bitgo/sdk-api
408
-
409
- # [1.1.0-rc.32](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.1.0-rc.31...@bitgo/sdk-api@1.1.0-rc.32) (2022-07-18)
410
-
411
- **Note:** Version bump only for package @bitgo/sdk-api
412
-
413
- # [1.1.0-rc.31](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.1.0-rc.30...@bitgo/sdk-api@1.1.0-rc.31) (2022-07-15)
414
-
415
- **Note:** Version bump only for package @bitgo/sdk-api
416
-
417
- # [1.1.0-rc.30](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.1.0-rc.28...@bitgo/sdk-api@1.1.0-rc.30) (2022-07-15)
418
-
419
- **Note:** Version bump only for package @bitgo/sdk-api
420
-
421
- # [1.1.0-rc.29](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.1.0-rc.28...@bitgo/sdk-api@1.1.0-rc.29) (2022-07-14)
422
-
423
- **Note:** Version bump only for package @bitgo/sdk-api
424
-
425
- # [1.1.0-rc.28](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.1.0-rc.27...@bitgo/sdk-api@1.1.0-rc.28) (2022-07-12)
426
-
427
- **Note:** Version bump only for package @bitgo/sdk-api
428
-
429
- # [1.1.0-rc.27](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.1.0-rc.26...@bitgo/sdk-api@1.1.0-rc.27) (2022-07-11)
430
-
431
- **Note:** Version bump only for package @bitgo/sdk-api
432
-
433
- # [1.1.0-rc.26](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.1.0-rc.25...@bitgo/sdk-api@1.1.0-rc.26) (2022-07-07)
434
-
435
- **Note:** Version bump only for package @bitgo/sdk-api
436
-
437
- # [1.1.0-rc.25](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.1.0-rc.24...@bitgo/sdk-api@1.1.0-rc.25) (2022-07-05)
438
-
439
- **Note:** Version bump only for package @bitgo/sdk-api
440
-
441
- # [1.1.0-rc.24](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.1.0-rc.23...@bitgo/sdk-api@1.1.0-rc.24) (2022-07-01)
442
-
443
- **Note:** Version bump only for package @bitgo/sdk-api
444
-
445
- # [1.1.0-rc.23](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.1.0-rc.22...@bitgo/sdk-api@1.1.0-rc.23) (2022-06-30)
446
-
447
- **Note:** Version bump only for package @bitgo/sdk-api
448
-
449
- # [1.1.0-rc.22](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.1.0-rc.21...@bitgo/sdk-api@1.1.0-rc.22) (2022-06-30)
450
-
451
- **Note:** Version bump only for package @bitgo/sdk-api
452
-
453
- # [1.1.0-rc.21](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.1.0-rc.19...@bitgo/sdk-api@1.1.0-rc.21) (2022-06-29)
454
-
455
- **Note:** Version bump only for package @bitgo/sdk-api
456
-
457
- # [1.1.0-rc.20](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.1.0-rc.19...@bitgo/sdk-api@1.1.0-rc.20) (2022-06-29)
458
-
459
- **Note:** Version bump only for package @bitgo/sdk-api
460
-
461
- # [1.1.0-rc.19](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.1.0-rc.18...@bitgo/sdk-api@1.1.0-rc.19) (2022-06-27)
462
-
463
- **Note:** Version bump only for package @bitgo/sdk-api
464
-
465
- # [1.1.0-rc.18](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.1.0-rc.17...@bitgo/sdk-api@1.1.0-rc.18) (2022-06-23)
466
-
467
- **Note:** Version bump only for package @bitgo/sdk-api
468
-
469
- # [1.1.0-rc.17](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.1.0-rc.16...@bitgo/sdk-api@1.1.0-rc.17) (2022-06-22)
470
-
471
- ### Bug Fixes
472
-
473
- - add dependency check to fix current and future dependency resolutions ([3074335](https://github.com/BitGo/BitGoJS/commit/30743356cff4ebb6d9e185f1a493b187614a1ea9))
474
-
475
- # [1.1.0-rc.16](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.1.0-rc.15...@bitgo/sdk-api@1.1.0-rc.16) (2022-06-21)
476
-
477
- **Note:** Version bump only for package @bitgo/sdk-api
478
-
479
- # [1.1.0-rc.15](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.1.0-rc.14...@bitgo/sdk-api@1.1.0-rc.15) (2022-06-16)
480
-
481
- **Note:** Version bump only for package @bitgo/sdk-api
482
-
483
- # [1.1.0-rc.14](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.1.0-rc.13...@bitgo/sdk-api@1.1.0-rc.14) (2022-06-14)
484
-
485
- **Note:** Version bump only for package @bitgo/sdk-api
486
-
487
- # [1.1.0-rc.13](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.1.0-rc.12...@bitgo/sdk-api@1.1.0-rc.13) (2022-06-14)
488
-
489
- **Note:** Version bump only for package @bitgo/sdk-api
490
-
491
- # [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)
492
-
493
- **Note:** Version bump only for package @bitgo/sdk-api
494
-
495
- # [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)
496
-
497
- ### Features
498
-
499
- - move coinFactory from bitgo to sdk-core ([fb7e902](https://github.com/BitGo/BitGoJS/commit/fb7e902c150a25c40310dc040ca6a8833b097cef))
500
-
501
- # [1.1.0-rc.10](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.1.0-rc.9...@bitgo/sdk-api@1.1.0-rc.10) (2022-06-07)
502
-
503
- ### Bug Fixes
504
-
505
- - **sdk-api:** api uses own version ([e2091e9](https://github.com/BitGo/BitGoJS/commit/e2091e9074f392fcebea468c8cb60cb6eb445b84))
506
-
507
- # [1.1.0-rc.9](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.1.0-rc.8...@bitgo/sdk-api@1.1.0-rc.9) (2022-06-07)
508
-
509
- **Note:** Version bump only for package @bitgo/sdk-api
510
-
511
- # [1.1.0-rc.8](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.1.0-rc.7...@bitgo/sdk-api@1.1.0-rc.8) (2022-06-02)
512
-
513
- **Note:** Version bump only for package @bitgo/sdk-api
514
-
515
- # [1.1.0-rc.7](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.1.0-rc.6...@bitgo/sdk-api@1.1.0-rc.7) (2022-06-02)
516
-
517
- **Note:** Version bump only for package @bitgo/sdk-api
518
-
519
- # [1.1.0-rc.6](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.1.0-rc.5...@bitgo/sdk-api@1.1.0-rc.6) (2022-06-01)
520
-
521
- **Note:** Version bump only for package @bitgo/sdk-api
522
-
523
- # [1.1.0-rc.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.1.0-rc.4...@bitgo/sdk-api@1.1.0-rc.5) (2022-05-23)
524
-
525
- **Note:** Version bump only for package @bitgo/sdk-api
526
-
527
- # [1.1.0-rc.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.1.0-rc.3...@bitgo/sdk-api@1.1.0-rc.4) (2022-05-19)
528
-
529
- **Note:** Version bump only for package @bitgo/sdk-api
530
-
531
- # [1.1.0-rc.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.1.0-rc.2...@bitgo/sdk-api@1.1.0-rc.3) (2022-05-17)
532
-
533
- **Note:** Version bump only for package @bitgo/sdk-api
534
-
535
- # [1.1.0-rc.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.1.0-rc.1...@bitgo/sdk-api@1.1.0-rc.2) (2022-05-16)
536
-
537
- **Note:** Version bump only for package @bitgo/sdk-api
538
-
539
- # [1.1.0-rc.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.1.0-rc.0...@bitgo/sdk-api@1.1.0-rc.1) (2022-05-13)
540
-
541
- **Note:** Version bump only for package @bitgo/sdk-api
542
-
543
- # [1.1.0-rc.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.0.1-rc.3...@bitgo/sdk-api@1.1.0-rc.0) (2022-05-13)
544
-
545
- ### Features
546
-
547
- - **bitgo:** added sdk version to constants call ([6ee0b6a](https://github.com/BitGo/BitGoJS/commit/6ee0b6af92eb204ec220b09de8212f6061d39afb))
548
-
549
- ## [1.0.1-rc.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.0.1-rc.2...@bitgo/sdk-api@1.0.1-rc.3) (2022-05-12)
550
-
551
- **Note:** Version bump only for package @bitgo/sdk-api
552
-
553
- ## [1.0.1-rc.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.0.1-rc.0...@bitgo/sdk-api@1.0.1-rc.1) (2022-04-19)
554
-
555
- **Note:** Version bump only for package @bitgo/sdk-api