@bitgo-beta/abstract-utxo 1.6.1-alpha.22 → 1.6.1-alpha.221

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 (45) hide show
  1. package/CHANGELOG.md +839 -0
  2. package/dist/src/abstractUtxoCoin.d.ts +145 -34
  3. package/dist/src/abstractUtxoCoin.d.ts.map +1 -1
  4. package/dist/src/abstractUtxoCoin.js +350 -187
  5. package/dist/src/descriptor/NamedDescriptor.d.ts +7 -0
  6. package/dist/src/descriptor/NamedDescriptor.d.ts.map +1 -0
  7. package/dist/src/descriptor/NamedDescriptor.js +9 -0
  8. package/dist/src/descriptor/assertDescriptorWalletAddress.d.ts +4 -0
  9. package/dist/src/descriptor/assertDescriptorWalletAddress.d.ts.map +1 -0
  10. package/dist/src/descriptor/assertDescriptorWalletAddress.js +37 -0
  11. package/dist/src/descriptor/index.d.ts +4 -0
  12. package/dist/src/descriptor/index.d.ts.map +1 -0
  13. package/dist/src/descriptor/index.js +11 -0
  14. package/dist/src/index.d.ts +1 -0
  15. package/dist/src/index.d.ts.map +1 -1
  16. package/dist/src/index.js +8 -2
  17. package/dist/src/parseOutput.d.ts.map +1 -1
  18. package/dist/src/parseOutput.js +38 -1
  19. package/dist/src/recovery/RecoveryProvider.d.ts +1 -1
  20. package/dist/src/recovery/RecoveryProvider.d.ts.map +1 -1
  21. package/dist/src/recovery/RecoveryProvider.js +1 -2
  22. package/dist/src/recovery/backupKeyRecovery.d.ts +39 -11
  23. package/dist/src/recovery/backupKeyRecovery.d.ts.map +1 -1
  24. package/dist/src/recovery/backupKeyRecovery.js +124 -83
  25. package/dist/src/recovery/baseApi.d.ts +2 -2
  26. package/dist/src/recovery/baseApi.d.ts.map +1 -1
  27. package/dist/src/recovery/crossChainRecovery.d.ts +12 -3
  28. package/dist/src/recovery/crossChainRecovery.d.ts.map +1 -1
  29. package/dist/src/recovery/crossChainRecovery.js +50 -10
  30. package/dist/src/recovery/index.d.ts +0 -1
  31. package/dist/src/recovery/index.d.ts.map +1 -1
  32. package/dist/src/recovery/index.js +6 -3
  33. package/dist/src/recovery/mempoolApi.d.ts.map +1 -1
  34. package/dist/src/recovery/mempoolApi.js +6 -3
  35. package/dist/src/sign.d.ts +29 -5
  36. package/dist/src/sign.d.ts.map +1 -1
  37. package/dist/src/sign.js +73 -7
  38. package/dist/src/transaction.d.ts +36 -0
  39. package/dist/src/transaction.d.ts.map +1 -0
  40. package/dist/src/transaction.js +278 -0
  41. package/dist/tsconfig.tsbuildinfo +1 -7960
  42. package/package.json +12 -10
  43. package/dist/src/recovery/smartbitApi.d.ts +0 -11
  44. package/dist/src/recovery/smartbitApi.d.ts.map +0 -1
  45. package/dist/src/recovery/smartbitApi.js +0 -36
package/CHANGELOG.md CHANGED
@@ -3,6 +3,845 @@
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
+ ## [9.0.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@9.0.2...@bitgo/abstract-utxo@9.0.3) (2024-10-22)
7
+
8
+ ### Bug Fixes
9
+
10
+ - **abstract-utxo:** fix isValidAddress by generating all addr formats ([5be7bfc](https://github.com/BitGo/BitGoJS/commit/5be7bfcfebacadd1b6eed85ca3ed2c134bfff829))
11
+ - **abstract-utxo:** use param in isValidAddress ([ec9165a](https://github.com/BitGo/BitGoJS/commit/ec9165a9bf32eb09ecf97942839e40c3133e7256))
12
+
13
+ ## [9.0.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@9.0.1...@bitgo/abstract-utxo@9.0.2) (2024-10-15)
14
+
15
+ **Note:** Version bump only for package @bitgo/abstract-utxo
16
+
17
+ ## [9.0.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@9.0.0...@bitgo/abstract-utxo@9.0.1) (2024-10-08)
18
+
19
+ **Note:** Version bump only for package @bitgo/abstract-utxo
20
+
21
+ # [9.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@8.14.4...@bitgo/abstract-utxo@9.0.0) (2024-10-04)
22
+
23
+ ### chore
24
+
25
+ - **utxo-lib:** remove unnecessary properties from WalletUnspent ([159f667](https://github.com/BitGo/BitGoJS/commit/159f66715cf8aa0f485d4df601556b0564cc6cfa))
26
+
27
+ ### Features
28
+
29
+ - add btc testnet4 to sdk ([8edfa40](https://github.com/BitGo/BitGoJS/commit/8edfa40e24fa5061f104e7e59a8e55c2dd27a0b8))
30
+
31
+ ### BREAKING CHANGES
32
+
33
+ - **utxo-lib:** removes fields from WalletUnspent type
34
+
35
+ Issue: BTC-1351
36
+
37
+ ## [8.14.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@8.14.3...@bitgo/abstract-utxo@8.14.4) (2024-09-24)
38
+
39
+ ### Bug Fixes
40
+
41
+ - **abstract-utxo:** address verification ([7d67509](https://github.com/BitGo/BitGoJS/commit/7d67509cbdbf2595d3298ea4609d6b2ed6efcada))
42
+
43
+ ## [8.14.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@8.14.2...@bitgo/abstract-utxo@8.14.3) (2024-09-19)
44
+
45
+ **Note:** Version bump only for package @bitgo/abstract-utxo
46
+
47
+ ## [8.14.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@8.14.1...@bitgo/abstract-utxo@8.14.2) (2024-09-16)
48
+
49
+ **Note:** Version bump only for package @bitgo/abstract-utxo
50
+
51
+ ## [8.14.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@8.14.0...@bitgo/abstract-utxo@8.14.1) (2024-09-10)
52
+
53
+ **Note:** Version bump only for package @bitgo/abstract-utxo
54
+
55
+ # [8.14.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@8.13.2...@bitgo/abstract-utxo@8.14.0) (2024-09-03)
56
+
57
+ ### Features
58
+
59
+ - **abstract-utxo:** add address creation for descriptor wallets ([a5b3a71](https://github.com/BitGo/BitGoJS/commit/a5b3a71132f588c61033e44cd7a5ab0be54f0722))
60
+
61
+ ## [8.13.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@8.13.1...@bitgo/abstract-utxo@8.13.2) (2024-08-29)
62
+
63
+ **Note:** Version bump only for package @bitgo/abstract-utxo
64
+
65
+ ## [8.13.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@8.13.0...@bitgo/abstract-utxo@8.13.1) (2024-08-27)
66
+
67
+ ### Bug Fixes
68
+
69
+ - **abstract-utxo:** do not throw error when cannot verify psbt ccw ([0fadd86](https://github.com/BitGo/BitGoJS/commit/0fadd86ad4e7a6b6a79f5c919f8bbc36f9fa23a5))
70
+ - **abstract-utxo:** fix change wallet verification ([1d27e87](https://github.com/BitGo/BitGoJS/commit/1d27e87bd053733b7970ed749de12fda506826a3))
71
+
72
+ # [8.13.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@8.12.0...@bitgo/abstract-utxo@8.13.0) (2024-08-20)
73
+
74
+ ### Features
75
+
76
+ - default to psbt format for btc hot wallets ([0e12c94](https://github.com/BitGo/BitGoJS/commit/0e12c9466c89281fbeb1035e48d7abea96ccdebe))
77
+
78
+ ## [8.12.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@8.12.0...@bitgo/abstract-utxo@8.12.1) (2024-08-13)
79
+
80
+ **Note:** Version bump only for package @bitgo/abstract-utxo
81
+
82
+ # [8.12.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@8.11.2...@bitgo/abstract-utxo@8.12.0) (2024-08-07)
83
+
84
+ ### Features
85
+
86
+ - add bitgo signet for btc ([a1912b9](https://github.com/BitGo/BitGoJS/commit/a1912b9478211568b29b2ea8986dc62db435f6ab))
87
+
88
+ ## [8.11.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@8.11.1...@bitgo/abstract-utxo@8.11.2) (2024-07-30)
89
+
90
+ **Note:** Version bump only for package @bitgo/abstract-utxo
91
+
92
+ ## [8.11.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@8.11.0...@bitgo/abstract-utxo@8.11.1) (2024-07-24)
93
+
94
+ **Note:** Version bump only for package @bitgo/abstract-utxo
95
+
96
+ # [8.11.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@8.10.0...@bitgo/abstract-utxo@8.11.0) (2024-07-16)
97
+
98
+ ### Bug Fixes
99
+
100
+ - disable PSBT for zcash ([f7c79ca](https://github.com/BitGo/BitGoJS/commit/f7c79ca7491cf34746b78b8aa4bc74e4305c7dfd))
101
+
102
+ ### Features
103
+
104
+ - put `changeAddress` in `expectedOutputs` if ([70f3cbf](https://github.com/BitGo/BitGoJS/commit/70f3cbfbdc03e61ecaf1e329beeb7f70170dc683))
105
+
106
+ # [8.10.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@8.9.0...@bitgo/abstract-utxo@8.10.0) (2024-07-04)
107
+
108
+ ### Bug Fixes
109
+
110
+ - make public signet tests work with bitgo module ([fe32ae3](https://github.com/BitGo/BitGoJS/commit/fe32ae31241176762e608f1b43b0ab54976efe1c))
111
+
112
+ ### Features
113
+
114
+ - **abstract-utxo:** allow non-segwit signing by looking at txHex ([09e355a](https://github.com/BitGo/BitGoJS/commit/09e355a73c28dd807893c0e027b4c723a42d003d))
115
+
116
+ # [8.9.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@8.8.1...@bitgo/abstract-utxo@8.9.0) (2024-07-02)
117
+
118
+ ### Features
119
+
120
+ - add `sweep` function for v1 wallets ([a78e2cf](https://github.com/BitGo/BitGoJS/commit/a78e2cfaec23d3a1d129b757e0bcba76ce12addf))
121
+ - export `BitGoV1Unspent` interface from `abstract-utxo` ([c6d9e63](https://github.com/BitGo/BitGoJS/commit/c6d9e63dde2404f6250a138a049dadc7a408328a))
122
+
123
+ ## [8.8.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@8.8.0...@bitgo/abstract-utxo@8.8.1) (2024-06-27)
124
+
125
+ ### Bug Fixes
126
+
127
+ - find change address instead of using index ([81aad0c](https://github.com/BitGo/BitGoJS/commit/81aad0c7abc7e0da8f1d623f3a780dba3a67a708))
128
+
129
+ # [8.8.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@8.7.2...@bitgo/abstract-utxo@8.8.0) (2024-06-26)
130
+
131
+ ### Bug Fixes
132
+
133
+ - **abstract-utxo:** remove unused coinSpecific in isWalletAddress ([b3e7e38](https://github.com/BitGo/BitGoJS/commit/b3e7e385ea6dc421937db875fe3c2a305285a01a))
134
+
135
+ ### Features
136
+
137
+ - **abstract-utxo:** allow non-standard signing on bulk tx ([214342f](https://github.com/BitGo/BitGoJS/commit/214342f8a16848a7827d98ee239d72db742f84bc))
138
+ - **abstract-utxo:** do not query wp for output addresses if psbt ([500baf6](https://github.com/BitGo/BitGoJS/commit/500baf6001cbece5caa0003139f7db654fe6f742))
139
+
140
+ ## [8.7.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@8.7.0...@bitgo/abstract-utxo@8.7.2) (2024-06-21)
141
+
142
+ **Note:** Version bump only for package @bitgo/abstract-utxo
143
+
144
+ ## [8.7.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@8.7.0...@bitgo/abstract-utxo@8.7.1) (2024-06-20)
145
+
146
+ **Note:** Version bump only for package @bitgo/abstract-utxo
147
+
148
+ # [8.7.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@8.6.1...@bitgo/abstract-utxo@8.7.0) (2024-06-14)
149
+
150
+ ### Bug Fixes
151
+
152
+ - correctly parse the response of `/fees/recommended` from Mempool ([e7455a8](https://github.com/BitGo/BitGoJS/commit/e7455a8057a6ece91b73fe373ecd1742282a8c28))
153
+
154
+ ### Features
155
+
156
+ - add `recover` function for v1 btc wallets ([16e3b25](https://github.com/BitGo/BitGoJS/commit/16e3b2550baab6d15795ee8314935ee3f13c5af1))
157
+
158
+ ## [8.6.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@8.6.0...@bitgo/abstract-utxo@8.6.1) (2024-06-11)
159
+
160
+ **Note:** Version bump only for package @bitgo/abstract-utxo
161
+
162
+ # [8.6.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@8.5.0...@bitgo/abstract-utxo@8.6.0) (2024-06-05)
163
+
164
+ ### Features
165
+
166
+ - **utxo-lib:** add signPsbtFromOVC ([59db80f](https://github.com/BitGo/BitGoJS/commit/59db80fcd2d07d145049b6f2dfbdccb6c1931606))
167
+
168
+ ### Reverts
169
+
170
+ - Revert "feat: use psbt format for hot and custodial wallets" ([4d027c8](https://github.com/BitGo/BitGoJS/commit/4d027c8c218fca8228544f22f1b413e2ba507463))
171
+
172
+ # [8.5.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@8.4.0...@bitgo/abstract-utxo@8.5.0) (2024-05-31)
173
+
174
+ ### Features
175
+
176
+ - use cashaddr address format for ecash recovery ([072f11f](https://github.com/BitGo/BitGoJS/commit/072f11f9e2b8b10c91d9ddf4e0503dc3a1e13563))
177
+ - use psbt format for hot and custodial wallets ([7b66a58](https://github.com/BitGo/BitGoJS/commit/7b66a584ce304093e03a372dafad9152ef875e7b))
178
+
179
+ # [8.4.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@8.3.1...@bitgo/abstract-utxo@8.4.0) (2024-05-28)
180
+
181
+ ### Features
182
+
183
+ - add p2tr as the last option ([673c7d8](https://github.com/BitGo/BitGoJS/commit/673c7d8444be8147ca2b3803e641ab35890e6521))
184
+ - remove p2tr from changeAddressType list ([561a8bd](https://github.com/BitGo/BitGoJS/commit/561a8bdd4f785a4e8ef483e0271a40a4a5c192d9))
185
+
186
+ ## [8.3.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@8.3.0...@bitgo/abstract-utxo@8.3.1) (2024-05-22)
187
+
188
+ **Note:** Version bump only for package @bitgo/abstract-utxo
189
+
190
+ # [8.3.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@8.2.1...@bitgo/abstract-utxo@8.3.0) (2024-05-17)
191
+
192
+ ### Features
193
+
194
+ - remove conditional p2trMusig2 check ([9683f33](https://github.com/BitGo/BitGoJS/commit/9683f3325fd454a804a60894c618ee0212acc6b2))
195
+ - send changeAddressType preferences array ([bd18c9e](https://github.com/BitGo/BitGoJS/commit/bd18c9e5e897655036676db49070858e11b6e028))
196
+
197
+ ## [8.2.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@8.2.0...@bitgo/abstract-utxo@8.2.1) (2024-05-13)
198
+
199
+ **Note:** Version bump only for package @bitgo/abstract-utxo
200
+
201
+ # [8.2.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@8.1.3...@bitgo/abstract-utxo@8.2.0) (2024-05-08)
202
+
203
+ ### Features
204
+
205
+ - use canonical address when checking if owned by wallet ([82a13bd](https://github.com/BitGo/BitGoJS/commit/82a13bdaed9cf4f7ae5a1aa87e6ff7d92bf989eb))
206
+
207
+ ### Reverts
208
+
209
+ - Revert "Revert "feat(abstract-utxo): support trustless change outputs from explaintx"" ([03896f6](https://github.com/BitGo/BitGoJS/commit/03896f65ecaaa85f6a5a9be9d45012d848329938))
210
+
211
+ ## [8.1.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@8.1.2...@bitgo/abstract-utxo@8.1.3) (2024-05-01)
212
+
213
+ ### Reverts
214
+
215
+ - Revert "feat(abstract-utxo): support trustless change outputs from explaintx" ([23442a9](https://github.com/BitGo/BitGoJS/commit/23442a9873ae432c1d5efee8a3b3d4c0c3a772e2))
216
+
217
+ ## [8.1.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@8.1.1...@bitgo/abstract-utxo@8.1.2) (2024-04-25)
218
+
219
+ **Note:** Version bump only for package @bitgo/abstract-utxo
220
+
221
+ ## [8.1.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@8.1.0...@bitgo/abstract-utxo@8.1.1) (2024-04-24)
222
+
223
+ ### Bug Fixes
224
+
225
+ - superagent upgrade to 9.0 ([6e9aa43](https://github.com/BitGo/BitGoJS/commit/6e9aa43a6d2999298abd450ceb168d664b8b926d))
226
+
227
+ # [8.1.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@8.0.6...@bitgo/abstract-utxo@8.1.0) (2024-04-22)
228
+
229
+ ### Features
230
+
231
+ - **abstract-utxo:** support trustless change outputs from explaintx ([445ed53](https://github.com/BitGo/BitGoJS/commit/445ed5357c24357b5f9137669551e146bf2f2e60))
232
+ - only query unspents for wallet owned addresses ([5beaff5](https://github.com/BitGo/BitGoJS/commit/5beaff54e8fc11b642c13e3ac17ffd6b6ff4752c))
233
+
234
+ ## [8.0.6](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@8.0.5...@bitgo/abstract-utxo@8.0.6) (2024-04-17)
235
+
236
+ **Note:** Version bump only for package @bitgo/abstract-utxo
237
+
238
+ ## [8.0.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@8.0.4...@bitgo/abstract-utxo@8.0.5) (2024-04-12)
239
+
240
+ **Note:** Version bump only for package @bitgo/abstract-utxo
241
+
242
+ ## [8.0.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@8.0.3...@bitgo/abstract-utxo@8.0.4) (2024-04-10)
243
+
244
+ **Note:** Version bump only for package @bitgo/abstract-utxo
245
+
246
+ ## [8.0.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@8.0.2...@bitgo/abstract-utxo@8.0.3) (2024-04-09)
247
+
248
+ **Note:** Version bump only for package @bitgo/abstract-utxo
249
+
250
+ ## [8.0.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@8.0.1...@bitgo/abstract-utxo@8.0.2) (2024-04-08)
251
+
252
+ **Note:** Version bump only for package @bitgo/abstract-utxo
253
+
254
+ ## [8.0.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@8.0.0...@bitgo/abstract-utxo@8.0.1) (2024-04-05)
255
+
256
+ **Note:** Version bump only for package @bitgo/abstract-utxo
257
+
258
+ # [8.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@7.0.4...@bitgo/abstract-utxo@8.0.0) (2024-03-28)
259
+
260
+ ### Features
261
+
262
+ - **root:** deprecate node 16 ([d3ec624](https://github.com/BitGo/BitGoJS/commit/d3ec6240bddae2a4ab7fa80c4a16efecc36210bd))
263
+
264
+ ### BREAKING CHANGES
265
+
266
+ - **root:** Node 16 is no longer supported in bitgojs.
267
+ TICKET: WP-1100
268
+
269
+ ## [7.0.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@7.0.3...@bitgo/abstract-utxo@7.0.4) (2024-03-19)
270
+
271
+ **Note:** Version bump only for package @bitgo/abstract-utxo
272
+
273
+ ## [7.0.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@7.0.2...@bitgo/abstract-utxo@7.0.3) (2024-03-11)
274
+
275
+ **Note:** Version bump only for package @bitgo/abstract-utxo
276
+
277
+ ## [7.0.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@7.0.1...@bitgo/abstract-utxo@7.0.2) (2024-02-28)
278
+
279
+ **Note:** Version bump only for package @bitgo/abstract-utxo
280
+
281
+ ## [7.0.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@7.0.0...@bitgo/abstract-utxo@7.0.1) (2024-02-22)
282
+
283
+ **Note:** Version bump only for package @bitgo/abstract-utxo
284
+
285
+ # [7.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@3.5.0...@bitgo/abstract-utxo@7.0.0) (2024-02-19)
286
+
287
+ ### Bug Fixes
288
+
289
+ - **abstract-utxo:** add changeAddress to change params ([3df744d](https://github.com/BitGo/BitGoJS/commit/3df744dbfe8de6ff846aec13669c38454dd5139f))
290
+ - **abstract-utxo:** add changeAddressType to change params ([b05b278](https://github.com/BitGo/BitGoJS/commit/b05b278a7148b5a5bfb61b17f60b81c7477b6b31))
291
+ - **abstract-utxo:** assert locking script before signing ([92eedd9](https://github.com/BitGo/BitGoJS/commit/92eedd93b3e9696842c2cf2b51868ae4a6218a28))
292
+ - **abstract-utxo:** do not override changeAddressType or txFormat ([9494255](https://github.com/BitGo/BitGoJS/commit/94942559b0be8f9789c7afbb3740924aaab76ab3))
293
+ - **abstract-utxo:** revert to addressType ([5e45e62](https://github.com/BitGo/BitGoJS/commit/5e45e62d512c2794a517030027b1f9f66b20e048))
294
+ - **abstract-utxo:** upper case address should return false ([f0b6c46](https://github.com/BitGo/BitGoJS/commit/f0b6c467daaa0e43bb2923993fb238c7a4ce6f59))
295
+
296
+ ### Features
297
+
298
+ - **abstract-utxo:** change api used for bitcoin recovery from blockstream to blockchair ([6da5791](https://github.com/BitGo/BitGoJS/commit/6da5791bce2fc73d5d77c1eee6cb581b60da2079))
299
+ - **abstract-utxo:** enable segwit override when flagged ([bdf723c](https://github.com/BitGo/BitGoJS/commit/bdf723ce51d245e97b217941a21b02084b2473cf))
300
+ - **abstract-utxo:** support webauthn decryption in abstract utxo fn ([e9dd17a](https://github.com/BitGo/BitGoJS/commit/e9dd17a87211732a5287144df5a3fb766e6c1142))
301
+ - **abstract-utxo:** this enables psbt unless explicitly disabled for ([9a1722e](https://github.com/BitGo/BitGoJS/commit/9a1722e21e2a2fb3068d2940f439f72a6cbcb421))
302
+ - add walletFlags property, helper methods ([f0fd760](https://github.com/BitGo/BitGoJS/commit/f0fd760122334d86b0d4239bc3b23e0983a1d524))
303
+ - allow replacement transaction verification after prebuild ([c81fba8](https://github.com/BitGo/BitGoJS/commit/c81fba89a90f4e74289fd1580914d63a7d86da35))
304
+ - **bitgo:** calculate fees explicitly for psbts ([7a7e288](https://github.com/BitGo/BitGoJS/commit/7a7e288c63718a112abf633b842e7538d1e25693))
305
+ - handle musigKp flag in wallet ([b79b77c](https://github.com/BitGo/BitGoJS/commit/b79b77c4e0d64d85951724946206a5ded4fdd7b2))
306
+ - pass down `includeRbf: true` while fetching tx to be replaced ([4a5d9f0](https://github.com/BitGo/BitGoJS/commit/4a5d9f02db9a45a179bcaa3369493e2c57ecdf40))
307
+ - rectify the external/internal recipients handling for RBF ([6f0be13](https://github.com/BitGo/BitGoJS/commit/6f0be13918ac7afbeddb222819a243a44a46fd5b))
308
+ - rename the `findMissingOutputs` func to `outputDifference` ([d4c7eb4](https://github.com/BitGo/BitGoJS/commit/d4c7eb4baeb216e8165fd2cb452de9f4c6cb613e))
309
+ - **unspents:** default unspents dimensions to recovery path ([361eb62](https://github.com/BitGo/BitGoJS/commit/361eb62641aac19c876576a65da7f6777dc532a0))
310
+ - use psbt for prebuild when wallet is distributedCustody ([10f5e1a](https://github.com/BitGo/BitGoJS/commit/10f5e1ab37d2bea6acd93f94defbe786e4a027b9))
311
+
312
+ ### BREAKING CHANGES
313
+
314
+ - renames the `findMissingOutputs` to `outputDifference`
315
+ in `AbstractUtxoCoin` class
316
+
317
+ BTC-820
318
+
319
+ # [6.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@3.5.0...@bitgo/abstract-utxo@6.0.0) (2024-01-30)
320
+
321
+ ### Bug Fixes
322
+
323
+ - **abstract-utxo:** add changeAddress to change params ([3df744d](https://github.com/BitGo/BitGoJS/commit/3df744dbfe8de6ff846aec13669c38454dd5139f))
324
+ - **abstract-utxo:** add changeAddressType to change params ([b05b278](https://github.com/BitGo/BitGoJS/commit/b05b278a7148b5a5bfb61b17f60b81c7477b6b31))
325
+ - **abstract-utxo:** assert locking script before signing ([92eedd9](https://github.com/BitGo/BitGoJS/commit/92eedd93b3e9696842c2cf2b51868ae4a6218a28))
326
+ - **abstract-utxo:** do not override changeAddressType or txFormat ([9494255](https://github.com/BitGo/BitGoJS/commit/94942559b0be8f9789c7afbb3740924aaab76ab3))
327
+ - **abstract-utxo:** revert to addressType ([5e45e62](https://github.com/BitGo/BitGoJS/commit/5e45e62d512c2794a517030027b1f9f66b20e048))
328
+ - **abstract-utxo:** upper case address should return false ([f0b6c46](https://github.com/BitGo/BitGoJS/commit/f0b6c467daaa0e43bb2923993fb238c7a4ce6f59))
329
+
330
+ ### Features
331
+
332
+ - **abstract-utxo:** change api used for bitcoin recovery from blockstream to blockchair ([6da5791](https://github.com/BitGo/BitGoJS/commit/6da5791bce2fc73d5d77c1eee6cb581b60da2079))
333
+ - **abstract-utxo:** enable segwit override when flagged ([bdf723c](https://github.com/BitGo/BitGoJS/commit/bdf723ce51d245e97b217941a21b02084b2473cf))
334
+ - **abstract-utxo:** support webauthn decryption in abstract utxo fn ([e9dd17a](https://github.com/BitGo/BitGoJS/commit/e9dd17a87211732a5287144df5a3fb766e6c1142))
335
+ - **abstract-utxo:** this enables psbt unless explicitly disabled for ([9a1722e](https://github.com/BitGo/BitGoJS/commit/9a1722e21e2a2fb3068d2940f439f72a6cbcb421))
336
+ - add walletFlags property, helper methods ([f0fd760](https://github.com/BitGo/BitGoJS/commit/f0fd760122334d86b0d4239bc3b23e0983a1d524))
337
+ - allow replacement transaction verification after prebuild ([c81fba8](https://github.com/BitGo/BitGoJS/commit/c81fba89a90f4e74289fd1580914d63a7d86da35))
338
+ - **bitgo:** calculate fees explicitly for psbts ([7a7e288](https://github.com/BitGo/BitGoJS/commit/7a7e288c63718a112abf633b842e7538d1e25693))
339
+ - handle musigKp flag in wallet ([b79b77c](https://github.com/BitGo/BitGoJS/commit/b79b77c4e0d64d85951724946206a5ded4fdd7b2))
340
+ - rename the `findMissingOutputs` func to `outputDifference` ([d4c7eb4](https://github.com/BitGo/BitGoJS/commit/d4c7eb4baeb216e8165fd2cb452de9f4c6cb613e))
341
+ - **unspents:** default unspents dimensions to recovery path ([361eb62](https://github.com/BitGo/BitGoJS/commit/361eb62641aac19c876576a65da7f6777dc532a0))
342
+ - use psbt for prebuild when wallet is distributedCustody ([10f5e1a](https://github.com/BitGo/BitGoJS/commit/10f5e1ab37d2bea6acd93f94defbe786e4a027b9))
343
+
344
+ ### BREAKING CHANGES
345
+
346
+ - renames the `findMissingOutputs` to `outputDifference`
347
+ in `AbstractUtxoCoin` class
348
+
349
+ BTC-820
350
+
351
+ # [5.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@3.5.0...@bitgo/abstract-utxo@5.0.0) (2024-01-26)
352
+
353
+ ### Bug Fixes
354
+
355
+ - **abstract-utxo:** add changeAddress to change params ([3df744d](https://github.com/BitGo/BitGoJS/commit/3df744dbfe8de6ff846aec13669c38454dd5139f))
356
+ - **abstract-utxo:** add changeAddressType to change params ([b05b278](https://github.com/BitGo/BitGoJS/commit/b05b278a7148b5a5bfb61b17f60b81c7477b6b31))
357
+ - **abstract-utxo:** assert locking script before signing ([92eedd9](https://github.com/BitGo/BitGoJS/commit/92eedd93b3e9696842c2cf2b51868ae4a6218a28))
358
+ - **abstract-utxo:** do not override changeAddressType or txFormat ([9494255](https://github.com/BitGo/BitGoJS/commit/94942559b0be8f9789c7afbb3740924aaab76ab3))
359
+ - **abstract-utxo:** revert to addressType ([5e45e62](https://github.com/BitGo/BitGoJS/commit/5e45e62d512c2794a517030027b1f9f66b20e048))
360
+ - **abstract-utxo:** upper case address should return false ([f0b6c46](https://github.com/BitGo/BitGoJS/commit/f0b6c467daaa0e43bb2923993fb238c7a4ce6f59))
361
+
362
+ ### Features
363
+
364
+ - **abstract-utxo:** change api used for bitcoin recovery from blockstream to blockchair ([6da5791](https://github.com/BitGo/BitGoJS/commit/6da5791bce2fc73d5d77c1eee6cb581b60da2079))
365
+ - **abstract-utxo:** enable segwit override when flagged ([bdf723c](https://github.com/BitGo/BitGoJS/commit/bdf723ce51d245e97b217941a21b02084b2473cf))
366
+ - **abstract-utxo:** support webauthn decryption in abstract utxo fn ([e9dd17a](https://github.com/BitGo/BitGoJS/commit/e9dd17a87211732a5287144df5a3fb766e6c1142))
367
+ - **abstract-utxo:** this enables psbt unless explicitly disabled for ([9a1722e](https://github.com/BitGo/BitGoJS/commit/9a1722e21e2a2fb3068d2940f439f72a6cbcb421))
368
+ - add walletFlags property, helper methods ([f0fd760](https://github.com/BitGo/BitGoJS/commit/f0fd760122334d86b0d4239bc3b23e0983a1d524))
369
+ - allow replacement transaction verification after prebuild ([c81fba8](https://github.com/BitGo/BitGoJS/commit/c81fba89a90f4e74289fd1580914d63a7d86da35))
370
+ - **bitgo:** calculate fees explicitly for psbts ([7a7e288](https://github.com/BitGo/BitGoJS/commit/7a7e288c63718a112abf633b842e7538d1e25693))
371
+ - handle musigKp flag in wallet ([b79b77c](https://github.com/BitGo/BitGoJS/commit/b79b77c4e0d64d85951724946206a5ded4fdd7b2))
372
+ - rename the `findMissingOutputs` func to `outputDifference` ([d4c7eb4](https://github.com/BitGo/BitGoJS/commit/d4c7eb4baeb216e8165fd2cb452de9f4c6cb613e))
373
+ - **unspents:** default unspents dimensions to recovery path ([361eb62](https://github.com/BitGo/BitGoJS/commit/361eb62641aac19c876576a65da7f6777dc532a0))
374
+ - use psbt for prebuild when wallet is distributedCustody ([10f5e1a](https://github.com/BitGo/BitGoJS/commit/10f5e1ab37d2bea6acd93f94defbe786e4a027b9))
375
+
376
+ ### BREAKING CHANGES
377
+
378
+ - renames the `findMissingOutputs` to `outputDifference`
379
+ in `AbstractUtxoCoin` class
380
+
381
+ BTC-820
382
+
383
+ # [4.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@3.5.0...@bitgo/abstract-utxo@4.0.0) (2024-01-26)
384
+
385
+ ### Bug Fixes
386
+
387
+ - **abstract-utxo:** add changeAddress to change params ([3df744d](https://github.com/BitGo/BitGoJS/commit/3df744dbfe8de6ff846aec13669c38454dd5139f))
388
+ - **abstract-utxo:** add changeAddressType to change params ([b05b278](https://github.com/BitGo/BitGoJS/commit/b05b278a7148b5a5bfb61b17f60b81c7477b6b31))
389
+ - **abstract-utxo:** assert locking script before signing ([92eedd9](https://github.com/BitGo/BitGoJS/commit/92eedd93b3e9696842c2cf2b51868ae4a6218a28))
390
+ - **abstract-utxo:** do not override changeAddressType or txFormat ([9494255](https://github.com/BitGo/BitGoJS/commit/94942559b0be8f9789c7afbb3740924aaab76ab3))
391
+ - **abstract-utxo:** revert to addressType ([5e45e62](https://github.com/BitGo/BitGoJS/commit/5e45e62d512c2794a517030027b1f9f66b20e048))
392
+ - **abstract-utxo:** upper case address should return false ([f0b6c46](https://github.com/BitGo/BitGoJS/commit/f0b6c467daaa0e43bb2923993fb238c7a4ce6f59))
393
+
394
+ ### Features
395
+
396
+ - **abstract-utxo:** change api used for bitcoin recovery from blockstream to blockchair ([6da5791](https://github.com/BitGo/BitGoJS/commit/6da5791bce2fc73d5d77c1eee6cb581b60da2079))
397
+ - **abstract-utxo:** enable segwit override when flagged ([bdf723c](https://github.com/BitGo/BitGoJS/commit/bdf723ce51d245e97b217941a21b02084b2473cf))
398
+ - **abstract-utxo:** support webauthn decryption in abstract utxo fn ([e9dd17a](https://github.com/BitGo/BitGoJS/commit/e9dd17a87211732a5287144df5a3fb766e6c1142))
399
+ - **abstract-utxo:** this enables psbt unless explicitly disabled for ([9a1722e](https://github.com/BitGo/BitGoJS/commit/9a1722e21e2a2fb3068d2940f439f72a6cbcb421))
400
+ - add walletFlags property, helper methods ([f0fd760](https://github.com/BitGo/BitGoJS/commit/f0fd760122334d86b0d4239bc3b23e0983a1d524))
401
+ - allow replacement transaction verification after prebuild ([c81fba8](https://github.com/BitGo/BitGoJS/commit/c81fba89a90f4e74289fd1580914d63a7d86da35))
402
+ - **bitgo:** calculate fees explicitly for psbts ([7a7e288](https://github.com/BitGo/BitGoJS/commit/7a7e288c63718a112abf633b842e7538d1e25693))
403
+ - handle musigKp flag in wallet ([b79b77c](https://github.com/BitGo/BitGoJS/commit/b79b77c4e0d64d85951724946206a5ded4fdd7b2))
404
+ - rename the `findMissingOutputs` func to `outputDifference` ([d4c7eb4](https://github.com/BitGo/BitGoJS/commit/d4c7eb4baeb216e8165fd2cb452de9f4c6cb613e))
405
+ - **unspents:** default unspents dimensions to recovery path ([361eb62](https://github.com/BitGo/BitGoJS/commit/361eb62641aac19c876576a65da7f6777dc532a0))
406
+ - use psbt for prebuild when wallet is distributedCustody ([10f5e1a](https://github.com/BitGo/BitGoJS/commit/10f5e1ab37d2bea6acd93f94defbe786e4a027b9))
407
+
408
+ ### BREAKING CHANGES
409
+
410
+ - renames the `findMissingOutputs` to `outputDifference`
411
+ in `AbstractUtxoCoin` class
412
+
413
+ BTC-820
414
+
415
+ # [3.32.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@3.5.0...@bitgo/abstract-utxo@3.32.0) (2024-01-25)
416
+
417
+ ### Bug Fixes
418
+
419
+ - **abstract-utxo:** add changeAddress to change params ([3df744d](https://github.com/BitGo/BitGoJS/commit/3df744dbfe8de6ff846aec13669c38454dd5139f))
420
+ - **abstract-utxo:** add changeAddressType to change params ([b05b278](https://github.com/BitGo/BitGoJS/commit/b05b278a7148b5a5bfb61b17f60b81c7477b6b31))
421
+ - **abstract-utxo:** do not override changeAddressType or txFormat ([9494255](https://github.com/BitGo/BitGoJS/commit/94942559b0be8f9789c7afbb3740924aaab76ab3))
422
+ - **abstract-utxo:** revert to addressType ([5e45e62](https://github.com/BitGo/BitGoJS/commit/5e45e62d512c2794a517030027b1f9f66b20e048))
423
+ - **abstract-utxo:** upper case address should return false ([f0b6c46](https://github.com/BitGo/BitGoJS/commit/f0b6c467daaa0e43bb2923993fb238c7a4ce6f59))
424
+
425
+ ### Features
426
+
427
+ - **abstract-utxo:** change api used for bitcoin recovery from blockstream to blockchair ([6da5791](https://github.com/BitGo/BitGoJS/commit/6da5791bce2fc73d5d77c1eee6cb581b60da2079))
428
+ - **abstract-utxo:** enable segwit override when flagged ([bdf723c](https://github.com/BitGo/BitGoJS/commit/bdf723ce51d245e97b217941a21b02084b2473cf))
429
+ - **abstract-utxo:** support webauthn decryption in abstract utxo fn ([e9dd17a](https://github.com/BitGo/BitGoJS/commit/e9dd17a87211732a5287144df5a3fb766e6c1142))
430
+ - **abstract-utxo:** this enables psbt unless explicitly disabled for ([9a1722e](https://github.com/BitGo/BitGoJS/commit/9a1722e21e2a2fb3068d2940f439f72a6cbcb421))
431
+ - add walletFlags property, helper methods ([f0fd760](https://github.com/BitGo/BitGoJS/commit/f0fd760122334d86b0d4239bc3b23e0983a1d524))
432
+ - **bitgo:** calculate fees explicitly for psbts ([7a7e288](https://github.com/BitGo/BitGoJS/commit/7a7e288c63718a112abf633b842e7538d1e25693))
433
+ - handle musigKp flag in wallet ([b79b77c](https://github.com/BitGo/BitGoJS/commit/b79b77c4e0d64d85951724946206a5ded4fdd7b2))
434
+ - **unspents:** default unspents dimensions to recovery path ([361eb62](https://github.com/BitGo/BitGoJS/commit/361eb62641aac19c876576a65da7f6777dc532a0))
435
+ - use psbt for prebuild when wallet is distributedCustody ([10f5e1a](https://github.com/BitGo/BitGoJS/commit/10f5e1ab37d2bea6acd93f94defbe786e4a027b9))
436
+
437
+ # [3.31.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@3.5.0...@bitgo/abstract-utxo@3.31.0) (2024-01-22)
438
+
439
+ ### Bug Fixes
440
+
441
+ - **abstract-utxo:** add changeAddress to change params ([3df744d](https://github.com/BitGo/BitGoJS/commit/3df744dbfe8de6ff846aec13669c38454dd5139f))
442
+ - **abstract-utxo:** add changeAddressType to change params ([b05b278](https://github.com/BitGo/BitGoJS/commit/b05b278a7148b5a5bfb61b17f60b81c7477b6b31))
443
+ - **abstract-utxo:** do not override changeAddressType or txFormat ([9494255](https://github.com/BitGo/BitGoJS/commit/94942559b0be8f9789c7afbb3740924aaab76ab3))
444
+ - **abstract-utxo:** revert to addressType ([5e45e62](https://github.com/BitGo/BitGoJS/commit/5e45e62d512c2794a517030027b1f9f66b20e048))
445
+ - **abstract-utxo:** upper case address should return false ([f0b6c46](https://github.com/BitGo/BitGoJS/commit/f0b6c467daaa0e43bb2923993fb238c7a4ce6f59))
446
+
447
+ ### Features
448
+
449
+ - **abstract-utxo:** change api used for bitcoin recovery from blockstream to blockchair ([6da5791](https://github.com/BitGo/BitGoJS/commit/6da5791bce2fc73d5d77c1eee6cb581b60da2079))
450
+ - **abstract-utxo:** enable segwit override when flagged ([bdf723c](https://github.com/BitGo/BitGoJS/commit/bdf723ce51d245e97b217941a21b02084b2473cf))
451
+ - **abstract-utxo:** support webauthn decryption in abstract utxo fn ([e9dd17a](https://github.com/BitGo/BitGoJS/commit/e9dd17a87211732a5287144df5a3fb766e6c1142))
452
+ - **abstract-utxo:** this enables psbt unless explicitly disabled for ([9a1722e](https://github.com/BitGo/BitGoJS/commit/9a1722e21e2a2fb3068d2940f439f72a6cbcb421))
453
+ - add walletFlags property, helper methods ([f0fd760](https://github.com/BitGo/BitGoJS/commit/f0fd760122334d86b0d4239bc3b23e0983a1d524))
454
+ - **bitgo:** calculate fees explicitly for psbts ([7a7e288](https://github.com/BitGo/BitGoJS/commit/7a7e288c63718a112abf633b842e7538d1e25693))
455
+ - handle musigKp flag in wallet ([b79b77c](https://github.com/BitGo/BitGoJS/commit/b79b77c4e0d64d85951724946206a5ded4fdd7b2))
456
+ - **unspents:** default unspents dimensions to recovery path ([361eb62](https://github.com/BitGo/BitGoJS/commit/361eb62641aac19c876576a65da7f6777dc532a0))
457
+ - use psbt for prebuild when wallet is distributedCustody ([10f5e1a](https://github.com/BitGo/BitGoJS/commit/10f5e1ab37d2bea6acd93f94defbe786e4a027b9))
458
+
459
+ # [3.30.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@3.5.0...@bitgo/abstract-utxo@3.30.0) (2024-01-09)
460
+
461
+ ### Bug Fixes
462
+
463
+ - **abstract-utxo:** add changeAddress to change params ([3df744d](https://github.com/BitGo/BitGoJS/commit/3df744dbfe8de6ff846aec13669c38454dd5139f))
464
+ - **abstract-utxo:** add changeAddressType to change params ([b05b278](https://github.com/BitGo/BitGoJS/commit/b05b278a7148b5a5bfb61b17f60b81c7477b6b31))
465
+ - **abstract-utxo:** do not override changeAddressType or txFormat ([9494255](https://github.com/BitGo/BitGoJS/commit/94942559b0be8f9789c7afbb3740924aaab76ab3))
466
+ - **abstract-utxo:** revert to addressType ([5e45e62](https://github.com/BitGo/BitGoJS/commit/5e45e62d512c2794a517030027b1f9f66b20e048))
467
+ - **abstract-utxo:** upper case address should return false ([f0b6c46](https://github.com/BitGo/BitGoJS/commit/f0b6c467daaa0e43bb2923993fb238c7a4ce6f59))
468
+
469
+ ### Features
470
+
471
+ - **abstract-utxo:** change api used for bitcoin recovery from blockstream to blockchair ([6da5791](https://github.com/BitGo/BitGoJS/commit/6da5791bce2fc73d5d77c1eee6cb581b60da2079))
472
+ - **abstract-utxo:** enable segwit override when flagged ([bdf723c](https://github.com/BitGo/BitGoJS/commit/bdf723ce51d245e97b217941a21b02084b2473cf))
473
+ - **abstract-utxo:** this enables psbt unless explicitly disabled for ([9a1722e](https://github.com/BitGo/BitGoJS/commit/9a1722e21e2a2fb3068d2940f439f72a6cbcb421))
474
+ - add walletFlags property, helper methods ([f0fd760](https://github.com/BitGo/BitGoJS/commit/f0fd760122334d86b0d4239bc3b23e0983a1d524))
475
+ - **bitgo:** calculate fees explicitly for psbts ([7a7e288](https://github.com/BitGo/BitGoJS/commit/7a7e288c63718a112abf633b842e7538d1e25693))
476
+ - handle musigKp flag in wallet ([b79b77c](https://github.com/BitGo/BitGoJS/commit/b79b77c4e0d64d85951724946206a5ded4fdd7b2))
477
+ - **unspents:** default unspents dimensions to recovery path ([361eb62](https://github.com/BitGo/BitGoJS/commit/361eb62641aac19c876576a65da7f6777dc532a0))
478
+ - use psbt for prebuild when wallet is distributedCustody ([10f5e1a](https://github.com/BitGo/BitGoJS/commit/10f5e1ab37d2bea6acd93f94defbe786e4a027b9))
479
+
480
+ # [3.29.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@3.5.0...@bitgo/abstract-utxo@3.29.0) (2024-01-03)
481
+
482
+ ### Bug Fixes
483
+
484
+ - **abstract-utxo:** add changeAddress to change params ([3df744d](https://github.com/BitGo/BitGoJS/commit/3df744dbfe8de6ff846aec13669c38454dd5139f))
485
+ - **abstract-utxo:** add changeAddressType to change params ([b05b278](https://github.com/BitGo/BitGoJS/commit/b05b278a7148b5a5bfb61b17f60b81c7477b6b31))
486
+ - **abstract-utxo:** do not override changeAddressType or txFormat ([9494255](https://github.com/BitGo/BitGoJS/commit/94942559b0be8f9789c7afbb3740924aaab76ab3))
487
+ - **abstract-utxo:** revert to addressType ([5e45e62](https://github.com/BitGo/BitGoJS/commit/5e45e62d512c2794a517030027b1f9f66b20e048))
488
+ - **abstract-utxo:** upper case address should return false ([f0b6c46](https://github.com/BitGo/BitGoJS/commit/f0b6c467daaa0e43bb2923993fb238c7a4ce6f59))
489
+
490
+ ### Features
491
+
492
+ - **abstract-utxo:** change api used for bitcoin recovery from blockstream to blockchair ([6da5791](https://github.com/BitGo/BitGoJS/commit/6da5791bce2fc73d5d77c1eee6cb581b60da2079))
493
+ - **abstract-utxo:** enable segwit override when flagged ([bdf723c](https://github.com/BitGo/BitGoJS/commit/bdf723ce51d245e97b217941a21b02084b2473cf))
494
+ - **abstract-utxo:** this enables psbt unless explicitly disabled for ([9a1722e](https://github.com/BitGo/BitGoJS/commit/9a1722e21e2a2fb3068d2940f439f72a6cbcb421))
495
+ - **bitgo:** calculate fees explicitly for psbts ([7a7e288](https://github.com/BitGo/BitGoJS/commit/7a7e288c63718a112abf633b842e7538d1e25693))
496
+ - **unspents:** default unspents dimensions to recovery path ([361eb62](https://github.com/BitGo/BitGoJS/commit/361eb62641aac19c876576a65da7f6777dc532a0))
497
+ - use psbt for prebuild when wallet is distributedCustody ([10f5e1a](https://github.com/BitGo/BitGoJS/commit/10f5e1ab37d2bea6acd93f94defbe786e4a027b9))
498
+
499
+ # [3.28.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@3.5.0...@bitgo/abstract-utxo@3.28.0) (2023-12-18)
500
+
501
+ ### Bug Fixes
502
+
503
+ - **abstract-utxo:** add changeAddressType to change params ([b05b278](https://github.com/BitGo/BitGoJS/commit/b05b278a7148b5a5bfb61b17f60b81c7477b6b31))
504
+ - **abstract-utxo:** upper case address should return false ([f0b6c46](https://github.com/BitGo/BitGoJS/commit/f0b6c467daaa0e43bb2923993fb238c7a4ce6f59))
505
+
506
+ ### Features
507
+
508
+ - **abstract-utxo:** change api used for bitcoin recovery from blockstream to blockchair ([6da5791](https://github.com/BitGo/BitGoJS/commit/6da5791bce2fc73d5d77c1eee6cb581b60da2079))
509
+ - **abstract-utxo:** enable segwit override when flagged ([bdf723c](https://github.com/BitGo/BitGoJS/commit/bdf723ce51d245e97b217941a21b02084b2473cf))
510
+ - **abstract-utxo:** this enables psbt unless explicitly disabled for ([9a1722e](https://github.com/BitGo/BitGoJS/commit/9a1722e21e2a2fb3068d2940f439f72a6cbcb421))
511
+ - **bitgo:** calculate fees explicitly for psbts ([7a7e288](https://github.com/BitGo/BitGoJS/commit/7a7e288c63718a112abf633b842e7538d1e25693))
512
+ - **unspents:** default unspents dimensions to recovery path ([361eb62](https://github.com/BitGo/BitGoJS/commit/361eb62641aac19c876576a65da7f6777dc532a0))
513
+ - use psbt for prebuild when wallet is distributedCustody ([10f5e1a](https://github.com/BitGo/BitGoJS/commit/10f5e1ab37d2bea6acd93f94defbe786e4a027b9))
514
+
515
+ # [3.27.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@3.5.0...@bitgo/abstract-utxo@3.27.0) (2023-12-12)
516
+
517
+ ### Bug Fixes
518
+
519
+ - **abstract-utxo:** upper case address should return false ([f0b6c46](https://github.com/BitGo/BitGoJS/commit/f0b6c467daaa0e43bb2923993fb238c7a4ce6f59))
520
+
521
+ ### Features
522
+
523
+ - **abstract-utxo:** change api used for bitcoin recovery from blockstream to blockchair ([6da5791](https://github.com/BitGo/BitGoJS/commit/6da5791bce2fc73d5d77c1eee6cb581b60da2079))
524
+ - **abstract-utxo:** enable segwit override when flagged ([bdf723c](https://github.com/BitGo/BitGoJS/commit/bdf723ce51d245e97b217941a21b02084b2473cf))
525
+ - **abstract-utxo:** this enables psbt unless explicitly disabled for ([9a1722e](https://github.com/BitGo/BitGoJS/commit/9a1722e21e2a2fb3068d2940f439f72a6cbcb421))
526
+ - **bitgo:** calculate fees explicitly for psbts ([7a7e288](https://github.com/BitGo/BitGoJS/commit/7a7e288c63718a112abf633b842e7538d1e25693))
527
+ - **unspents:** default unspents dimensions to recovery path ([361eb62](https://github.com/BitGo/BitGoJS/commit/361eb62641aac19c876576a65da7f6777dc532a0))
528
+ - use psbt for prebuild when wallet is distributedCustody ([10f5e1a](https://github.com/BitGo/BitGoJS/commit/10f5e1ab37d2bea6acd93f94defbe786e4a027b9))
529
+
530
+ # [3.26.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@3.5.0...@bitgo/abstract-utxo@3.26.0) (2023-12-09)
531
+
532
+ ### Bug Fixes
533
+
534
+ - **abstract-utxo:** upper case address should return false ([f0b6c46](https://github.com/BitGo/BitGoJS/commit/f0b6c467daaa0e43bb2923993fb238c7a4ce6f59))
535
+
536
+ ### Features
537
+
538
+ - **abstract-utxo:** change api used for bitcoin recovery from blockstream to blockchair ([6da5791](https://github.com/BitGo/BitGoJS/commit/6da5791bce2fc73d5d77c1eee6cb581b60da2079))
539
+ - **abstract-utxo:** this enables psbt unless explicitly disabled for ([9a1722e](https://github.com/BitGo/BitGoJS/commit/9a1722e21e2a2fb3068d2940f439f72a6cbcb421))
540
+ - **bitgo:** calculate fees explicitly for psbts ([7a7e288](https://github.com/BitGo/BitGoJS/commit/7a7e288c63718a112abf633b842e7538d1e25693))
541
+ - **unspents:** default unspents dimensions to recovery path ([361eb62](https://github.com/BitGo/BitGoJS/commit/361eb62641aac19c876576a65da7f6777dc532a0))
542
+ - use psbt for prebuild when wallet is distributedCustody ([10f5e1a](https://github.com/BitGo/BitGoJS/commit/10f5e1ab37d2bea6acd93f94defbe786e4a027b9))
543
+
544
+ # [3.25.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@3.5.0...@bitgo/abstract-utxo@3.25.0) (2023-12-05)
545
+
546
+ ### Bug Fixes
547
+
548
+ - **abstract-utxo:** upper case address should return false ([f0b6c46](https://github.com/BitGo/BitGoJS/commit/f0b6c467daaa0e43bb2923993fb238c7a4ce6f59))
549
+
550
+ ### Features
551
+
552
+ - **abstract-utxo:** change api used for bitcoin recovery from blockstream to blockchair ([6da5791](https://github.com/BitGo/BitGoJS/commit/6da5791bce2fc73d5d77c1eee6cb581b60da2079))
553
+ - **abstract-utxo:** this enables psbt unless explicitly disabled for ([9a1722e](https://github.com/BitGo/BitGoJS/commit/9a1722e21e2a2fb3068d2940f439f72a6cbcb421))
554
+ - **bitgo:** calculate fees explicitly for psbts ([7a7e288](https://github.com/BitGo/BitGoJS/commit/7a7e288c63718a112abf633b842e7538d1e25693))
555
+ - **unspents:** default unspents dimensions to recovery path ([361eb62](https://github.com/BitGo/BitGoJS/commit/361eb62641aac19c876576a65da7f6777dc532a0))
556
+ - use psbt for prebuild when wallet is distributedCustody ([10f5e1a](https://github.com/BitGo/BitGoJS/commit/10f5e1ab37d2bea6acd93f94defbe786e4a027b9))
557
+
558
+ # [3.24.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@3.5.0...@bitgo/abstract-utxo@3.24.0) (2023-11-28)
559
+
560
+ ### Bug Fixes
561
+
562
+ - **abstract-utxo:** upper case address should return false ([f0b6c46](https://github.com/BitGo/BitGoJS/commit/f0b6c467daaa0e43bb2923993fb238c7a4ce6f59))
563
+
564
+ ### Features
565
+
566
+ - **abstract-utxo:** change api used for bitcoin recovery from blockstream to blockchair ([6da5791](https://github.com/BitGo/BitGoJS/commit/6da5791bce2fc73d5d77c1eee6cb581b60da2079))
567
+ - **bitgo:** calculate fees explicitly for psbts ([7a7e288](https://github.com/BitGo/BitGoJS/commit/7a7e288c63718a112abf633b842e7538d1e25693))
568
+ - **unspents:** default unspents dimensions to recovery path ([361eb62](https://github.com/BitGo/BitGoJS/commit/361eb62641aac19c876576a65da7f6777dc532a0))
569
+ - use psbt for prebuild when wallet is distributedCustody ([10f5e1a](https://github.com/BitGo/BitGoJS/commit/10f5e1ab37d2bea6acd93f94defbe786e4a027b9))
570
+
571
+ # [3.23.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@3.5.0...@bitgo/abstract-utxo@3.23.0) (2023-11-24)
572
+
573
+ ### Bug Fixes
574
+
575
+ - **abstract-utxo:** upper case address should return false ([f0b6c46](https://github.com/BitGo/BitGoJS/commit/f0b6c467daaa0e43bb2923993fb238c7a4ce6f59))
576
+
577
+ ### Features
578
+
579
+ - **abstract-utxo:** change api used for bitcoin recovery from blockstream to blockchair ([6da5791](https://github.com/BitGo/BitGoJS/commit/6da5791bce2fc73d5d77c1eee6cb581b60da2079))
580
+ - **bitgo:** calculate fees explicitly for psbts ([7a7e288](https://github.com/BitGo/BitGoJS/commit/7a7e288c63718a112abf633b842e7538d1e25693))
581
+ - **unspents:** default unspents dimensions to recovery path ([361eb62](https://github.com/BitGo/BitGoJS/commit/361eb62641aac19c876576a65da7f6777dc532a0))
582
+ - use psbt for prebuild when wallet is distributedCustody ([10f5e1a](https://github.com/BitGo/BitGoJS/commit/10f5e1ab37d2bea6acd93f94defbe786e4a027b9))
583
+
584
+ # [3.22.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@3.5.0...@bitgo/abstract-utxo@3.22.0) (2023-11-17)
585
+
586
+ ### Bug Fixes
587
+
588
+ - **abstract-utxo:** upper case address should return false ([f0b6c46](https://github.com/BitGo/BitGoJS/commit/f0b6c467daaa0e43bb2923993fb238c7a4ce6f59))
589
+
590
+ ### Features
591
+
592
+ - **abstract-utxo:** change api used for bitcoin recovery from blockstream to blockchair ([6da5791](https://github.com/BitGo/BitGoJS/commit/6da5791bce2fc73d5d77c1eee6cb581b60da2079))
593
+ - **bitgo:** calculate fees explicitly for psbts ([7a7e288](https://github.com/BitGo/BitGoJS/commit/7a7e288c63718a112abf633b842e7538d1e25693))
594
+ - **unspents:** default unspents dimensions to recovery path ([361eb62](https://github.com/BitGo/BitGoJS/commit/361eb62641aac19c876576a65da7f6777dc532a0))
595
+ - use psbt for prebuild when wallet is distributedCustody ([10f5e1a](https://github.com/BitGo/BitGoJS/commit/10f5e1ab37d2bea6acd93f94defbe786e4a027b9))
596
+
597
+ # [3.21.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@3.5.0...@bitgo/abstract-utxo@3.21.0) (2023-11-13)
598
+
599
+ ### Bug Fixes
600
+
601
+ - **abstract-utxo:** upper case address should return false ([f0b6c46](https://github.com/BitGo/BitGoJS/commit/f0b6c467daaa0e43bb2923993fb238c7a4ce6f59))
602
+
603
+ ### Features
604
+
605
+ - **abstract-utxo:** change api used for bitcoin recovery from blockstream to blockchair ([6da5791](https://github.com/BitGo/BitGoJS/commit/6da5791bce2fc73d5d77c1eee6cb581b60da2079))
606
+ - **bitgo:** calculate fees explicitly for psbts ([7a7e288](https://github.com/BitGo/BitGoJS/commit/7a7e288c63718a112abf633b842e7538d1e25693))
607
+ - use psbt for prebuild when wallet is distributedCustody ([10f5e1a](https://github.com/BitGo/BitGoJS/commit/10f5e1ab37d2bea6acd93f94defbe786e4a027b9))
608
+
609
+ # [3.20.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@3.5.0...@bitgo/abstract-utxo@3.20.0) (2023-11-13)
610
+
611
+ ### Bug Fixes
612
+
613
+ - **abstract-utxo:** upper case address should return false ([f0b6c46](https://github.com/BitGo/BitGoJS/commit/f0b6c467daaa0e43bb2923993fb238c7a4ce6f59))
614
+
615
+ ### Features
616
+
617
+ - **abstract-utxo:** change api used for bitcoin recovery from blockstream to blockchair ([6da5791](https://github.com/BitGo/BitGoJS/commit/6da5791bce2fc73d5d77c1eee6cb581b60da2079))
618
+ - **bitgo:** calculate fees explicitly for psbts ([7a7e288](https://github.com/BitGo/BitGoJS/commit/7a7e288c63718a112abf633b842e7538d1e25693))
619
+ - use psbt for prebuild when wallet is distributedCustody ([10f5e1a](https://github.com/BitGo/BitGoJS/commit/10f5e1ab37d2bea6acd93f94defbe786e4a027b9))
620
+
621
+ # [3.19.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@3.5.0...@bitgo/abstract-utxo@3.19.0) (2023-11-13)
622
+
623
+ ### Bug Fixes
624
+
625
+ - **abstract-utxo:** upper case address should return false ([f0b6c46](https://github.com/BitGo/BitGoJS/commit/f0b6c467daaa0e43bb2923993fb238c7a4ce6f59))
626
+
627
+ ### Features
628
+
629
+ - **abstract-utxo:** change api used for bitcoin recovery from blockstream to blockchair ([6da5791](https://github.com/BitGo/BitGoJS/commit/6da5791bce2fc73d5d77c1eee6cb581b60da2079))
630
+ - **bitgo:** calculate fees explicitly for psbts ([7a7e288](https://github.com/BitGo/BitGoJS/commit/7a7e288c63718a112abf633b842e7538d1e25693))
631
+ - use psbt for prebuild when wallet is distributedCustody ([10f5e1a](https://github.com/BitGo/BitGoJS/commit/10f5e1ab37d2bea6acd93f94defbe786e4a027b9))
632
+
633
+ # [3.18.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@3.5.0...@bitgo/abstract-utxo@3.18.0) (2023-10-20)
634
+
635
+ ### Bug Fixes
636
+
637
+ - **abstract-utxo:** upper case address should return false ([f0b6c46](https://github.com/BitGo/BitGoJS/commit/f0b6c467daaa0e43bb2923993fb238c7a4ce6f59))
638
+
639
+ ### Features
640
+
641
+ - **abstract-utxo:** change api used for bitcoin recovery from blockstream to blockchair ([6da5791](https://github.com/BitGo/BitGoJS/commit/6da5791bce2fc73d5d77c1eee6cb581b60da2079))
642
+ - **bitgo:** calculate fees explicitly for psbts ([7a7e288](https://github.com/BitGo/BitGoJS/commit/7a7e288c63718a112abf633b842e7538d1e25693))
643
+
644
+ # [3.17.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@3.5.0...@bitgo/abstract-utxo@3.17.0) (2023-10-18)
645
+
646
+ ### Bug Fixes
647
+
648
+ - **abstract-utxo:** upper case address should return false ([f0b6c46](https://github.com/BitGo/BitGoJS/commit/f0b6c467daaa0e43bb2923993fb238c7a4ce6f59))
649
+
650
+ ### Features
651
+
652
+ - **abstract-utxo:** change api used for bitcoin recovery from blockstream to blockchair ([6da5791](https://github.com/BitGo/BitGoJS/commit/6da5791bce2fc73d5d77c1eee6cb581b60da2079))
653
+ - **bitgo:** calculate fees explicitly for psbts ([7a7e288](https://github.com/BitGo/BitGoJS/commit/7a7e288c63718a112abf633b842e7538d1e25693))
654
+
655
+ # [3.16.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@3.5.0...@bitgo/abstract-utxo@3.16.0) (2023-09-25)
656
+
657
+ ### Bug Fixes
658
+
659
+ - **abstract-utxo:** upper case address should return false ([f0b6c46](https://github.com/BitGo/BitGoJS/commit/f0b6c467daaa0e43bb2923993fb238c7a4ce6f59))
660
+
661
+ ### Features
662
+
663
+ - **abstract-utxo:** change api used for bitcoin recovery from blockstream to blockchair ([6da5791](https://github.com/BitGo/BitGoJS/commit/6da5791bce2fc73d5d77c1eee6cb581b60da2079))
664
+ - **bitgo:** calculate fees explicitly for psbts ([7a7e288](https://github.com/BitGo/BitGoJS/commit/7a7e288c63718a112abf633b842e7538d1e25693))
665
+
666
+ # [3.15.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@3.5.0...@bitgo/abstract-utxo@3.15.0) (2023-09-09)
667
+
668
+ ### Bug Fixes
669
+
670
+ - **abstract-utxo:** upper case address should return false ([f0b6c46](https://github.com/BitGo/BitGoJS/commit/f0b6c467daaa0e43bb2923993fb238c7a4ce6f59))
671
+
672
+ ### Features
673
+
674
+ - **abstract-utxo:** change api used for bitcoin recovery from blockstream to blockchair ([6da5791](https://github.com/BitGo/BitGoJS/commit/6da5791bce2fc73d5d77c1eee6cb581b60da2079))
675
+ - **bitgo:** calculate fees explicitly for psbts ([7a7e288](https://github.com/BitGo/BitGoJS/commit/7a7e288c63718a112abf633b842e7538d1e25693))
676
+
677
+ # [3.14.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@3.5.0...@bitgo/abstract-utxo@3.14.0) (2023-09-09)
678
+
679
+ ### Bug Fixes
680
+
681
+ - **abstract-utxo:** upper case address should return false ([f0b6c46](https://github.com/BitGo/BitGoJS/commit/f0b6c467daaa0e43bb2923993fb238c7a4ce6f59))
682
+
683
+ ### Features
684
+
685
+ - **abstract-utxo:** change api used for bitcoin recovery from blockstream to blockchair ([6da5791](https://github.com/BitGo/BitGoJS/commit/6da5791bce2fc73d5d77c1eee6cb581b60da2079))
686
+ - **bitgo:** calculate fees explicitly for psbts ([7a7e288](https://github.com/BitGo/BitGoJS/commit/7a7e288c63718a112abf633b842e7538d1e25693))
687
+
688
+ # [3.13.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@3.5.0...@bitgo/abstract-utxo@3.13.0) (2023-09-07)
689
+
690
+ ### Bug Fixes
691
+
692
+ - **abstract-utxo:** upper case address should return false ([f0b6c46](https://github.com/BitGo/BitGoJS/commit/f0b6c467daaa0e43bb2923993fb238c7a4ce6f59))
693
+
694
+ ### Features
695
+
696
+ - **abstract-utxo:** change api used for bitcoin recovery from blockstream to blockchair ([6da5791](https://github.com/BitGo/BitGoJS/commit/6da5791bce2fc73d5d77c1eee6cb581b60da2079))
697
+ - **bitgo:** calculate fees explicitly for psbts ([7a7e288](https://github.com/BitGo/BitGoJS/commit/7a7e288c63718a112abf633b842e7538d1e25693))
698
+
699
+ # [3.12.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@3.5.0...@bitgo/abstract-utxo@3.12.0) (2023-09-05)
700
+
701
+ ### Features
702
+
703
+ - **abstract-utxo:** change api used for bitcoin recovery from blockstream to blockchair ([6da5791](https://github.com/BitGo/BitGoJS/commit/6da5791bce2fc73d5d77c1eee6cb581b60da2079))
704
+ - **bitgo:** calculate fees explicitly for psbts ([7a7e288](https://github.com/BitGo/BitGoJS/commit/7a7e288c63718a112abf633b842e7538d1e25693))
705
+
706
+ # [3.11.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@3.5.0...@bitgo/abstract-utxo@3.11.0) (2023-09-01)
707
+
708
+ ### Features
709
+
710
+ - **abstract-utxo:** change api used for bitcoin recovery from blockstream to blockchair ([6da5791](https://github.com/BitGo/BitGoJS/commit/6da5791bce2fc73d5d77c1eee6cb581b60da2079))
711
+ - **bitgo:** calculate fees explicitly for psbts ([7a7e288](https://github.com/BitGo/BitGoJS/commit/7a7e288c63718a112abf633b842e7538d1e25693))
712
+
713
+ # [3.10.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@3.5.0...@bitgo/abstract-utxo@3.10.0) (2023-08-29)
714
+
715
+ ### Features
716
+
717
+ - **abstract-utxo:** change api used for bitcoin recovery from blockstream to blockchair ([6da5791](https://github.com/BitGo/BitGoJS/commit/6da5791bce2fc73d5d77c1eee6cb581b60da2079))
718
+ - **bitgo:** calculate fees explicitly for psbts ([7a7e288](https://github.com/BitGo/BitGoJS/commit/7a7e288c63718a112abf633b842e7538d1e25693))
719
+
720
+ # [3.9.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@3.5.0...@bitgo/abstract-utxo@3.9.0) (2023-08-25)
721
+
722
+ ### Features
723
+
724
+ - **abstract-utxo:** change api used for bitcoin recovery from blockstream to blockchair ([6da5791](https://github.com/BitGo/BitGoJS/commit/6da5791bce2fc73d5d77c1eee6cb581b60da2079))
725
+ - **bitgo:** calculate fees explicitly for psbts ([7a7e288](https://github.com/BitGo/BitGoJS/commit/7a7e288c63718a112abf633b842e7538d1e25693))
726
+
727
+ # [3.8.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@3.5.0...@bitgo/abstract-utxo@3.8.0) (2023-08-24)
728
+
729
+ ### Features
730
+
731
+ - **abstract-utxo:** change api used for bitcoin recovery from blockstream to blockchair ([6da5791](https://github.com/BitGo/BitGoJS/commit/6da5791bce2fc73d5d77c1eee6cb581b60da2079))
732
+ - **bitgo:** calculate fees explicitly for psbts ([7a7e288](https://github.com/BitGo/BitGoJS/commit/7a7e288c63718a112abf633b842e7538d1e25693))
733
+
734
+ # [3.7.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@3.5.0...@bitgo/abstract-utxo@3.7.0) (2023-08-16)
735
+
736
+ ### Features
737
+
738
+ - **abstract-utxo:** change api used for bitcoin recovery from blockstream to blockchair ([6da5791](https://github.com/BitGo/BitGoJS/commit/6da5791bce2fc73d5d77c1eee6cb581b60da2079))
739
+ - **bitgo:** calculate fees explicitly for psbts ([7a7e288](https://github.com/BitGo/BitGoJS/commit/7a7e288c63718a112abf633b842e7538d1e25693))
740
+
741
+ # [3.6.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@3.5.0...@bitgo/abstract-utxo@3.6.0) (2023-08-16)
742
+
743
+ ### Features
744
+
745
+ - **abstract-utxo:** change api used for bitcoin recovery from blockstream to blockchair ([6da5791](https://github.com/BitGo/BitGoJS/commit/6da5791bce2fc73d5d77c1eee6cb581b60da2079))
746
+ - **bitgo:** calculate fees explicitly for psbts ([7a7e288](https://github.com/BitGo/BitGoJS/commit/7a7e288c63718a112abf633b842e7538d1e25693))
747
+
748
+ # [3.5.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@3.3.0...@bitgo/abstract-utxo@3.5.0) (2023-08-04)
749
+
750
+ ### Features
751
+
752
+ - **abstract-utxo:** add psbt support backup recovery ([b312a86](https://github.com/BitGo/BitGoJS/commit/b312a86091c1320b4d7a02bd1ca5c3d2056c00c6))
753
+ - **root:** add node 18 to engines and CI ([9cc6a70](https://github.com/BitGo/BitGoJS/commit/9cc6a70ba807161b7c6a0ebe3d7c47f25c7c8eca))
754
+ - **root:** remove node 14 from engines ([6ec47cb](https://github.com/BitGo/BitGoJS/commit/6ec47cbd7996cc78bbf2cf7f16595c24fe43cd41))
755
+ - **utxo-lib:** extract half signed tx from psbt ([3145474](https://github.com/BitGo/BitGoJS/commit/31454748fcea6df7fbbf886937abc48b36fb9cbd))
756
+
757
+ # [3.4.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@3.3.0...@bitgo/abstract-utxo@3.4.0) (2023-07-28)
758
+
759
+ ### Features
760
+
761
+ - **root:** add node 18 to engines and CI ([9cc6a70](https://github.com/BitGo/BitGoJS/commit/9cc6a70ba807161b7c6a0ebe3d7c47f25c7c8eca))
762
+ - **root:** remove node 14 from engines ([6ec47cb](https://github.com/BitGo/BitGoJS/commit/6ec47cbd7996cc78bbf2cf7f16595c24fe43cd41))
763
+ - **utxo-lib:** extract half signed tx from psbt ([3145474](https://github.com/BitGo/BitGoJS/commit/31454748fcea6df7fbbf886937abc48b36fb9cbd))
764
+
765
+ # [3.3.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@3.2.0...@bitgo/abstract-utxo@3.3.0) (2023-07-18)
766
+
767
+ ### Features
768
+
769
+ - **abstract-utxo:** always use bitcoin network for validating secondary key signatures ([d9b7022](https://github.com/BitGo/BitGoJS/commit/d9b7022832ed38d8661b842add34caa97f340d31))
770
+ - **abstract-utxo:** move keysSignatures test to separate file ([b9fa5c5](https://github.com/BitGo/BitGoJS/commit/b9fa5c57ae6207974612c96c4cf0941665703a4e))
771
+
772
+ # [3.2.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@3.1.2...@bitgo/abstract-utxo@3.2.0) (2023-06-21)
773
+
774
+ ### Features
775
+
776
+ - **abstract-utxo:** support express external signer for musig2 inputs ([4401367](https://github.com/BitGo/BitGoJS/commit/44013673d564c976ae7b55788369dc48acbec64f))
777
+ - **utxo-lib:** add extractTransaction to UtxoPsbt ([0c41982](https://github.com/BitGo/BitGoJS/commit/0c41982de5b9397e69b314272c4e0f38bb6f69c3))
778
+
779
+ ## [3.1.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@3.1.1...@bitgo/abstract-utxo@3.1.2) (2023-06-14)
780
+
781
+ **Note:** Version bump only for package @bitgo/abstract-utxo
782
+
783
+ ## [3.1.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@3.1.0...@bitgo/abstract-utxo@3.1.1) (2023-06-13)
784
+
785
+ **Note:** Version bump only for package @bitgo/abstract-utxo
786
+
787
+ # [3.1.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@3.0.0...@bitgo/abstract-utxo@3.1.0) (2023-06-07)
788
+
789
+ ### Features
790
+
791
+ - **abstract-utxo:** make walletId param optional for signtx ([f5aff50](https://github.com/BitGo/BitGoJS/commit/f5aff5087727fb1842dc7cda64756553ab364c2b))
792
+
793
+ # [3.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@2.3.0...@bitgo/abstract-utxo@3.0.0) (2023-06-05)
794
+
795
+ ### Bug Fixes
796
+
797
+ - **utxo-lib:** use PsbtInput instead of UtxoPsbt ([1f73539](https://github.com/BitGo/BitGoJS/commit/1f73539409cf69fc55ab8aedb9d8873bb82bc375))
798
+
799
+ ### Features
800
+
801
+ - **abstract-utxo:** add psbt support to explain and verify Tx ([4189659](https://github.com/BitGo/BitGoJS/commit/41896593cdc180cb5a60145a8d31fdf55dba6bb2))
802
+
803
+ ### BREAKING CHANGES
804
+
805
+ - **utxo-lib:** functions signature is changed
806
+
807
+ # [2.3.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@2.2.1...@bitgo/abstract-utxo@2.3.0) (2023-05-25)
808
+
809
+ ### Features
810
+
811
+ - **abstract-utxo:** add psbt and musig2 support for sdk-api ([7a23991](https://github.com/BitGo/BitGoJS/commit/7a23991079e5609d43d7483f8137189163943dfc))
812
+
813
+ ## [2.2.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@2.2.0...@bitgo/abstract-utxo@2.2.1) (2023-05-17)
814
+
815
+ **Note:** Version bump only for package @bitgo/abstract-utxo
816
+
817
+ # [2.2.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@2.1.3...@bitgo/abstract-utxo@2.2.0) (2023-05-10)
818
+
819
+ ### Features
820
+
821
+ - **sdk-coin-btc:** find & use supplementary unspents in case ([fc321ee](https://github.com/BitGo/BitGoJS/commit/fc321ee1fccfae2d6676070fb32d8d4dee531aaf))
822
+
823
+ ## [2.1.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@2.1.2...@bitgo/abstract-utxo@2.1.3) (2023-05-03)
824
+
825
+ **Note:** Version bump only for package @bitgo/abstract-utxo
826
+
827
+ ## [2.1.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@2.1.1...@bitgo/abstract-utxo@2.1.2) (2023-04-25)
828
+
829
+ **Note:** Version bump only for package @bitgo/abstract-utxo
830
+
831
+ ## [2.1.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@2.1.0...@bitgo/abstract-utxo@2.1.1) (2023-04-20)
832
+
833
+ **Note:** Version bump only for package @bitgo/abstract-utxo
834
+
835
+ # [2.1.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@2.0.1...@bitgo/abstract-utxo@2.1.0) (2023-04-13)
836
+
837
+ ### Bug Fixes
838
+
839
+ - **sdk-coin-btc:** get rootwalletkeys for inscription transfer ([b160186](https://github.com/BitGo/BitGoJS/commit/b16018643273e20ea6908f51149139def7209932))
840
+
841
+ ### Features
842
+
843
+ - **utxo-lib:** create p2tr address using musig2 ([699e829](https://github.com/BitGo/BitGoJS/commit/699e8291f4a205ba0b2071c6369f2c8843b8a945))
844
+
6
845
  ## [2.0.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@2.0.0...@bitgo/abstract-utxo@2.0.1) (2023-02-17)
7
846
 
8
847
  **Note:** Version bump only for package @bitgo/abstract-utxo