@bitgo-beta/sdk-api 1.10.1-beta.94 → 1.10.1-beta.940

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 (39) hide show
  1. package/CHANGELOG.md +901 -0
  2. package/dist/package.json +20 -26
  3. package/dist/src/api.d.ts +3 -3
  4. package/dist/src/api.d.ts.map +1 -1
  5. package/dist/src/api.js +39 -33
  6. package/dist/src/bitgoAPI.d.ts +64 -11
  7. package/dist/src/bitgoAPI.d.ts.map +1 -1
  8. package/dist/src/bitgoAPI.js +357 -121
  9. package/dist/src/encrypt.d.ts +4 -4
  10. package/dist/src/encrypt.d.ts.map +1 -1
  11. package/dist/src/encrypt.js +44 -7
  12. package/dist/src/index.js +6 -2
  13. package/dist/src/types.d.ts +54 -43
  14. package/dist/src/types.d.ts.map +1 -1
  15. package/dist/src/types.js +4 -2
  16. package/dist/src/util.d.ts +12 -0
  17. package/dist/src/util.d.ts.map +1 -1
  18. package/dist/src/util.js +57 -4
  19. package/dist/src/v1/blockchain.js +25 -12
  20. package/dist/src/v1/keychains.js +27 -22
  21. package/dist/src/v1/markets.js +10 -5
  22. package/dist/src/v1/pendingapproval.d.ts.map +1 -1
  23. package/dist/src/v1/pendingapproval.js +57 -18
  24. package/dist/src/v1/pendingapprovals.d.ts.map +1 -1
  25. package/dist/src/v1/pendingapprovals.js +41 -7
  26. package/dist/src/v1/signPsbt.d.ts +14 -0
  27. package/dist/src/v1/signPsbt.d.ts.map +1 -0
  28. package/dist/src/v1/signPsbt.js +69 -0
  29. package/dist/src/v1/transactionBuilder.js +144 -92
  30. package/dist/src/v1/travelRule.js +60 -23
  31. package/dist/src/v1/verifyAddress.d.ts +6 -0
  32. package/dist/src/v1/verifyAddress.d.ts.map +1 -0
  33. package/dist/src/v1/verifyAddress.js +50 -0
  34. package/dist/src/v1/wallet.d.ts.map +1 -1
  35. package/dist/src/v1/wallet.js +428 -224
  36. package/dist/src/v1/wallets.js +93 -37
  37. package/package.json +20 -26
  38. package/dist/web/main.js +0 -2
  39. package/dist/web/main.js.LICENSE.txt +0 -103
package/CHANGELOG.md CHANGED
@@ -3,6 +3,907 @@
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.63.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.63.4...@bitgo/sdk-api@1.63.5) (2025-06-10)
7
+
8
+ **Note:** Version bump only for package @bitgo/sdk-api
9
+
10
+ ## [1.63.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.63.3...@bitgo/sdk-api@1.63.4) (2025-06-05)
11
+
12
+ **Note:** Version bump only for package @bitgo/sdk-api
13
+
14
+ ## [1.63.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.63.2...@bitgo/sdk-api@1.63.3) (2025-06-02)
15
+
16
+ **Note:** Version bump only for package @bitgo/sdk-api
17
+
18
+ ## [1.63.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.63.1...@bitgo/sdk-api@1.63.2) (2025-05-28)
19
+
20
+ **Note:** Version bump only for package @bitgo/sdk-api
21
+
22
+ ## [1.63.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.63.0...@bitgo/sdk-api@1.63.1) (2025-05-22)
23
+
24
+ **Note:** Version bump only for package @bitgo/sdk-api
25
+
26
+ # [1.63.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.62.3...@bitgo/sdk-api@1.63.0) (2025-05-20)
27
+
28
+ ### Bug Fixes
29
+
30
+ - update description details of fingerprintHash and initialHash ([15782b1](https://github.com/BitGo/BitGoJS/commit/15782b18675ce7abc4a50ae64399138d0053d186))
31
+
32
+ ### Features
33
+
34
+ - add initialHash and fingerprintHash as auth options ([015350b](https://github.com/BitGo/BitGoJS/commit/015350b74610eeaa90ecfa116de610f5d27ba4d7))
35
+
36
+ ## [1.62.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.62.2...@bitgo/sdk-api@1.62.3) (2025-05-07)
37
+
38
+ **Note:** Version bump only for package @bitgo/sdk-api
39
+
40
+ ## [1.62.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.62.1...@bitgo/sdk-api@1.62.2) (2025-04-29)
41
+
42
+ **Note:** Version bump only for package @bitgo/sdk-api
43
+
44
+ ## [1.62.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.62.0...@bitgo/sdk-api@1.62.1) (2025-04-25)
45
+
46
+ **Note:** Version bump only for package @bitgo/sdk-api
47
+
48
+ # [1.62.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.61.5...@bitgo/sdk-api@1.62.0) (2025-04-15)
49
+
50
+ ### Features
51
+
52
+ - **sdk-api:** add decryptKeys method for bulk wallet key decryption ([5a6e36f](https://github.com/BitGo/BitGoJS/commit/5a6e36f4adde42b414cd1e739b6f83103e07afbf))
53
+
54
+ ## [1.61.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.61.4...@bitgo/sdk-api@1.61.5) (2025-04-04)
55
+
56
+ **Note:** Version bump only for package @bitgo/sdk-api
57
+
58
+ ## [1.61.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.61.3...@bitgo/sdk-api@1.61.4) (2025-04-02)
59
+
60
+ **Note:** Version bump only for package @bitgo/sdk-api
61
+
62
+ ## [1.61.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.61.2...@bitgo/sdk-api@1.61.3) (2025-03-28)
63
+
64
+ **Note:** Version bump only for package @bitgo/sdk-api
65
+
66
+ ## [1.61.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.61.1...@bitgo/sdk-api@1.61.2) (2025-03-20)
67
+
68
+ **Note:** Version bump only for package @bitgo/sdk-api
69
+
70
+ ## [1.61.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.61.0...@bitgo/sdk-api@1.61.1) (2025-03-18)
71
+
72
+ **Note:** Version bump only for package @bitgo/sdk-api
73
+
74
+ # [1.61.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.60.0...@bitgo/sdk-api@1.61.0) (2025-03-06)
75
+
76
+ ### Features
77
+
78
+ - **sdk-api:** update sdk to support non-json response ([567b4ae](https://github.com/BitGo/BitGoJS/commit/567b4ae9553c22eaa35aca6459a54270fa85c6a6))
79
+
80
+ # [1.60.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.58.8...@bitgo/sdk-api@1.60.0) (2025-03-04)
81
+
82
+ ### Features
83
+
84
+ - **sdk-api:** add support of v3 in sdk-api ([611fe56](https://github.com/BitGo/BitGoJS/commit/611fe564b6261bac56b0dd48b41d5a218e152dc4))
85
+
86
+ # [1.59.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.58.8...@bitgo/sdk-api@1.59.0) (2025-02-26)
87
+
88
+ ### Features
89
+
90
+ - **sdk-api:** add support of v3 in sdk-api ([611fe56](https://github.com/BitGo/BitGoJS/commit/611fe564b6261bac56b0dd48b41d5a218e152dc4))
91
+
92
+ ## [1.58.9](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.58.8...@bitgo/sdk-api@1.58.9) (2025-02-20)
93
+
94
+ **Note:** Version bump only for package @bitgo/sdk-api
95
+
96
+ ## [1.58.8](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.58.7...@bitgo/sdk-api@1.58.8) (2025-02-19)
97
+
98
+ **Note:** Version bump only for package @bitgo/sdk-api
99
+
100
+ ## [1.58.7](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.58.6...@bitgo/sdk-api@1.58.7) (2025-02-11)
101
+
102
+ **Note:** Version bump only for package @bitgo/sdk-api
103
+
104
+ ## [1.58.6](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.58.5...@bitgo/sdk-api@1.58.6) (2025-02-05)
105
+
106
+ **Note:** Version bump only for package @bitgo/sdk-api
107
+
108
+ ## [1.58.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.58.4...@bitgo/sdk-api@1.58.5) (2025-01-28)
109
+
110
+ **Note:** Version bump only for package @bitgo/sdk-api
111
+
112
+ ## [1.58.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.58.3...@bitgo/sdk-api@1.58.4) (2025-01-23)
113
+
114
+ **Note:** Version bump only for package @bitgo/sdk-api
115
+
116
+ ## [1.58.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.58.2...@bitgo/sdk-api@1.58.3) (2025-01-23)
117
+
118
+ **Note:** Version bump only for package @bitgo/sdk-api
119
+
120
+ ## [1.58.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.58.1...@bitgo/sdk-api@1.58.2) (2025-01-20)
121
+
122
+ **Note:** Version bump only for package @bitgo/sdk-api
123
+
124
+ ## [1.58.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.58.0...@bitgo/sdk-api@1.58.1) (2025-01-15)
125
+
126
+ **Note:** Version bump only for package @bitgo/sdk-api
127
+
128
+ # [1.58.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.57.6...@bitgo/sdk-api@1.58.0) (2025-01-09)
129
+
130
+ ### Features
131
+
132
+ - adding support for non-bitgo recovery for coredao and oas ([37f5e49](https://github.com/BitGo/BitGoJS/commit/37f5e4996c115543d068750d633ea5c5ae723725))
133
+ - move hmac fns to own package ([7466b99](https://github.com/BitGo/BitGoJS/commit/7466b99cf2b48e3a746ae082127d7e4f0f95bfef))
134
+
135
+ ## [1.57.6](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.57.5...@bitgo/sdk-api@1.57.6) (2025-01-03)
136
+
137
+ **Note:** Version bump only for package @bitgo/sdk-api
138
+
139
+ ## [1.57.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.57.4...@bitgo/sdk-api@1.57.5) (2024-12-24)
140
+
141
+ **Note:** Version bump only for package @bitgo/sdk-api
142
+
143
+ ## [1.57.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.57.3...@bitgo/sdk-api@1.57.4) (2024-12-19)
144
+
145
+ **Note:** Version bump only for package @bitgo/sdk-api
146
+
147
+ ## [1.57.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.57.1...@bitgo/sdk-api@1.57.3) (2024-12-17)
148
+
149
+ **Note:** Version bump only for package @bitgo/sdk-api
150
+
151
+ ## [1.57.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.57.1...@bitgo/sdk-api@1.57.2) (2024-12-17)
152
+
153
+ **Note:** Version bump only for package @bitgo/sdk-api
154
+
155
+ ## [1.57.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.57.0...@bitgo/sdk-api@1.57.1) (2024-12-12)
156
+
157
+ **Note:** Version bump only for package @bitgo/sdk-api
158
+
159
+ # [1.57.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.56.8...@bitgo/sdk-api@1.57.0) (2024-12-11)
160
+
161
+ ### Features
162
+
163
+ - **sdk-api:** implement custom proxy agent support in BitGoAPI ([cab3958](https://github.com/BitGo/BitGoJS/commit/cab3958288a685f261f67f70a82c520d74a64ec9))
164
+
165
+ ## [1.56.8](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.56.7...@bitgo/sdk-api@1.56.8) (2024-12-03)
166
+
167
+ ### Bug Fixes
168
+
169
+ - handle signPsbtRequest with Bluebird ([12df43d](https://github.com/BitGo/BitGoJS/commit/12df43db7c43f8dd99c451a83408d8226633f5de))
170
+ - **sdk-api:** type errors in old code ([f09599f](https://github.com/BitGo/BitGoJS/commit/f09599fab7052b1dc0689a28b0726857f1917965))
171
+
172
+ ## [1.56.7](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.56.6...@bitgo/sdk-api@1.56.7) (2024-11-26)
173
+
174
+ **Note:** Version bump only for package @bitgo/sdk-api
175
+
176
+ ## [1.56.6](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.56.5...@bitgo/sdk-api@1.56.6) (2024-11-21)
177
+
178
+ **Note:** Version bump only for package @bitgo/sdk-api
179
+
180
+ ## [1.56.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.56.3...@bitgo/sdk-api@1.56.5) (2024-11-19)
181
+
182
+ **Note:** Version bump only for package @bitgo/sdk-api
183
+
184
+ ## [1.56.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.56.3...@bitgo/sdk-api@1.56.4) (2024-11-14)
185
+
186
+ **Note:** Version bump only for package @bitgo/sdk-api
187
+
188
+ ## [1.56.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.56.2...@bitgo/sdk-api@1.56.3) (2024-11-08)
189
+
190
+ **Note:** Version bump only for package @bitgo/sdk-api
191
+
192
+ ## [1.56.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.56.1...@bitgo/sdk-api@1.56.2) (2024-11-07)
193
+
194
+ **Note:** Version bump only for package @bitgo/sdk-api
195
+
196
+ ## [1.56.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.56.0...@bitgo/sdk-api@1.56.1) (2024-11-01)
197
+
198
+ **Note:** Version bump only for package @bitgo/sdk-api
199
+
200
+ # [1.56.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.55.2...@bitgo/sdk-api@1.56.0) (2024-10-22)
201
+
202
+ ### Features
203
+
204
+ - **sdk-api:** gpg encryption for passkey auth ([1eda08f](https://github.com/BitGo/BitGoJS/commit/1eda08f88cd2303c492882ce47fa7865604e7eb9))
205
+ - **sdk-api:** gpg passkey authentication ([2b96e37](https://github.com/BitGo/BitGoJS/commit/2b96e37638bbe336bd91c6a8c7aa6d1eb749dd52))
206
+
207
+ ## [1.55.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.55.1...@bitgo/sdk-api@1.55.2) (2024-10-15)
208
+
209
+ **Note:** Version bump only for package @bitgo/sdk-api
210
+
211
+ ## [1.55.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.55.0...@bitgo/sdk-api@1.55.1) (2024-10-08)
212
+
213
+ **Note:** Version bump only for package @bitgo/sdk-api
214
+
215
+ # [1.55.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.54.3...@bitgo/sdk-api@1.55.0) (2024-10-04)
216
+
217
+ ### Bug Fixes
218
+
219
+ - move spec to unit-test scripto ([3a7f032](https://github.com/BitGo/BitGoJS/commit/3a7f0326d105a956597f66d2742c7c8a670ce9a7))
220
+ - **sdk-api:** use createPsbtDecode instead of createPsbtFromBuffer ([06d0b30](https://github.com/BitGo/BitGoJS/commit/06d0b30e6987678c8147f98781f17cdc4e9cb37b))
221
+
222
+ ### Features
223
+
224
+ - add psbt signing for v1 wallets ([2c01a77](https://github.com/BitGo/BitGoJS/commit/2c01a77b42904bad9ab63cc31af4c9fdeea58f5e))
225
+ - **sdk-api:** assume unencrypted access token ([6b8dec1](https://github.com/BitGo/BitGoJS/commit/6b8dec1975ce99d6b144829f5a3d77a293e51d57))
226
+ - **sdk-api:** authenticateWithPasskey ([0dce834](https://github.com/BitGo/BitGoJS/commit/0dce834c5415d469e2332723998ac02f9ce1f98c))
227
+ - **sdk-api:** authenticateWithPasskey method ([4320e2b](https://github.com/BitGo/BitGoJS/commit/4320e2b57d52cd903e9d7e9721f5bbfe46eddb4f))
228
+
229
+ ## [1.54.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.54.2...@bitgo/sdk-api@1.54.3) (2024-09-24)
230
+
231
+ **Note:** Version bump only for package @bitgo/sdk-api
232
+
233
+ ## [1.54.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.54.1...@bitgo/sdk-api@1.54.2) (2024-09-19)
234
+
235
+ **Note:** Version bump only for package @bitgo/sdk-api
236
+
237
+ ## [1.54.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.54.0...@bitgo/sdk-api@1.54.1) (2024-09-16)
238
+
239
+ **Note:** Version bump only for package @bitgo/sdk-api
240
+
241
+ # [1.54.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.53.3...@bitgo/sdk-api@1.54.0) (2024-09-10)
242
+
243
+ ### Features
244
+
245
+ - bump typescript to 4.9 ([6675058](https://github.com/BitGo/BitGoJS/commit/667505862b79d24e3f625e7306d949acf07691bf))
246
+
247
+ ## [1.53.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.53.2...@bitgo/sdk-api@1.53.3) (2024-09-03)
248
+
249
+ **Note:** Version bump only for package @bitgo/sdk-api
250
+
251
+ ## [1.53.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.53.1...@bitgo/sdk-api@1.53.2) (2024-08-29)
252
+
253
+ **Note:** Version bump only for package @bitgo/sdk-api
254
+
255
+ ## [1.53.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.53.0...@bitgo/sdk-api@1.53.1) (2024-08-27)
256
+
257
+ **Note:** Version bump only for package @bitgo/sdk-api
258
+
259
+ # [1.53.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.51.3...@bitgo/sdk-api@1.53.0) (2024-08-20)
260
+
261
+ ### Features
262
+
263
+ - add debug logs to transactionBuilder ([f8764dd](https://github.com/BitGo/BitGoJS/commit/f8764dddd44785a38d97788bcde0b5e0deeaae70))
264
+
265
+ # [1.52.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.51.3...@bitgo/sdk-api@1.52.0) (2024-08-13)
266
+
267
+ ### Features
268
+
269
+ - add debug logs to transactionBuilder ([f8764dd](https://github.com/BitGo/BitGoJS/commit/f8764dddd44785a38d97788bcde0b5e0deeaae70))
270
+
271
+ ## [1.51.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.51.2...@bitgo/sdk-api@1.51.3) (2024-08-07)
272
+
273
+ **Note:** Version bump only for package @bitgo/sdk-api
274
+
275
+ ## [1.51.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.51.1...@bitgo/sdk-api@1.51.2) (2024-07-30)
276
+
277
+ **Note:** Version bump only for package @bitgo/sdk-api
278
+
279
+ ## [1.51.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.51.0...@bitgo/sdk-api@1.51.1) (2024-07-24)
280
+
281
+ **Note:** Version bump only for package @bitgo/sdk-api
282
+
283
+ # [1.51.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.50.1...@bitgo/sdk-api@1.51.0) (2024-07-16)
284
+
285
+ ### Features
286
+
287
+ - **root:** add Adata validation for DSG session validation ([2f01009](https://github.com/BitGo/BitGoJS/commit/2f0100912f7258625228ee058092900be8693d55))
288
+ - **sdk-api:** add adata param to encryption methods ([61e7be9](https://github.com/BitGo/BitGoJS/commit/61e7be99cbb99a03a4f6e50af82f6d95acd45785))
289
+
290
+ ## [1.50.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.50.0...@bitgo/sdk-api@1.50.1) (2024-07-04)
291
+
292
+ **Note:** Version bump only for package @bitgo/sdk-api
293
+
294
+ # [1.50.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.49.4...@bitgo/sdk-api@1.50.0) (2024-07-02)
295
+
296
+ ### Features
297
+
298
+ - add `sweep` function for v1 wallets ([a78e2cf](https://github.com/BitGo/BitGoJS/commit/a78e2cfaec23d3a1d129b757e0bcba76ce12addf))
299
+ - **sdk-api:** add bscscan config ([2df7f75](https://github.com/BitGo/BitGoJS/commit/2df7f75caf9ff29be9a96150933b942701091e9a))
300
+
301
+ ## [1.49.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.49.3...@bitgo/sdk-api@1.49.4) (2024-06-27)
302
+
303
+ **Note:** Version bump only for package @bitgo/sdk-api
304
+
305
+ ## [1.49.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.49.2...@bitgo/sdk-api@1.49.3) (2024-06-26)
306
+
307
+ **Note:** Version bump only for package @bitgo/sdk-api
308
+
309
+ ## [1.49.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.49.0...@bitgo/sdk-api@1.49.2) (2024-06-21)
310
+
311
+ **Note:** Version bump only for package @bitgo/sdk-api
312
+
313
+ ## [1.49.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.49.0...@bitgo/sdk-api@1.49.1) (2024-06-20)
314
+
315
+ **Note:** Version bump only for package @bitgo/sdk-api
316
+
317
+ # [1.49.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.48.1...@bitgo/sdk-api@1.49.0) (2024-06-14)
318
+
319
+ ### Features
320
+
321
+ - add `recover` function for v1 btc wallets ([16e3b25](https://github.com/BitGo/BitGoJS/commit/16e3b2550baab6d15795ee8314935ee3f13c5af1))
322
+
323
+ ## [1.48.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.48.0...@bitgo/sdk-api@1.48.1) (2024-06-11)
324
+
325
+ **Note:** Version bump only for package @bitgo/sdk-api
326
+
327
+ # [1.48.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.47.5...@bitgo/sdk-api@1.48.0) (2024-06-05)
328
+
329
+ ### Features
330
+
331
+ - add forReset2fa flag in authenticate options ([1f65868](https://github.com/BitGo/BitGoJS/commit/1f658684ecabef457efd51f07e321a5048eaf6e2))
332
+
333
+ ## [1.47.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.47.4...@bitgo/sdk-api@1.47.5) (2024-05-31)
334
+
335
+ **Note:** Version bump only for package @bitgo/sdk-api
336
+
337
+ ## [1.47.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.47.3...@bitgo/sdk-api@1.47.4) (2024-05-28)
338
+
339
+ **Note:** Version bump only for package @bitgo/sdk-api
340
+
341
+ ## [1.47.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.47.2...@bitgo/sdk-api@1.47.3) (2024-05-22)
342
+
343
+ **Note:** Version bump only for package @bitgo/sdk-api
344
+
345
+ ## [1.47.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.47.1...@bitgo/sdk-api@1.47.2) (2024-05-17)
346
+
347
+ **Note:** Version bump only for package @bitgo/sdk-api
348
+
349
+ ## [1.47.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.47.0...@bitgo/sdk-api@1.47.1) (2024-05-13)
350
+
351
+ **Note:** Version bump only for package @bitgo/sdk-api
352
+
353
+ # [1.47.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.46.0...@bitgo/sdk-api@1.47.0) (2024-05-08)
354
+
355
+ ### Features
356
+
357
+ - move verifyAddress func to own file ([07797bc](https://github.com/BitGo/BitGoJS/commit/07797bc9bc1265a878a066c41e971bd50b3abb0d))
358
+ - support creating v1 transaction to bech32 recipient ([2039ee5](https://github.com/BitGo/BitGoJS/commit/2039ee5e5677e48582e5e1b53281888a965b2f0d))
359
+
360
+ # [1.46.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.45.4...@bitgo/sdk-api@1.46.0) (2024-05-01)
361
+
362
+ ### Features
363
+
364
+ - support bech32 recipient for v1 wallets ([b60c306](https://github.com/BitGo/BitGoJS/commit/b60c3068208d1c5422cc1388723343b0ddc82104))
365
+
366
+ ## [1.45.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.45.3...@bitgo/sdk-api@1.45.4) (2024-04-25)
367
+
368
+ **Note:** Version bump only for package @bitgo/sdk-api
369
+
370
+ ## [1.45.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.45.2...@bitgo/sdk-api@1.45.3) (2024-04-24)
371
+
372
+ ### Bug Fixes
373
+
374
+ - superagent upgrade to 9.0 ([6e9aa43](https://github.com/BitGo/BitGoJS/commit/6e9aa43a6d2999298abd450ceb168d664b8b926d))
375
+
376
+ ## [1.45.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.45.1...@bitgo/sdk-api@1.45.2) (2024-04-22)
377
+
378
+ **Note:** Version bump only for package @bitgo/sdk-api
379
+
380
+ ## [1.45.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.45.0...@bitgo/sdk-api@1.45.1) (2024-04-17)
381
+
382
+ ### Reverts
383
+
384
+ - Revert "feat: protect pass by value when sending data out" ([ef1497f](https://github.com/BitGo/BitGoJS/commit/ef1497ffdc9c158300c32a596828081d32eb6f3a))
385
+
386
+ # [1.45.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.44.2...@bitgo/sdk-api@1.45.0) (2024-04-12)
387
+
388
+ ### Features
389
+
390
+ - **bitgo:** add PATCH and OPTIONS to redirectRequest ([4c8ba7a](https://github.com/BitGo/BitGoJS/commit/4c8ba7abb5718261774352e1a191f0ab5dc5e616))
391
+
392
+ ## [1.44.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.44.1...@bitgo/sdk-api@1.44.2) (2024-04-10)
393
+
394
+ **Note:** Version bump only for package @bitgo/sdk-api
395
+
396
+ ## [1.44.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.44.0...@bitgo/sdk-api@1.44.1) (2024-04-09)
397
+
398
+ **Note:** Version bump only for package @bitgo/sdk-api
399
+
400
+ # [1.44.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.43.6...@bitgo/sdk-api@1.44.0) (2024-04-08)
401
+
402
+ ### Features
403
+
404
+ - protect pass by value when sending data out ([8755bdd](https://github.com/BitGo/BitGoJS/commit/8755bdd5f4174de21f0b7e4c1e7bb74fb9b8e40f))
405
+
406
+ ## [1.43.6](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.43.5...@bitgo/sdk-api@1.43.6) (2024-04-05)
407
+
408
+ **Note:** Version bump only for package @bitgo/sdk-api
409
+
410
+ ## [1.43.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.43.4...@bitgo/sdk-api@1.43.5) (2024-03-28)
411
+
412
+ **Note:** Version bump only for package @bitgo/sdk-api
413
+
414
+ ## [1.43.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.43.3...@bitgo/sdk-api@1.43.4) (2024-03-19)
415
+
416
+ **Note:** Version bump only for package @bitgo/sdk-api
417
+
418
+ ## [1.43.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.43.2...@bitgo/sdk-api@1.43.3) (2024-03-11)
419
+
420
+ **Note:** Version bump only for package @bitgo/sdk-api
421
+
422
+ ## [1.43.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.43.1...@bitgo/sdk-api@1.43.2) (2024-02-28)
423
+
424
+ **Note:** Version bump only for package @bitgo/sdk-api
425
+
426
+ ## [1.43.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.43.0...@bitgo/sdk-api@1.43.1) (2024-02-22)
427
+
428
+ ### Bug Fixes
429
+
430
+ - **sdk-api:** fix proxy after proxy-agent version bump ([4580762](https://github.com/BitGo/BitGoJS/commit/4580762212b6688a33239fb241de3c6e53a7dc58))
431
+
432
+ # [1.43.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.13.0...@bitgo/sdk-api@1.43.0) (2024-02-19)
433
+
434
+ ### Bug Fixes
435
+
436
+ - **bitgo:** add overrides and resolutions to pkgs ([14c33b4](https://github.com/BitGo/BitGoJS/commit/14c33b4bbffda09ba6a389f540c1fb8cc2a43bf9))
437
+ - **root:** bump proxy agent ([c15dd27](https://github.com/BitGo/BitGoJS/commit/c15dd2778f56620aab8ab85d20c929fce64c6f66))
438
+ - **sdk-api:** drop `superagent-proxy` dependency ([06a86fd](https://github.com/BitGo/BitGoJS/commit/06a86fd3def3865ac05713bd879e2d2df32c599d))
439
+ - **sdk-api:** fix proxy-agent usage ([1f194e2](https://github.com/BitGo/BitGoJS/commit/1f194e2cf4b2b8a1e33b7401676a33b09cf46ec9))
440
+ - **sdk-api:** remove sdk-api web bundle ([25da067](https://github.com/BitGo/BitGoJS/commit/25da06792476f5f9b23c33a0e31a361b1ae3b636))
441
+ - **sdk-api:** upgrade critical vulnerabilities from snyk scan ([cd97347](https://github.com/BitGo/BitGoJS/commit/cd97347046b1a6644db6682e9f8e9ca8b5fe4ad7))
442
+ - **statics:** make corrections for arbeth and opeth ([5dfc405](https://github.com/BitGo/BitGoJS/commit/5dfc405a36fc97b2c902fec44562b169d8013a18))
443
+
444
+ ### Features
445
+
446
+ - improve logic and add unit test ([722d729](https://github.com/BitGo/BitGoJS/commit/722d729600ff6de2a04e93329d27e406f51a456b))
447
+ - **sdk-api:** add check to see if the derived xpub matches ([efef716](https://github.com/BitGo/BitGoJS/commit/efef7166e37a2de6b5dfe1d1ea3f4d9493d3a7dd))
448
+ - **sdk-api:** add size correction factor for transactions created ([5f0131c](https://github.com/BitGo/BitGoJS/commit/5f0131cd7016ad7dc4cf4b0be177e0c7ab7f4d25))
449
+ - **sdk-api:** test for fully signed tx of v1 safe wallet ([ec91fb6](https://github.com/BitGo/BitGoJS/commit/ec91fb616187983611044230097236fa9229f55d))
450
+ - **utxo-lib:** add tests for v1 safe wallets with uncompressed ([4ac75f0](https://github.com/BitGo/BitGoJS/commit/4ac75f0031a40aa17de37f176e3493284cba4cac))
451
+
452
+ # [1.41.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.13.0...@bitgo/sdk-api@1.41.0) (2024-01-30)
453
+
454
+ ### Bug Fixes
455
+
456
+ - **bitgo:** add overrides and resolutions to pkgs ([14c33b4](https://github.com/BitGo/BitGoJS/commit/14c33b4bbffda09ba6a389f540c1fb8cc2a43bf9))
457
+ - **sdk-api:** drop `superagent-proxy` dependency ([06a86fd](https://github.com/BitGo/BitGoJS/commit/06a86fd3def3865ac05713bd879e2d2df32c599d))
458
+ - **sdk-api:** fix proxy-agent usage ([1f194e2](https://github.com/BitGo/BitGoJS/commit/1f194e2cf4b2b8a1e33b7401676a33b09cf46ec9))
459
+ - **sdk-api:** remove sdk-api web bundle ([25da067](https://github.com/BitGo/BitGoJS/commit/25da06792476f5f9b23c33a0e31a361b1ae3b636))
460
+ - **sdk-api:** upgrade critical vulnerabilities from snyk scan ([cd97347](https://github.com/BitGo/BitGoJS/commit/cd97347046b1a6644db6682e9f8e9ca8b5fe4ad7))
461
+ - **statics:** make corrections for arbeth and opeth ([5dfc405](https://github.com/BitGo/BitGoJS/commit/5dfc405a36fc97b2c902fec44562b169d8013a18))
462
+
463
+ ### Features
464
+
465
+ - improve logic and add unit test ([722d729](https://github.com/BitGo/BitGoJS/commit/722d729600ff6de2a04e93329d27e406f51a456b))
466
+ - **sdk-api:** add check to see if the derived xpub matches ([efef716](https://github.com/BitGo/BitGoJS/commit/efef7166e37a2de6b5dfe1d1ea3f4d9493d3a7dd))
467
+ - **sdk-api:** add size correction factor for transactions created ([5f0131c](https://github.com/BitGo/BitGoJS/commit/5f0131cd7016ad7dc4cf4b0be177e0c7ab7f4d25))
468
+ - **sdk-api:** test for fully signed tx of v1 safe wallet ([ec91fb6](https://github.com/BitGo/BitGoJS/commit/ec91fb616187983611044230097236fa9229f55d))
469
+ - **utxo-lib:** add tests for v1 safe wallets with uncompressed ([4ac75f0](https://github.com/BitGo/BitGoJS/commit/4ac75f0031a40aa17de37f176e3493284cba4cac))
470
+
471
+ # [1.40.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.13.0...@bitgo/sdk-api@1.40.0) (2024-01-26)
472
+
473
+ ### Bug Fixes
474
+
475
+ - **bitgo:** add overrides and resolutions to pkgs ([14c33b4](https://github.com/BitGo/BitGoJS/commit/14c33b4bbffda09ba6a389f540c1fb8cc2a43bf9))
476
+ - **sdk-api:** drop `superagent-proxy` dependency ([06a86fd](https://github.com/BitGo/BitGoJS/commit/06a86fd3def3865ac05713bd879e2d2df32c599d))
477
+ - **sdk-api:** fix proxy-agent usage ([1f194e2](https://github.com/BitGo/BitGoJS/commit/1f194e2cf4b2b8a1e33b7401676a33b09cf46ec9))
478
+ - **sdk-api:** remove sdk-api web bundle ([25da067](https://github.com/BitGo/BitGoJS/commit/25da06792476f5f9b23c33a0e31a361b1ae3b636))
479
+ - **sdk-api:** upgrade critical vulnerabilities from snyk scan ([cd97347](https://github.com/BitGo/BitGoJS/commit/cd97347046b1a6644db6682e9f8e9ca8b5fe4ad7))
480
+ - **statics:** make corrections for arbeth and opeth ([5dfc405](https://github.com/BitGo/BitGoJS/commit/5dfc405a36fc97b2c902fec44562b169d8013a18))
481
+
482
+ ### Features
483
+
484
+ - improve logic and add unit test ([722d729](https://github.com/BitGo/BitGoJS/commit/722d729600ff6de2a04e93329d27e406f51a456b))
485
+ - **sdk-api:** add check to see if the derived xpub matches ([efef716](https://github.com/BitGo/BitGoJS/commit/efef7166e37a2de6b5dfe1d1ea3f4d9493d3a7dd))
486
+ - **sdk-api:** add size correction factor for transactions created ([5f0131c](https://github.com/BitGo/BitGoJS/commit/5f0131cd7016ad7dc4cf4b0be177e0c7ab7f4d25))
487
+ - **sdk-api:** test for fully signed tx of v1 safe wallet ([ec91fb6](https://github.com/BitGo/BitGoJS/commit/ec91fb616187983611044230097236fa9229f55d))
488
+ - **utxo-lib:** add tests for v1 safe wallets with uncompressed ([4ac75f0](https://github.com/BitGo/BitGoJS/commit/4ac75f0031a40aa17de37f176e3493284cba4cac))
489
+
490
+ # [1.39.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.13.0...@bitgo/sdk-api@1.39.0) (2024-01-26)
491
+
492
+ ### Bug Fixes
493
+
494
+ - **bitgo:** add overrides and resolutions to pkgs ([14c33b4](https://github.com/BitGo/BitGoJS/commit/14c33b4bbffda09ba6a389f540c1fb8cc2a43bf9))
495
+ - **sdk-api:** drop `superagent-proxy` dependency ([06a86fd](https://github.com/BitGo/BitGoJS/commit/06a86fd3def3865ac05713bd879e2d2df32c599d))
496
+ - **sdk-api:** fix proxy-agent usage ([1f194e2](https://github.com/BitGo/BitGoJS/commit/1f194e2cf4b2b8a1e33b7401676a33b09cf46ec9))
497
+ - **sdk-api:** remove sdk-api web bundle ([25da067](https://github.com/BitGo/BitGoJS/commit/25da06792476f5f9b23c33a0e31a361b1ae3b636))
498
+ - **sdk-api:** upgrade critical vulnerabilities from snyk scan ([cd97347](https://github.com/BitGo/BitGoJS/commit/cd97347046b1a6644db6682e9f8e9ca8b5fe4ad7))
499
+ - **statics:** make corrections for arbeth and opeth ([5dfc405](https://github.com/BitGo/BitGoJS/commit/5dfc405a36fc97b2c902fec44562b169d8013a18))
500
+
501
+ ### Features
502
+
503
+ - improve logic and add unit test ([722d729](https://github.com/BitGo/BitGoJS/commit/722d729600ff6de2a04e93329d27e406f51a456b))
504
+ - **sdk-api:** add check to see if the derived xpub matches ([efef716](https://github.com/BitGo/BitGoJS/commit/efef7166e37a2de6b5dfe1d1ea3f4d9493d3a7dd))
505
+ - **sdk-api:** add size correction factor for transactions created ([5f0131c](https://github.com/BitGo/BitGoJS/commit/5f0131cd7016ad7dc4cf4b0be177e0c7ab7f4d25))
506
+ - **sdk-api:** test for fully signed tx of v1 safe wallet ([ec91fb6](https://github.com/BitGo/BitGoJS/commit/ec91fb616187983611044230097236fa9229f55d))
507
+ - **utxo-lib:** add tests for v1 safe wallets with uncompressed ([4ac75f0](https://github.com/BitGo/BitGoJS/commit/4ac75f0031a40aa17de37f176e3493284cba4cac))
508
+
509
+ # [1.38.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.13.0...@bitgo/sdk-api@1.38.0) (2024-01-25)
510
+
511
+ ### Bug Fixes
512
+
513
+ - **bitgo:** add overrides and resolutions to pkgs ([14c33b4](https://github.com/BitGo/BitGoJS/commit/14c33b4bbffda09ba6a389f540c1fb8cc2a43bf9))
514
+ - **sdk-api:** drop `superagent-proxy` dependency ([06a86fd](https://github.com/BitGo/BitGoJS/commit/06a86fd3def3865ac05713bd879e2d2df32c599d))
515
+ - **sdk-api:** fix proxy-agent usage ([1f194e2](https://github.com/BitGo/BitGoJS/commit/1f194e2cf4b2b8a1e33b7401676a33b09cf46ec9))
516
+ - **sdk-api:** remove sdk-api web bundle ([25da067](https://github.com/BitGo/BitGoJS/commit/25da06792476f5f9b23c33a0e31a361b1ae3b636))
517
+ - **sdk-api:** upgrade critical vulnerabilities from snyk scan ([cd97347](https://github.com/BitGo/BitGoJS/commit/cd97347046b1a6644db6682e9f8e9ca8b5fe4ad7))
518
+ - **statics:** make corrections for arbeth and opeth ([5dfc405](https://github.com/BitGo/BitGoJS/commit/5dfc405a36fc97b2c902fec44562b169d8013a18))
519
+
520
+ ### Features
521
+
522
+ - improve logic and add unit test ([722d729](https://github.com/BitGo/BitGoJS/commit/722d729600ff6de2a04e93329d27e406f51a456b))
523
+ - **sdk-api:** add check to see if the derived xpub matches ([efef716](https://github.com/BitGo/BitGoJS/commit/efef7166e37a2de6b5dfe1d1ea3f4d9493d3a7dd))
524
+ - **sdk-api:** add size correction factor for transactions created ([5f0131c](https://github.com/BitGo/BitGoJS/commit/5f0131cd7016ad7dc4cf4b0be177e0c7ab7f4d25))
525
+ - **sdk-api:** test for fully signed tx of v1 safe wallet ([ec91fb6](https://github.com/BitGo/BitGoJS/commit/ec91fb616187983611044230097236fa9229f55d))
526
+ - **utxo-lib:** add tests for v1 safe wallets with uncompressed ([4ac75f0](https://github.com/BitGo/BitGoJS/commit/4ac75f0031a40aa17de37f176e3493284cba4cac))
527
+
528
+ # [1.37.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.13.0...@bitgo/sdk-api@1.37.0) (2024-01-22)
529
+
530
+ ### Bug Fixes
531
+
532
+ - **bitgo:** add overrides and resolutions to pkgs ([14c33b4](https://github.com/BitGo/BitGoJS/commit/14c33b4bbffda09ba6a389f540c1fb8cc2a43bf9))
533
+ - **sdk-api:** drop `superagent-proxy` dependency ([06a86fd](https://github.com/BitGo/BitGoJS/commit/06a86fd3def3865ac05713bd879e2d2df32c599d))
534
+ - **sdk-api:** fix proxy-agent usage ([1f194e2](https://github.com/BitGo/BitGoJS/commit/1f194e2cf4b2b8a1e33b7401676a33b09cf46ec9))
535
+ - **sdk-api:** remove sdk-api web bundle ([25da067](https://github.com/BitGo/BitGoJS/commit/25da06792476f5f9b23c33a0e31a361b1ae3b636))
536
+ - **sdk-api:** upgrade critical vulnerabilities from snyk scan ([cd97347](https://github.com/BitGo/BitGoJS/commit/cd97347046b1a6644db6682e9f8e9ca8b5fe4ad7))
537
+ - **statics:** make corrections for arbeth and opeth ([5dfc405](https://github.com/BitGo/BitGoJS/commit/5dfc405a36fc97b2c902fec44562b169d8013a18))
538
+
539
+ ### Features
540
+
541
+ - improve logic and add unit test ([722d729](https://github.com/BitGo/BitGoJS/commit/722d729600ff6de2a04e93329d27e406f51a456b))
542
+ - **sdk-api:** add check to see if the derived xpub matches ([efef716](https://github.com/BitGo/BitGoJS/commit/efef7166e37a2de6b5dfe1d1ea3f4d9493d3a7dd))
543
+ - **sdk-api:** add size correction factor for transactions created ([5f0131c](https://github.com/BitGo/BitGoJS/commit/5f0131cd7016ad7dc4cf4b0be177e0c7ab7f4d25))
544
+ - **sdk-api:** test for fully signed tx of v1 safe wallet ([ec91fb6](https://github.com/BitGo/BitGoJS/commit/ec91fb616187983611044230097236fa9229f55d))
545
+ - **utxo-lib:** add tests for v1 safe wallets with uncompressed ([4ac75f0](https://github.com/BitGo/BitGoJS/commit/4ac75f0031a40aa17de37f176e3493284cba4cac))
546
+
547
+ # [1.36.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.13.0...@bitgo/sdk-api@1.36.0) (2024-01-09)
548
+
549
+ ### Bug Fixes
550
+
551
+ - **bitgo:** add overrides and resolutions to pkgs ([14c33b4](https://github.com/BitGo/BitGoJS/commit/14c33b4bbffda09ba6a389f540c1fb8cc2a43bf9))
552
+ - **sdk-api:** drop `superagent-proxy` dependency ([06a86fd](https://github.com/BitGo/BitGoJS/commit/06a86fd3def3865ac05713bd879e2d2df32c599d))
553
+ - **sdk-api:** fix proxy-agent usage ([1f194e2](https://github.com/BitGo/BitGoJS/commit/1f194e2cf4b2b8a1e33b7401676a33b09cf46ec9))
554
+ - **sdk-api:** remove sdk-api web bundle ([25da067](https://github.com/BitGo/BitGoJS/commit/25da06792476f5f9b23c33a0e31a361b1ae3b636))
555
+ - **sdk-api:** upgrade critical vulnerabilities from snyk scan ([cd97347](https://github.com/BitGo/BitGoJS/commit/cd97347046b1a6644db6682e9f8e9ca8b5fe4ad7))
556
+ - **statics:** make corrections for arbeth and opeth ([5dfc405](https://github.com/BitGo/BitGoJS/commit/5dfc405a36fc97b2c902fec44562b169d8013a18))
557
+
558
+ ### Features
559
+
560
+ - improve logic and add unit test ([722d729](https://github.com/BitGo/BitGoJS/commit/722d729600ff6de2a04e93329d27e406f51a456b))
561
+ - **sdk-api:** add check to see if the derived xpub matches ([efef716](https://github.com/BitGo/BitGoJS/commit/efef7166e37a2de6b5dfe1d1ea3f4d9493d3a7dd))
562
+ - **sdk-api:** add size correction factor for transactions created ([5f0131c](https://github.com/BitGo/BitGoJS/commit/5f0131cd7016ad7dc4cf4b0be177e0c7ab7f4d25))
563
+ - **sdk-api:** test for fully signed tx of v1 safe wallet ([ec91fb6](https://github.com/BitGo/BitGoJS/commit/ec91fb616187983611044230097236fa9229f55d))
564
+ - **utxo-lib:** add tests for v1 safe wallets with uncompressed ([4ac75f0](https://github.com/BitGo/BitGoJS/commit/4ac75f0031a40aa17de37f176e3493284cba4cac))
565
+
566
+ # [1.35.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.13.0...@bitgo/sdk-api@1.35.0) (2024-01-03)
567
+
568
+ ### Bug Fixes
569
+
570
+ - **bitgo:** add overrides and resolutions to pkgs ([14c33b4](https://github.com/BitGo/BitGoJS/commit/14c33b4bbffda09ba6a389f540c1fb8cc2a43bf9))
571
+ - **sdk-api:** drop `superagent-proxy` dependency ([06a86fd](https://github.com/BitGo/BitGoJS/commit/06a86fd3def3865ac05713bd879e2d2df32c599d))
572
+ - **sdk-api:** fix proxy-agent usage ([1f194e2](https://github.com/BitGo/BitGoJS/commit/1f194e2cf4b2b8a1e33b7401676a33b09cf46ec9))
573
+ - **sdk-api:** upgrade critical vulnerabilities from snyk scan ([cd97347](https://github.com/BitGo/BitGoJS/commit/cd97347046b1a6644db6682e9f8e9ca8b5fe4ad7))
574
+ - **statics:** make corrections for arbeth and opeth ([5dfc405](https://github.com/BitGo/BitGoJS/commit/5dfc405a36fc97b2c902fec44562b169d8013a18))
575
+
576
+ ### Features
577
+
578
+ - improve logic and add unit test ([722d729](https://github.com/BitGo/BitGoJS/commit/722d729600ff6de2a04e93329d27e406f51a456b))
579
+ - **sdk-api:** add check to see if the derived xpub matches ([efef716](https://github.com/BitGo/BitGoJS/commit/efef7166e37a2de6b5dfe1d1ea3f4d9493d3a7dd))
580
+ - **sdk-api:** add size correction factor for transactions created ([5f0131c](https://github.com/BitGo/BitGoJS/commit/5f0131cd7016ad7dc4cf4b0be177e0c7ab7f4d25))
581
+ - **sdk-api:** test for fully signed tx of v1 safe wallet ([ec91fb6](https://github.com/BitGo/BitGoJS/commit/ec91fb616187983611044230097236fa9229f55d))
582
+ - **utxo-lib:** add tests for v1 safe wallets with uncompressed ([4ac75f0](https://github.com/BitGo/BitGoJS/commit/4ac75f0031a40aa17de37f176e3493284cba4cac))
583
+
584
+ # [1.34.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.13.0...@bitgo/sdk-api@1.34.0) (2023-12-18)
585
+
586
+ ### Bug Fixes
587
+
588
+ - **bitgo:** add overrides and resolutions to pkgs ([14c33b4](https://github.com/BitGo/BitGoJS/commit/14c33b4bbffda09ba6a389f540c1fb8cc2a43bf9))
589
+ - **sdk-api:** drop `superagent-proxy` dependency ([06a86fd](https://github.com/BitGo/BitGoJS/commit/06a86fd3def3865ac05713bd879e2d2df32c599d))
590
+ - **sdk-api:** upgrade critical vulnerabilities from snyk scan ([cd97347](https://github.com/BitGo/BitGoJS/commit/cd97347046b1a6644db6682e9f8e9ca8b5fe4ad7))
591
+ - **statics:** make corrections for arbeth and opeth ([5dfc405](https://github.com/BitGo/BitGoJS/commit/5dfc405a36fc97b2c902fec44562b169d8013a18))
592
+
593
+ ### Features
594
+
595
+ - improve logic and add unit test ([722d729](https://github.com/BitGo/BitGoJS/commit/722d729600ff6de2a04e93329d27e406f51a456b))
596
+ - **sdk-api:** add check to see if the derived xpub matches ([efef716](https://github.com/BitGo/BitGoJS/commit/efef7166e37a2de6b5dfe1d1ea3f4d9493d3a7dd))
597
+ - **sdk-api:** add size correction factor for transactions created ([5f0131c](https://github.com/BitGo/BitGoJS/commit/5f0131cd7016ad7dc4cf4b0be177e0c7ab7f4d25))
598
+ - **sdk-api:** test for fully signed tx of v1 safe wallet ([ec91fb6](https://github.com/BitGo/BitGoJS/commit/ec91fb616187983611044230097236fa9229f55d))
599
+ - **utxo-lib:** add tests for v1 safe wallets with uncompressed ([4ac75f0](https://github.com/BitGo/BitGoJS/commit/4ac75f0031a40aa17de37f176e3493284cba4cac))
600
+
601
+ # [1.33.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.13.0...@bitgo/sdk-api@1.33.0) (2023-12-12)
602
+
603
+ ### Bug Fixes
604
+
605
+ - **bitgo:** add overrides and resolutions to pkgs ([14c33b4](https://github.com/BitGo/BitGoJS/commit/14c33b4bbffda09ba6a389f540c1fb8cc2a43bf9))
606
+ - **sdk-api:** drop `superagent-proxy` dependency ([06a86fd](https://github.com/BitGo/BitGoJS/commit/06a86fd3def3865ac05713bd879e2d2df32c599d))
607
+ - **sdk-api:** upgrade critical vulnerabilities from snyk scan ([cd97347](https://github.com/BitGo/BitGoJS/commit/cd97347046b1a6644db6682e9f8e9ca8b5fe4ad7))
608
+ - **statics:** make corrections for arbeth and opeth ([5dfc405](https://github.com/BitGo/BitGoJS/commit/5dfc405a36fc97b2c902fec44562b169d8013a18))
609
+
610
+ ### Features
611
+
612
+ - improve logic and add unit test ([722d729](https://github.com/BitGo/BitGoJS/commit/722d729600ff6de2a04e93329d27e406f51a456b))
613
+ - **sdk-api:** add check to see if the derived xpub matches ([efef716](https://github.com/BitGo/BitGoJS/commit/efef7166e37a2de6b5dfe1d1ea3f4d9493d3a7dd))
614
+ - **sdk-api:** add size correction factor for transactions created ([5f0131c](https://github.com/BitGo/BitGoJS/commit/5f0131cd7016ad7dc4cf4b0be177e0c7ab7f4d25))
615
+ - **sdk-api:** test for fully signed tx of v1 safe wallet ([ec91fb6](https://github.com/BitGo/BitGoJS/commit/ec91fb616187983611044230097236fa9229f55d))
616
+ - **utxo-lib:** add tests for v1 safe wallets with uncompressed ([4ac75f0](https://github.com/BitGo/BitGoJS/commit/4ac75f0031a40aa17de37f176e3493284cba4cac))
617
+
618
+ # [1.32.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.13.0...@bitgo/sdk-api@1.32.0) (2023-12-09)
619
+
620
+ ### Bug Fixes
621
+
622
+ - **bitgo:** add overrides and resolutions to pkgs ([14c33b4](https://github.com/BitGo/BitGoJS/commit/14c33b4bbffda09ba6a389f540c1fb8cc2a43bf9))
623
+ - **sdk-api:** drop `superagent-proxy` dependency ([06a86fd](https://github.com/BitGo/BitGoJS/commit/06a86fd3def3865ac05713bd879e2d2df32c599d))
624
+ - **sdk-api:** upgrade critical vulnerabilities from snyk scan ([cd97347](https://github.com/BitGo/BitGoJS/commit/cd97347046b1a6644db6682e9f8e9ca8b5fe4ad7))
625
+ - **statics:** make corrections for arbeth and opeth ([5dfc405](https://github.com/BitGo/BitGoJS/commit/5dfc405a36fc97b2c902fec44562b169d8013a18))
626
+
627
+ ### Features
628
+
629
+ - improve logic and add unit test ([722d729](https://github.com/BitGo/BitGoJS/commit/722d729600ff6de2a04e93329d27e406f51a456b))
630
+ - **sdk-api:** add check to see if the derived xpub matches ([efef716](https://github.com/BitGo/BitGoJS/commit/efef7166e37a2de6b5dfe1d1ea3f4d9493d3a7dd))
631
+ - **sdk-api:** add size correction factor for transactions created ([5f0131c](https://github.com/BitGo/BitGoJS/commit/5f0131cd7016ad7dc4cf4b0be177e0c7ab7f4d25))
632
+ - **sdk-api:** test for fully signed tx of v1 safe wallet ([ec91fb6](https://github.com/BitGo/BitGoJS/commit/ec91fb616187983611044230097236fa9229f55d))
633
+ - **utxo-lib:** add tests for v1 safe wallets with uncompressed ([4ac75f0](https://github.com/BitGo/BitGoJS/commit/4ac75f0031a40aa17de37f176e3493284cba4cac))
634
+
635
+ # [1.31.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.13.0...@bitgo/sdk-api@1.31.0) (2023-12-05)
636
+
637
+ ### Bug Fixes
638
+
639
+ - **bitgo:** add overrides and resolutions to pkgs ([14c33b4](https://github.com/BitGo/BitGoJS/commit/14c33b4bbffda09ba6a389f540c1fb8cc2a43bf9))
640
+ - **sdk-api:** drop `superagent-proxy` dependency ([06a86fd](https://github.com/BitGo/BitGoJS/commit/06a86fd3def3865ac05713bd879e2d2df32c599d))
641
+ - **sdk-api:** upgrade critical vulnerabilities from snyk scan ([cd97347](https://github.com/BitGo/BitGoJS/commit/cd97347046b1a6644db6682e9f8e9ca8b5fe4ad7))
642
+ - **statics:** make corrections for arbeth and opeth ([5dfc405](https://github.com/BitGo/BitGoJS/commit/5dfc405a36fc97b2c902fec44562b169d8013a18))
643
+
644
+ ### Features
645
+
646
+ - improve logic and add unit test ([722d729](https://github.com/BitGo/BitGoJS/commit/722d729600ff6de2a04e93329d27e406f51a456b))
647
+ - **sdk-api:** add check to see if the derived xpub matches ([efef716](https://github.com/BitGo/BitGoJS/commit/efef7166e37a2de6b5dfe1d1ea3f4d9493d3a7dd))
648
+ - **sdk-api:** add size correction factor for transactions created ([5f0131c](https://github.com/BitGo/BitGoJS/commit/5f0131cd7016ad7dc4cf4b0be177e0c7ab7f4d25))
649
+ - **sdk-api:** test for fully signed tx of v1 safe wallet ([ec91fb6](https://github.com/BitGo/BitGoJS/commit/ec91fb616187983611044230097236fa9229f55d))
650
+ - **utxo-lib:** add tests for v1 safe wallets with uncompressed ([4ac75f0](https://github.com/BitGo/BitGoJS/commit/4ac75f0031a40aa17de37f176e3493284cba4cac))
651
+
652
+ # [1.30.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.13.0...@bitgo/sdk-api@1.30.0) (2023-11-28)
653
+
654
+ ### Bug Fixes
655
+
656
+ - **bitgo:** add overrides and resolutions to pkgs ([14c33b4](https://github.com/BitGo/BitGoJS/commit/14c33b4bbffda09ba6a389f540c1fb8cc2a43bf9))
657
+ - **sdk-api:** drop `superagent-proxy` dependency ([06a86fd](https://github.com/BitGo/BitGoJS/commit/06a86fd3def3865ac05713bd879e2d2df32c599d))
658
+ - **sdk-api:** upgrade critical vulnerabilities from snyk scan ([cd97347](https://github.com/BitGo/BitGoJS/commit/cd97347046b1a6644db6682e9f8e9ca8b5fe4ad7))
659
+ - **statics:** make corrections for arbeth and opeth ([5dfc405](https://github.com/BitGo/BitGoJS/commit/5dfc405a36fc97b2c902fec44562b169d8013a18))
660
+
661
+ ### Features
662
+
663
+ - improve logic and add unit test ([722d729](https://github.com/BitGo/BitGoJS/commit/722d729600ff6de2a04e93329d27e406f51a456b))
664
+ - **sdk-api:** add size correction factor for transactions created ([5f0131c](https://github.com/BitGo/BitGoJS/commit/5f0131cd7016ad7dc4cf4b0be177e0c7ab7f4d25))
665
+ - **sdk-api:** test for fully signed tx of v1 safe wallet ([ec91fb6](https://github.com/BitGo/BitGoJS/commit/ec91fb616187983611044230097236fa9229f55d))
666
+ - **utxo-lib:** add tests for v1 safe wallets with uncompressed ([4ac75f0](https://github.com/BitGo/BitGoJS/commit/4ac75f0031a40aa17de37f176e3493284cba4cac))
667
+
668
+ # [1.29.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.13.0...@bitgo/sdk-api@1.29.0) (2023-11-24)
669
+
670
+ ### Bug Fixes
671
+
672
+ - **bitgo:** add overrides and resolutions to pkgs ([14c33b4](https://github.com/BitGo/BitGoJS/commit/14c33b4bbffda09ba6a389f540c1fb8cc2a43bf9))
673
+ - **sdk-api:** drop `superagent-proxy` dependency ([06a86fd](https://github.com/BitGo/BitGoJS/commit/06a86fd3def3865ac05713bd879e2d2df32c599d))
674
+ - **sdk-api:** upgrade critical vulnerabilities from snyk scan ([cd97347](https://github.com/BitGo/BitGoJS/commit/cd97347046b1a6644db6682e9f8e9ca8b5fe4ad7))
675
+ - **statics:** make corrections for arbeth and opeth ([5dfc405](https://github.com/BitGo/BitGoJS/commit/5dfc405a36fc97b2c902fec44562b169d8013a18))
676
+
677
+ ### Features
678
+
679
+ - improve logic and add unit test ([722d729](https://github.com/BitGo/BitGoJS/commit/722d729600ff6de2a04e93329d27e406f51a456b))
680
+ - **sdk-api:** add size correction factor for transactions created ([5f0131c](https://github.com/BitGo/BitGoJS/commit/5f0131cd7016ad7dc4cf4b0be177e0c7ab7f4d25))
681
+ - **sdk-api:** test for fully signed tx of v1 safe wallet ([ec91fb6](https://github.com/BitGo/BitGoJS/commit/ec91fb616187983611044230097236fa9229f55d))
682
+ - **utxo-lib:** add tests for v1 safe wallets with uncompressed ([4ac75f0](https://github.com/BitGo/BitGoJS/commit/4ac75f0031a40aa17de37f176e3493284cba4cac))
683
+
684
+ # [1.28.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.13.0...@bitgo/sdk-api@1.28.0) (2023-11-17)
685
+
686
+ ### Bug Fixes
687
+
688
+ - **bitgo:** add overrides and resolutions to pkgs ([14c33b4](https://github.com/BitGo/BitGoJS/commit/14c33b4bbffda09ba6a389f540c1fb8cc2a43bf9))
689
+ - **sdk-api:** drop `superagent-proxy` dependency ([06a86fd](https://github.com/BitGo/BitGoJS/commit/06a86fd3def3865ac05713bd879e2d2df32c599d))
690
+ - **sdk-api:** upgrade critical vulnerabilities from snyk scan ([cd97347](https://github.com/BitGo/BitGoJS/commit/cd97347046b1a6644db6682e9f8e9ca8b5fe4ad7))
691
+ - **statics:** make corrections for arbeth and opeth ([5dfc405](https://github.com/BitGo/BitGoJS/commit/5dfc405a36fc97b2c902fec44562b169d8013a18))
692
+
693
+ ### Features
694
+
695
+ - improve logic and add unit test ([722d729](https://github.com/BitGo/BitGoJS/commit/722d729600ff6de2a04e93329d27e406f51a456b))
696
+ - **sdk-api:** add size correction factor for transactions created ([5f0131c](https://github.com/BitGo/BitGoJS/commit/5f0131cd7016ad7dc4cf4b0be177e0c7ab7f4d25))
697
+ - **sdk-api:** test for fully signed tx of v1 safe wallet ([ec91fb6](https://github.com/BitGo/BitGoJS/commit/ec91fb616187983611044230097236fa9229f55d))
698
+ - **utxo-lib:** add tests for v1 safe wallets with uncompressed ([4ac75f0](https://github.com/BitGo/BitGoJS/commit/4ac75f0031a40aa17de37f176e3493284cba4cac))
699
+
700
+ # [1.27.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.13.0...@bitgo/sdk-api@1.27.0) (2023-11-13)
701
+
702
+ ### Bug Fixes
703
+
704
+ - **bitgo:** add overrides and resolutions to pkgs ([14c33b4](https://github.com/BitGo/BitGoJS/commit/14c33b4bbffda09ba6a389f540c1fb8cc2a43bf9))
705
+ - **sdk-api:** drop `superagent-proxy` dependency ([06a86fd](https://github.com/BitGo/BitGoJS/commit/06a86fd3def3865ac05713bd879e2d2df32c599d))
706
+ - **sdk-api:** upgrade critical vulnerabilities from snyk scan ([cd97347](https://github.com/BitGo/BitGoJS/commit/cd97347046b1a6644db6682e9f8e9ca8b5fe4ad7))
707
+
708
+ ### Features
709
+
710
+ - improve logic and add unit test ([722d729](https://github.com/BitGo/BitGoJS/commit/722d729600ff6de2a04e93329d27e406f51a456b))
711
+ - **sdk-api:** add size correction factor for transactions created ([5f0131c](https://github.com/BitGo/BitGoJS/commit/5f0131cd7016ad7dc4cf4b0be177e0c7ab7f4d25))
712
+ - **sdk-api:** test for fully signed tx of v1 safe wallet ([ec91fb6](https://github.com/BitGo/BitGoJS/commit/ec91fb616187983611044230097236fa9229f55d))
713
+ - **utxo-lib:** add tests for v1 safe wallets with uncompressed ([4ac75f0](https://github.com/BitGo/BitGoJS/commit/4ac75f0031a40aa17de37f176e3493284cba4cac))
714
+
715
+ # [1.26.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.13.0...@bitgo/sdk-api@1.26.0) (2023-11-13)
716
+
717
+ ### Bug Fixes
718
+
719
+ - **bitgo:** add overrides and resolutions to pkgs ([14c33b4](https://github.com/BitGo/BitGoJS/commit/14c33b4bbffda09ba6a389f540c1fb8cc2a43bf9))
720
+ - **sdk-api:** drop `superagent-proxy` dependency ([06a86fd](https://github.com/BitGo/BitGoJS/commit/06a86fd3def3865ac05713bd879e2d2df32c599d))
721
+ - **sdk-api:** upgrade critical vulnerabilities from snyk scan ([cd97347](https://github.com/BitGo/BitGoJS/commit/cd97347046b1a6644db6682e9f8e9ca8b5fe4ad7))
722
+
723
+ ### Features
724
+
725
+ - improve logic and add unit test ([722d729](https://github.com/BitGo/BitGoJS/commit/722d729600ff6de2a04e93329d27e406f51a456b))
726
+ - **sdk-api:** add size correction factor for transactions created ([5f0131c](https://github.com/BitGo/BitGoJS/commit/5f0131cd7016ad7dc4cf4b0be177e0c7ab7f4d25))
727
+ - **sdk-api:** test for fully signed tx of v1 safe wallet ([ec91fb6](https://github.com/BitGo/BitGoJS/commit/ec91fb616187983611044230097236fa9229f55d))
728
+ - **utxo-lib:** add tests for v1 safe wallets with uncompressed ([4ac75f0](https://github.com/BitGo/BitGoJS/commit/4ac75f0031a40aa17de37f176e3493284cba4cac))
729
+
730
+ # [1.25.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.13.0...@bitgo/sdk-api@1.25.0) (2023-11-13)
731
+
732
+ ### Bug Fixes
733
+
734
+ - **bitgo:** add overrides and resolutions to pkgs ([14c33b4](https://github.com/BitGo/BitGoJS/commit/14c33b4bbffda09ba6a389f540c1fb8cc2a43bf9))
735
+ - **sdk-api:** drop `superagent-proxy` dependency ([06a86fd](https://github.com/BitGo/BitGoJS/commit/06a86fd3def3865ac05713bd879e2d2df32c599d))
736
+ - **sdk-api:** upgrade critical vulnerabilities from snyk scan ([cd97347](https://github.com/BitGo/BitGoJS/commit/cd97347046b1a6644db6682e9f8e9ca8b5fe4ad7))
737
+
738
+ ### Features
739
+
740
+ - improve logic and add unit test ([722d729](https://github.com/BitGo/BitGoJS/commit/722d729600ff6de2a04e93329d27e406f51a456b))
741
+ - **sdk-api:** add size correction factor for transactions created ([5f0131c](https://github.com/BitGo/BitGoJS/commit/5f0131cd7016ad7dc4cf4b0be177e0c7ab7f4d25))
742
+ - **sdk-api:** test for fully signed tx of v1 safe wallet ([ec91fb6](https://github.com/BitGo/BitGoJS/commit/ec91fb616187983611044230097236fa9229f55d))
743
+ - **utxo-lib:** add tests for v1 safe wallets with uncompressed ([4ac75f0](https://github.com/BitGo/BitGoJS/commit/4ac75f0031a40aa17de37f176e3493284cba4cac))
744
+
745
+ # [1.24.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.13.0...@bitgo/sdk-api@1.24.0) (2023-10-20)
746
+
747
+ ### Bug Fixes
748
+
749
+ - **bitgo:** add overrides and resolutions to pkgs ([14c33b4](https://github.com/BitGo/BitGoJS/commit/14c33b4bbffda09ba6a389f540c1fb8cc2a43bf9))
750
+ - **sdk-api:** drop `superagent-proxy` dependency ([06a86fd](https://github.com/BitGo/BitGoJS/commit/06a86fd3def3865ac05713bd879e2d2df32c599d))
751
+ - **sdk-api:** upgrade critical vulnerabilities from snyk scan ([cd97347](https://github.com/BitGo/BitGoJS/commit/cd97347046b1a6644db6682e9f8e9ca8b5fe4ad7))
752
+
753
+ ### Features
754
+
755
+ - improve logic and add unit test ([722d729](https://github.com/BitGo/BitGoJS/commit/722d729600ff6de2a04e93329d27e406f51a456b))
756
+ - **sdk-api:** add size correction factor for transactions created ([5f0131c](https://github.com/BitGo/BitGoJS/commit/5f0131cd7016ad7dc4cf4b0be177e0c7ab7f4d25))
757
+ - **sdk-api:** test for fully signed tx of v1 safe wallet ([ec91fb6](https://github.com/BitGo/BitGoJS/commit/ec91fb616187983611044230097236fa9229f55d))
758
+ - **utxo-lib:** add tests for v1 safe wallets with uncompressed ([4ac75f0](https://github.com/BitGo/BitGoJS/commit/4ac75f0031a40aa17de37f176e3493284cba4cac))
759
+
760
+ # [1.23.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.13.0...@bitgo/sdk-api@1.23.0) (2023-10-18)
761
+
762
+ ### Bug Fixes
763
+
764
+ - **bitgo:** add overrides and resolutions to pkgs ([14c33b4](https://github.com/BitGo/BitGoJS/commit/14c33b4bbffda09ba6a389f540c1fb8cc2a43bf9))
765
+ - **sdk-api:** drop `superagent-proxy` dependency ([06a86fd](https://github.com/BitGo/BitGoJS/commit/06a86fd3def3865ac05713bd879e2d2df32c599d))
766
+ - **sdk-api:** upgrade critical vulnerabilities from snyk scan ([cd97347](https://github.com/BitGo/BitGoJS/commit/cd97347046b1a6644db6682e9f8e9ca8b5fe4ad7))
767
+
768
+ ### Features
769
+
770
+ - improve logic and add unit test ([722d729](https://github.com/BitGo/BitGoJS/commit/722d729600ff6de2a04e93329d27e406f51a456b))
771
+ - **sdk-api:** add size correction factor for transactions created ([5f0131c](https://github.com/BitGo/BitGoJS/commit/5f0131cd7016ad7dc4cf4b0be177e0c7ab7f4d25))
772
+ - **sdk-api:** test for fully signed tx of v1 safe wallet ([ec91fb6](https://github.com/BitGo/BitGoJS/commit/ec91fb616187983611044230097236fa9229f55d))
773
+ - **utxo-lib:** add tests for v1 safe wallets with uncompressed ([4ac75f0](https://github.com/BitGo/BitGoJS/commit/4ac75f0031a40aa17de37f176e3493284cba4cac))
774
+
775
+ # [1.22.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.13.0...@bitgo/sdk-api@1.22.0) (2023-09-25)
776
+
777
+ ### Bug Fixes
778
+
779
+ - **bitgo:** add overrides and resolutions to pkgs ([14c33b4](https://github.com/BitGo/BitGoJS/commit/14c33b4bbffda09ba6a389f540c1fb8cc2a43bf9))
780
+ - **sdk-api:** drop `superagent-proxy` dependency ([06a86fd](https://github.com/BitGo/BitGoJS/commit/06a86fd3def3865ac05713bd879e2d2df32c599d))
781
+ - **sdk-api:** upgrade critical vulnerabilities from snyk scan ([cd97347](https://github.com/BitGo/BitGoJS/commit/cd97347046b1a6644db6682e9f8e9ca8b5fe4ad7))
782
+
783
+ ### Features
784
+
785
+ - **sdk-api:** add size correction factor for transactions created ([5f0131c](https://github.com/BitGo/BitGoJS/commit/5f0131cd7016ad7dc4cf4b0be177e0c7ab7f4d25))
786
+ - **sdk-api:** test for fully signed tx of v1 safe wallet ([ec91fb6](https://github.com/BitGo/BitGoJS/commit/ec91fb616187983611044230097236fa9229f55d))
787
+ - **utxo-lib:** add tests for v1 safe wallets with uncompressed ([4ac75f0](https://github.com/BitGo/BitGoJS/commit/4ac75f0031a40aa17de37f176e3493284cba4cac))
788
+
789
+ # [1.21.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.13.0...@bitgo/sdk-api@1.21.0) (2023-09-09)
790
+
791
+ ### Bug Fixes
792
+
793
+ - **bitgo:** add overrides and resolutions to pkgs ([14c33b4](https://github.com/BitGo/BitGoJS/commit/14c33b4bbffda09ba6a389f540c1fb8cc2a43bf9))
794
+ - **sdk-api:** upgrade critical vulnerabilities from snyk scan ([cd97347](https://github.com/BitGo/BitGoJS/commit/cd97347046b1a6644db6682e9f8e9ca8b5fe4ad7))
795
+
796
+ ### Features
797
+
798
+ - **sdk-api:** add size correction factor for transactions created ([5f0131c](https://github.com/BitGo/BitGoJS/commit/5f0131cd7016ad7dc4cf4b0be177e0c7ab7f4d25))
799
+ - **sdk-api:** test for fully signed tx of v1 safe wallet ([ec91fb6](https://github.com/BitGo/BitGoJS/commit/ec91fb616187983611044230097236fa9229f55d))
800
+ - **utxo-lib:** add tests for v1 safe wallets with uncompressed ([4ac75f0](https://github.com/BitGo/BitGoJS/commit/4ac75f0031a40aa17de37f176e3493284cba4cac))
801
+
802
+ # [1.20.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.13.0...@bitgo/sdk-api@1.20.0) (2023-09-09)
803
+
804
+ ### Bug Fixes
805
+
806
+ - **bitgo:** add overrides and resolutions to pkgs ([14c33b4](https://github.com/BitGo/BitGoJS/commit/14c33b4bbffda09ba6a389f540c1fb8cc2a43bf9))
807
+ - **sdk-api:** upgrade critical vulnerabilities from snyk scan ([cd97347](https://github.com/BitGo/BitGoJS/commit/cd97347046b1a6644db6682e9f8e9ca8b5fe4ad7))
808
+
809
+ ### Features
810
+
811
+ - **sdk-api:** add size correction factor for transactions created ([5f0131c](https://github.com/BitGo/BitGoJS/commit/5f0131cd7016ad7dc4cf4b0be177e0c7ab7f4d25))
812
+ - **sdk-api:** test for fully signed tx of v1 safe wallet ([ec91fb6](https://github.com/BitGo/BitGoJS/commit/ec91fb616187983611044230097236fa9229f55d))
813
+ - **utxo-lib:** add tests for v1 safe wallets with uncompressed ([4ac75f0](https://github.com/BitGo/BitGoJS/commit/4ac75f0031a40aa17de37f176e3493284cba4cac))
814
+
815
+ # [1.19.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.13.0...@bitgo/sdk-api@1.19.0) (2023-09-07)
816
+
817
+ ### Bug Fixes
818
+
819
+ - **bitgo:** add overrides and resolutions to pkgs ([14c33b4](https://github.com/BitGo/BitGoJS/commit/14c33b4bbffda09ba6a389f540c1fb8cc2a43bf9))
820
+ - **sdk-api:** upgrade critical vulnerabilities from snyk scan ([cd97347](https://github.com/BitGo/BitGoJS/commit/cd97347046b1a6644db6682e9f8e9ca8b5fe4ad7))
821
+
822
+ ### Features
823
+
824
+ - **sdk-api:** add size correction factor for transactions created ([5f0131c](https://github.com/BitGo/BitGoJS/commit/5f0131cd7016ad7dc4cf4b0be177e0c7ab7f4d25))
825
+ - **sdk-api:** test for fully signed tx of v1 safe wallet ([ec91fb6](https://github.com/BitGo/BitGoJS/commit/ec91fb616187983611044230097236fa9229f55d))
826
+ - **utxo-lib:** add tests for v1 safe wallets with uncompressed ([4ac75f0](https://github.com/BitGo/BitGoJS/commit/4ac75f0031a40aa17de37f176e3493284cba4cac))
827
+
828
+ # [1.18.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.13.0...@bitgo/sdk-api@1.18.0) (2023-09-05)
829
+
830
+ ### Bug Fixes
831
+
832
+ - **bitgo:** add overrides and resolutions to pkgs ([14c33b4](https://github.com/BitGo/BitGoJS/commit/14c33b4bbffda09ba6a389f540c1fb8cc2a43bf9))
833
+ - **sdk-api:** upgrade critical vulnerabilities from snyk scan ([cd97347](https://github.com/BitGo/BitGoJS/commit/cd97347046b1a6644db6682e9f8e9ca8b5fe4ad7))
834
+
835
+ ### Features
836
+
837
+ - **sdk-api:** add size correction factor for transactions created ([5f0131c](https://github.com/BitGo/BitGoJS/commit/5f0131cd7016ad7dc4cf4b0be177e0c7ab7f4d25))
838
+ - **sdk-api:** test for fully signed tx of v1 safe wallet ([ec91fb6](https://github.com/BitGo/BitGoJS/commit/ec91fb616187983611044230097236fa9229f55d))
839
+ - **utxo-lib:** add tests for v1 safe wallets with uncompressed ([4ac75f0](https://github.com/BitGo/BitGoJS/commit/4ac75f0031a40aa17de37f176e3493284cba4cac))
840
+
841
+ # [1.17.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.13.0...@bitgo/sdk-api@1.17.0) (2023-09-01)
842
+
843
+ ### Bug Fixes
844
+
845
+ - **bitgo:** add overrides and resolutions to pkgs ([14c33b4](https://github.com/BitGo/BitGoJS/commit/14c33b4bbffda09ba6a389f540c1fb8cc2a43bf9))
846
+ - **sdk-api:** upgrade critical vulnerabilities from snyk scan ([cd97347](https://github.com/BitGo/BitGoJS/commit/cd97347046b1a6644db6682e9f8e9ca8b5fe4ad7))
847
+
848
+ ### Features
849
+
850
+ - **sdk-api:** add size correction factor for transactions created ([5f0131c](https://github.com/BitGo/BitGoJS/commit/5f0131cd7016ad7dc4cf4b0be177e0c7ab7f4d25))
851
+ - **sdk-api:** test for fully signed tx of v1 safe wallet ([ec91fb6](https://github.com/BitGo/BitGoJS/commit/ec91fb616187983611044230097236fa9229f55d))
852
+ - **utxo-lib:** add tests for v1 safe wallets with uncompressed ([4ac75f0](https://github.com/BitGo/BitGoJS/commit/4ac75f0031a40aa17de37f176e3493284cba4cac))
853
+
854
+ # [1.16.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.13.0...@bitgo/sdk-api@1.16.0) (2023-08-29)
855
+
856
+ ### Bug Fixes
857
+
858
+ - **bitgo:** add overrides and resolutions to pkgs ([14c33b4](https://github.com/BitGo/BitGoJS/commit/14c33b4bbffda09ba6a389f540c1fb8cc2a43bf9))
859
+ - **sdk-api:** upgrade critical vulnerabilities from snyk scan ([cd97347](https://github.com/BitGo/BitGoJS/commit/cd97347046b1a6644db6682e9f8e9ca8b5fe4ad7))
860
+
861
+ ### Features
862
+
863
+ - **sdk-api:** add size correction factor for transactions created ([5f0131c](https://github.com/BitGo/BitGoJS/commit/5f0131cd7016ad7dc4cf4b0be177e0c7ab7f4d25))
864
+ - **sdk-api:** test for fully signed tx of v1 safe wallet ([ec91fb6](https://github.com/BitGo/BitGoJS/commit/ec91fb616187983611044230097236fa9229f55d))
865
+ - **utxo-lib:** add tests for v1 safe wallets with uncompressed ([4ac75f0](https://github.com/BitGo/BitGoJS/commit/4ac75f0031a40aa17de37f176e3493284cba4cac))
866
+
867
+ # [1.15.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.13.0...@bitgo/sdk-api@1.15.0) (2023-08-25)
868
+
869
+ ### Bug Fixes
870
+
871
+ - **bitgo:** add overrides and resolutions to pkgs ([14c33b4](https://github.com/BitGo/BitGoJS/commit/14c33b4bbffda09ba6a389f540c1fb8cc2a43bf9))
872
+ - **sdk-api:** upgrade critical vulnerabilities from snyk scan ([cd97347](https://github.com/BitGo/BitGoJS/commit/cd97347046b1a6644db6682e9f8e9ca8b5fe4ad7))
873
+
874
+ ### Features
875
+
876
+ - **sdk-api:** add size correction factor for transactions created ([5f0131c](https://github.com/BitGo/BitGoJS/commit/5f0131cd7016ad7dc4cf4b0be177e0c7ab7f4d25))
877
+ - **sdk-api:** test for fully signed tx of v1 safe wallet ([ec91fb6](https://github.com/BitGo/BitGoJS/commit/ec91fb616187983611044230097236fa9229f55d))
878
+ - **utxo-lib:** add tests for v1 safe wallets with uncompressed ([4ac75f0](https://github.com/BitGo/BitGoJS/commit/4ac75f0031a40aa17de37f176e3493284cba4cac))
879
+
880
+ # [1.14.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.13.0...@bitgo/sdk-api@1.14.0) (2023-08-24)
881
+
882
+ ### Bug Fixes
883
+
884
+ - **bitgo:** add overrides and resolutions to pkgs ([14c33b4](https://github.com/BitGo/BitGoJS/commit/14c33b4bbffda09ba6a389f540c1fb8cc2a43bf9))
885
+ - **sdk-api:** upgrade critical vulnerabilities from snyk scan ([cd97347](https://github.com/BitGo/BitGoJS/commit/cd97347046b1a6644db6682e9f8e9ca8b5fe4ad7))
886
+
887
+ ### Features
888
+
889
+ - **sdk-api:** add size correction factor for transactions created ([5f0131c](https://github.com/BitGo/BitGoJS/commit/5f0131cd7016ad7dc4cf4b0be177e0c7ab7f4d25))
890
+ - **sdk-api:** test for fully signed tx of v1 safe wallet ([ec91fb6](https://github.com/BitGo/BitGoJS/commit/ec91fb616187983611044230097236fa9229f55d))
891
+ - **utxo-lib:** add tests for v1 safe wallets with uncompressed ([4ac75f0](https://github.com/BitGo/BitGoJS/commit/4ac75f0031a40aa17de37f176e3493284cba4cac))
892
+
893
+ ## [1.13.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.13.0...@bitgo/sdk-api@1.13.2) (2023-08-16)
894
+
895
+ ### Bug Fixes
896
+
897
+ - **bitgo:** add overrides and resolutions to pkgs ([14c33b4](https://github.com/BitGo/BitGoJS/commit/14c33b4bbffda09ba6a389f540c1fb8cc2a43bf9))
898
+ - **sdk-api:** upgrade critical vulnerabilities from snyk scan ([cd97347](https://github.com/BitGo/BitGoJS/commit/cd97347046b1a6644db6682e9f8e9ca8b5fe4ad7))
899
+
900
+ ## [1.13.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.13.0...@bitgo/sdk-api@1.13.1) (2023-08-16)
901
+
902
+ ### Bug Fixes
903
+
904
+ - **bitgo:** add overrides and resolutions to pkgs ([14c33b4](https://github.com/BitGo/BitGoJS/commit/14c33b4bbffda09ba6a389f540c1fb8cc2a43bf9))
905
+ - **sdk-api:** upgrade critical vulnerabilities from snyk scan ([cd97347](https://github.com/BitGo/BitGoJS/commit/cd97347046b1a6644db6682e9f8e9ca8b5fe4ad7))
906
+
6
907
  # [1.13.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/sdk-api@1.11.3...@bitgo/sdk-api@1.13.0) (2023-08-04)
7
908
 
8
909
  ### Features