@bitgo-beta/abstract-utxo 1.6.1-alpha.25 → 1.6.1-alpha.251

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 (268) hide show
  1. package/.eslintrc.js +6 -0
  2. package/CHANGELOG.md +977 -0
  3. package/dist/src/abstractUtxoCoin.d.ts +192 -98
  4. package/dist/src/abstractUtxoCoin.d.ts.map +1 -1
  5. package/dist/src/abstractUtxoCoin.js +290 -541
  6. package/dist/src/core/descriptor/DescriptorMap.d.ts +9 -0
  7. package/dist/src/core/descriptor/DescriptorMap.d.ts.map +1 -0
  8. package/dist/src/core/descriptor/DescriptorMap.js +12 -0
  9. package/dist/src/core/descriptor/Output.d.ts +24 -0
  10. package/dist/src/core/descriptor/Output.d.ts.map +1 -0
  11. package/dist/src/core/descriptor/Output.js +22 -0
  12. package/dist/src/core/descriptor/VirtualSize.d.ts +21 -0
  13. package/dist/src/core/descriptor/VirtualSize.d.ts.map +1 -0
  14. package/dist/src/core/descriptor/VirtualSize.js +83 -0
  15. package/dist/src/core/descriptor/address.d.ts +5 -0
  16. package/dist/src/core/descriptor/address.d.ts.map +1 -0
  17. package/dist/src/core/descriptor/address.js +48 -0
  18. package/dist/src/core/descriptor/index.d.ts +9 -0
  19. package/dist/src/core/descriptor/index.d.ts.map +1 -0
  20. package/dist/src/core/descriptor/index.js +17 -0
  21. package/dist/src/core/descriptor/psbt/assertSatisfiable.d.ts +20 -0
  22. package/dist/src/core/descriptor/psbt/assertSatisfiable.d.ts.map +1 -0
  23. package/dist/src/core/descriptor/psbt/assertSatisfiable.js +74 -0
  24. package/dist/src/core/descriptor/psbt/createPsbt.d.ts +15 -0
  25. package/dist/src/core/descriptor/psbt/createPsbt.d.ts.map +1 -0
  26. package/dist/src/core/descriptor/psbt/createPsbt.js +82 -0
  27. package/dist/src/core/descriptor/psbt/findDescriptors.d.ts +22 -0
  28. package/dist/src/core/descriptor/psbt/findDescriptors.d.ts.map +1 -0
  29. package/dist/src/core/descriptor/psbt/findDescriptors.js +74 -0
  30. package/dist/src/core/descriptor/psbt/index.d.ts +5 -0
  31. package/dist/src/core/descriptor/psbt/index.d.ts.map +1 -0
  32. package/dist/src/core/descriptor/psbt/index.js +10 -0
  33. package/dist/src/core/descriptor/psbt/parse.d.ts +27 -0
  34. package/dist/src/core/descriptor/psbt/parse.d.ts.map +1 -0
  35. package/dist/src/core/descriptor/psbt/parse.js +87 -0
  36. package/dist/src/core/descriptor/psbt/wrap.d.ts +12 -0
  37. package/dist/src/core/descriptor/psbt/wrap.d.ts.map +1 -0
  38. package/dist/src/core/descriptor/psbt/wrap.js +76 -0
  39. package/dist/src/core/descriptor/signTxLocal.d.ts +3 -0
  40. package/dist/src/core/descriptor/signTxLocal.d.ts.map +1 -0
  41. package/dist/src/core/descriptor/signTxLocal.js +9 -0
  42. package/dist/src/descriptor/NamedDescriptor.d.ts +18 -0
  43. package/dist/src/descriptor/NamedDescriptor.d.ts.map +1 -0
  44. package/dist/src/descriptor/NamedDescriptor.js +75 -0
  45. package/dist/src/descriptor/assertDescriptorWalletAddress.d.ts +5 -0
  46. package/dist/src/descriptor/assertDescriptorWalletAddress.d.ts.map +1 -0
  47. package/dist/src/descriptor/assertDescriptorWalletAddress.js +66 -0
  48. package/dist/src/descriptor/builder/builder.d.ts +13 -0
  49. package/dist/src/descriptor/builder/builder.d.ts.map +1 -0
  50. package/dist/src/descriptor/builder/builder.js +37 -0
  51. package/dist/src/descriptor/builder/index.d.ts +3 -0
  52. package/dist/src/descriptor/builder/index.d.ts.map +1 -0
  53. package/dist/src/descriptor/builder/index.js +8 -0
  54. package/dist/src/descriptor/builder/parse.d.ts +5 -0
  55. package/dist/src/descriptor/builder/parse.d.ts.map +1 -0
  56. package/dist/src/descriptor/builder/parse.js +149 -0
  57. package/dist/src/descriptor/createWallet/createDescriptorWallet.d.ts +20 -0
  58. package/dist/src/descriptor/createWallet/createDescriptorWallet.d.ts.map +1 -0
  59. package/dist/src/descriptor/createWallet/createDescriptorWallet.js +74 -0
  60. package/dist/src/descriptor/createWallet/createDescriptors.d.ts +12 -0
  61. package/dist/src/descriptor/createWallet/createDescriptors.d.ts.map +1 -0
  62. package/dist/src/descriptor/createWallet/createDescriptors.js +33 -0
  63. package/dist/src/descriptor/createWallet/index.d.ts +3 -0
  64. package/dist/src/descriptor/createWallet/index.d.ts.map +1 -0
  65. package/dist/src/descriptor/createWallet/index.js +19 -0
  66. package/dist/src/descriptor/descriptorWallet.d.ts +19 -0
  67. package/dist/src/descriptor/descriptorWallet.d.ts.map +1 -0
  68. package/dist/src/descriptor/descriptorWallet.js +54 -0
  69. package/dist/src/descriptor/index.d.ts +7 -0
  70. package/dist/src/descriptor/index.d.ts.map +1 -0
  71. package/dist/src/descriptor/index.js +52 -0
  72. package/dist/src/descriptor/validatePolicy.d.ts +23 -0
  73. package/dist/src/descriptor/validatePolicy.d.ts.map +1 -0
  74. package/dist/src/descriptor/validatePolicy.js +91 -0
  75. package/dist/src/index.d.ts +2 -0
  76. package/dist/src/index.d.ts.map +1 -1
  77. package/dist/src/index.js +30 -2
  78. package/dist/src/keychains.d.ts +48 -0
  79. package/dist/src/keychains.d.ts.map +1 -0
  80. package/dist/src/keychains.js +104 -0
  81. package/dist/src/names.d.ts +18 -0
  82. package/dist/src/names.d.ts.map +1 -0
  83. package/dist/src/names.js +188 -0
  84. package/dist/src/offlineVault/OfflineVaultHalfSigned.d.ts +8 -0
  85. package/dist/src/offlineVault/OfflineVaultHalfSigned.d.ts.map +1 -0
  86. package/dist/src/offlineVault/OfflineVaultHalfSigned.js +59 -0
  87. package/dist/src/offlineVault/OfflineVaultUnsigned.d.ts +46 -0
  88. package/dist/src/offlineVault/OfflineVaultUnsigned.d.ts.map +1 -0
  89. package/dist/src/offlineVault/OfflineVaultUnsigned.js +55 -0
  90. package/dist/src/offlineVault/descriptor/index.d.ts +2 -0
  91. package/dist/src/offlineVault/descriptor/index.d.ts.map +1 -0
  92. package/dist/src/offlineVault/descriptor/index.js +18 -0
  93. package/dist/src/offlineVault/descriptor/transaction.d.ts +36 -0
  94. package/dist/src/offlineVault/descriptor/transaction.d.ts.map +1 -0
  95. package/dist/src/offlineVault/descriptor/transaction.js +63 -0
  96. package/dist/src/offlineVault/index.d.ts +3 -0
  97. package/dist/src/offlineVault/index.d.ts.map +1 -0
  98. package/dist/src/offlineVault/index.js +42 -0
  99. package/dist/src/recovery/RecoveryProvider.d.ts +1 -1
  100. package/dist/src/recovery/RecoveryProvider.d.ts.map +1 -1
  101. package/dist/src/recovery/RecoveryProvider.js +2 -4
  102. package/dist/src/recovery/backupKeyRecovery.d.ts +41 -16
  103. package/dist/src/recovery/backupKeyRecovery.d.ts.map +1 -1
  104. package/dist/src/recovery/backupKeyRecovery.js +168 -96
  105. package/dist/src/recovery/baseApi.d.ts +3 -6
  106. package/dist/src/recovery/baseApi.d.ts.map +1 -1
  107. package/dist/src/recovery/baseApi.js +6 -6
  108. package/dist/src/recovery/coingeckoApi.d.ts +0 -3
  109. package/dist/src/recovery/coingeckoApi.d.ts.map +1 -1
  110. package/dist/src/recovery/coingeckoApi.js +1 -4
  111. package/dist/src/recovery/crossChainRecovery.d.ts +12 -3
  112. package/dist/src/recovery/crossChainRecovery.d.ts.map +1 -1
  113. package/dist/src/recovery/crossChainRecovery.js +93 -21
  114. package/dist/src/recovery/index.d.ts +0 -1
  115. package/dist/src/recovery/index.d.ts.map +1 -1
  116. package/dist/src/recovery/index.js +6 -3
  117. package/dist/src/recovery/mempoolApi.d.ts.map +1 -1
  118. package/dist/src/recovery/mempoolApi.js +10 -7
  119. package/dist/src/replayProtection.js +37 -5
  120. package/dist/src/sign.d.ts +29 -8
  121. package/dist/src/sign.d.ts.map +1 -1
  122. package/dist/src/sign.js +114 -15
  123. package/dist/src/transaction/common/verifyPayGoAmount.d.ts +1 -0
  124. package/dist/src/transaction/common/verifyPayGoAmount.d.ts.map +1 -0
  125. package/dist/src/transaction/common/verifyPayGoAmount.js +1 -0
  126. package/dist/src/transaction/descriptor/explainPsbt.d.ts +5 -0
  127. package/dist/src/transaction/descriptor/explainPsbt.d.ts.map +1 -0
  128. package/dist/src/transaction/descriptor/explainPsbt.js +80 -0
  129. package/dist/src/transaction/descriptor/index.d.ts +7 -0
  130. package/dist/src/transaction/descriptor/index.d.ts.map +1 -0
  131. package/dist/src/transaction/descriptor/index.js +14 -0
  132. package/dist/src/transaction/descriptor/parse.d.ts +14 -0
  133. package/dist/src/transaction/descriptor/parse.d.ts.map +1 -0
  134. package/dist/src/transaction/descriptor/parse.js +115 -0
  135. package/dist/src/transaction/descriptor/parseToAmountType.d.ts +13 -0
  136. package/dist/src/transaction/descriptor/parseToAmountType.d.ts.map +1 -0
  137. package/dist/src/transaction/descriptor/parseToAmountType.js +60 -0
  138. package/dist/src/transaction/descriptor/recipient.d.ts +5 -0
  139. package/dist/src/transaction/descriptor/recipient.d.ts.map +1 -0
  140. package/dist/src/transaction/descriptor/recipient.js +3 -0
  141. package/dist/src/transaction/descriptor/signPsbt.d.ts +25 -0
  142. package/dist/src/transaction/descriptor/signPsbt.d.ts.map +1 -0
  143. package/dist/src/transaction/descriptor/signPsbt.js +43 -0
  144. package/dist/src/transaction/descriptor/verifyTransaction.d.ts +33 -0
  145. package/dist/src/transaction/descriptor/verifyTransaction.d.ts.map +1 -0
  146. package/dist/src/transaction/descriptor/verifyTransaction.js +105 -0
  147. package/dist/src/transaction/explainTransaction.d.ts +17 -0
  148. package/dist/src/transaction/explainTransaction.d.ts.map +1 -0
  149. package/dist/src/transaction/explainTransaction.js +67 -0
  150. package/dist/src/transaction/fetchInputs.d.ts +26 -0
  151. package/dist/src/transaction/fetchInputs.d.ts.map +1 -0
  152. package/dist/src/transaction/fetchInputs.js +109 -0
  153. package/dist/src/transaction/fixedScript/explainTransaction.d.ts +30 -0
  154. package/dist/src/transaction/fixedScript/explainTransaction.d.ts.map +1 -0
  155. package/dist/src/transaction/fixedScript/explainTransaction.js +216 -0
  156. package/dist/src/transaction/fixedScript/index.d.ts +6 -0
  157. package/dist/src/transaction/fixedScript/index.d.ts.map +1 -0
  158. package/dist/src/transaction/fixedScript/index.js +13 -0
  159. package/dist/src/transaction/fixedScript/parseOutput.d.ts +26 -0
  160. package/dist/src/transaction/fixedScript/parseOutput.d.ts.map +1 -0
  161. package/dist/src/transaction/fixedScript/parseOutput.js +213 -0
  162. package/dist/src/transaction/fixedScript/parseTransaction.d.ts +7 -0
  163. package/dist/src/transaction/fixedScript/parseTransaction.d.ts.map +1 -0
  164. package/dist/src/transaction/fixedScript/parseTransaction.js +203 -0
  165. package/dist/src/transaction/fixedScript/signTransaction.d.ts +17 -0
  166. package/dist/src/transaction/fixedScript/signTransaction.d.ts.map +1 -0
  167. package/dist/src/transaction/fixedScript/signTransaction.js +138 -0
  168. package/dist/src/transaction/fixedScript/verifyTransaction.d.ts +4 -0
  169. package/dist/src/transaction/fixedScript/verifyTransaction.d.ts.map +1 -0
  170. package/dist/src/transaction/fixedScript/verifyTransaction.js +176 -0
  171. package/dist/src/transaction/index.d.ts +6 -0
  172. package/dist/src/transaction/index.d.ts.map +1 -0
  173. package/dist/src/transaction/index.js +26 -0
  174. package/dist/src/transaction/outputDifference.d.ts +40 -0
  175. package/dist/src/transaction/outputDifference.d.ts.map +1 -0
  176. package/dist/src/transaction/outputDifference.js +47 -0
  177. package/dist/src/transaction/parseTransaction.d.ts +3 -0
  178. package/dist/src/transaction/parseTransaction.d.ts.map +1 -0
  179. package/dist/src/transaction/parseTransaction.js +48 -0
  180. package/dist/src/transaction/recipient.d.ts +29 -0
  181. package/dist/src/transaction/recipient.d.ts.map +1 -0
  182. package/dist/src/transaction/recipient.js +88 -0
  183. package/dist/src/transaction/signTransaction.d.ts +6 -0
  184. package/dist/src/transaction/signTransaction.d.ts.map +1 -0
  185. package/dist/src/transaction/signTransaction.js +102 -0
  186. package/dist/src/transaction/verifyTransaction.d.ts +4 -0
  187. package/dist/src/transaction/verifyTransaction.d.ts.map +1 -0
  188. package/dist/src/transaction/verifyTransaction.js +50 -0
  189. package/dist/src/verifyKey.d.ts +28 -0
  190. package/dist/src/verifyKey.d.ts.map +1 -0
  191. package/dist/src/verifyKey.js +164 -0
  192. package/dist/src/wallet.d.ts +12 -0
  193. package/dist/src/wallet.d.ts.map +1 -0
  194. package/dist/src/wallet.js +3 -0
  195. package/dist/test/core/descriptor/descriptor.utils.d.ts +11 -0
  196. package/dist/test/core/descriptor/descriptor.utils.d.ts.map +1 -0
  197. package/dist/test/core/descriptor/descriptor.utils.js +63 -0
  198. package/dist/test/core/descriptor/psbt/VirtualSize.d.ts +2 -0
  199. package/dist/test/core/descriptor/psbt/VirtualSize.d.ts.map +1 -0
  200. package/dist/test/core/descriptor/psbt/VirtualSize.js +78 -0
  201. package/dist/test/core/descriptor/psbt/assertSatisfiable.d.ts +2 -0
  202. package/dist/test/core/descriptor/psbt/assertSatisfiable.d.ts.map +1 -0
  203. package/dist/test/core/descriptor/psbt/assertSatisfiable.js +56 -0
  204. package/dist/test/core/descriptor/psbt/createPsbt.d.ts +2 -0
  205. package/dist/test/core/descriptor/psbt/createPsbt.d.ts.map +1 -0
  206. package/dist/test/core/descriptor/psbt/createPsbt.js +85 -0
  207. package/dist/test/core/descriptor/psbt/findDescriptors.d.ts +2 -0
  208. package/dist/test/core/descriptor/psbt/findDescriptors.d.ts.map +1 -0
  209. package/dist/test/core/descriptor/psbt/findDescriptors.js +66 -0
  210. package/dist/test/core/descriptor/psbt/mock.utils.d.ts +34 -0
  211. package/dist/test/core/descriptor/psbt/mock.utils.d.ts.map +1 -0
  212. package/dist/test/core/descriptor/psbt/mock.utils.js +87 -0
  213. package/dist/test/core/descriptor/psbt/parse.d.ts +2 -0
  214. package/dist/test/core/descriptor/psbt/parse.d.ts.map +1 -0
  215. package/dist/test/core/descriptor/psbt/parse.js +32 -0
  216. package/dist/test/core/descriptor/psbt/psbt.utils.d.ts +4 -0
  217. package/dist/test/core/descriptor/psbt/psbt.utils.d.ts.map +1 -0
  218. package/dist/test/core/descriptor/psbt/psbt.utils.js +20 -0
  219. package/dist/test/core/fixtures.utils.d.ts +15 -0
  220. package/dist/test/core/fixtures.utils.d.ts.map +1 -0
  221. package/dist/test/core/fixtures.utils.js +114 -0
  222. package/dist/test/core/key.utils.d.ts +16 -0
  223. package/dist/test/core/key.utils.d.ts.map +1 -0
  224. package/dist/test/core/key.utils.js +59 -0
  225. package/dist/test/core/toPlainObject.utils.d.ts +11 -0
  226. package/dist/test/core/toPlainObject.utils.d.ts.map +1 -0
  227. package/dist/test/core/toPlainObject.utils.js +75 -0
  228. package/dist/test/descriptor/NamedDescriptor.d.ts +2 -0
  229. package/dist/test/descriptor/NamedDescriptor.d.ts.map +1 -0
  230. package/dist/test/descriptor/NamedDescriptor.js +19 -0
  231. package/dist/test/descriptor/builder.d.ts +2 -0
  232. package/dist/test/descriptor/builder.d.ts.map +1 -0
  233. package/dist/test/descriptor/builder.js +72 -0
  234. package/dist/test/descriptor/createWallet/createDescriptors.d.ts +2 -0
  235. package/dist/test/descriptor/createWallet/createDescriptors.d.ts.map +1 -0
  236. package/dist/test/descriptor/createWallet/createDescriptors.js +21 -0
  237. package/dist/test/descriptor/descriptorWallet.d.ts +2 -0
  238. package/dist/test/descriptor/descriptorWallet.d.ts.map +1 -0
  239. package/dist/test/descriptor/descriptorWallet.js +28 -0
  240. package/dist/test/offlineVault/halfSigned.d.ts +2 -0
  241. package/dist/test/offlineVault/halfSigned.d.ts.map +1 -0
  242. package/dist/test/offlineVault/halfSigned.js +121 -0
  243. package/dist/test/transaction/descriptor/explainPsbt.d.ts +2 -0
  244. package/dist/test/transaction/descriptor/explainPsbt.d.ts.map +1 -0
  245. package/dist/test/transaction/descriptor/explainPsbt.js +28 -0
  246. package/dist/test/transaction/descriptor/fixtures.utils.d.ts +2 -0
  247. package/dist/test/transaction/descriptor/fixtures.utils.d.ts.map +1 -0
  248. package/dist/test/transaction/descriptor/fixtures.utils.js +12 -0
  249. package/dist/test/transaction/descriptor/outputDifference.d.ts +2 -0
  250. package/dist/test/transaction/descriptor/outputDifference.d.ts.map +1 -0
  251. package/dist/test/transaction/descriptor/outputDifference.js +76 -0
  252. package/dist/test/transaction/descriptor/parse.d.ts +2 -0
  253. package/dist/test/transaction/descriptor/parse.d.ts.map +1 -0
  254. package/dist/test/transaction/descriptor/parse.js +78 -0
  255. package/dist/test/transaction/descriptor/sign.d.ts +2 -0
  256. package/dist/test/transaction/descriptor/sign.d.ts.map +1 -0
  257. package/dist/test/transaction/descriptor/sign.js +33 -0
  258. package/dist/test/transaction/descriptor/validatePolicy.d.ts +2 -0
  259. package/dist/test/transaction/descriptor/validatePolicy.d.ts.map +1 -0
  260. package/dist/test/transaction/descriptor/validatePolicy.js +40 -0
  261. package/dist/tsconfig.tsbuildinfo +1 -7910
  262. package/package.json +16 -11
  263. package/dist/src/parseOutput.d.ts +0 -22
  264. package/dist/src/parseOutput.d.ts.map +0 -1
  265. package/dist/src/parseOutput.js +0 -170
  266. package/dist/src/recovery/smartbitApi.d.ts +0 -11
  267. package/dist/src/recovery/smartbitApi.d.ts.map +0 -1
  268. package/dist/src/recovery/smartbitApi.js +0 -36
package/CHANGELOG.md CHANGED
@@ -3,6 +3,983 @@
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.11.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@9.11.0...@bitgo/abstract-utxo@9.11.1) (2025-01-15)
7
+
8
+ **Note:** Version bump only for package @bitgo/abstract-utxo
9
+
10
+ # [9.11.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@9.10.0...@bitgo/abstract-utxo@9.11.0) (2025-01-09)
11
+
12
+ ### Bug Fixes
13
+
14
+ - **abstract-utxo:** check if external and internal descriptors are different ([10a48c3](https://github.com/BitGo/BitGoJS/commit/10a48c3b90bb985206a3eb808e2f454e1d8e292a))
15
+
16
+ ### Features
17
+
18
+ - **abstract-utxo:** allow signed descriptors in prod policy ([a19606a](https://github.com/BitGo/BitGoJS/commit/a19606aa68e527bb0457e926e2b263d18c7e0f45))
19
+ - add example for createDescriptorWalletWithWalletPassphrase ([384ed92](https://github.com/BitGo/BitGoJS/commit/384ed9221c14eca4235b152d4a848d16d68aaf14))
20
+ - export createNamedDescriptorWithSignature ([8856442](https://github.com/BitGo/BitGoJS/commit/885644217954e1a8d5736d11dff2aa171c1ace11))
21
+
22
+ # [9.10.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@9.9.0...@bitgo/abstract-utxo@9.10.0) (2025-01-03)
23
+
24
+ ### Features
25
+
26
+ - **abstract-utxo:** sign descriptors when creating wallet ([079d9b9](https://github.com/BitGo/BitGoJS/commit/079d9b91281ee05b1140aaf8fbf0758627820bba))
27
+
28
+ # [9.9.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@9.8.0...@bitgo/abstract-utxo@9.9.0) (2024-12-24)
29
+
30
+ ### Features
31
+
32
+ - **abstract-utxo:** add support for 'max' value parse.ts ([e664c26](https://github.com/BitGo/BitGoJS/commit/e664c267a2f35f9dcc5d62cbd3386be5943748e9))
33
+ - **abstract-utxo:** allow 'max' value in ExpectedOutput ([470767a](https://github.com/BitGo/BitGoJS/commit/470767ab3e4df7946d12f354dee12906566bc7d4))
34
+ - use descriptor outputDifference method ([663944a](https://github.com/BitGo/BitGoJS/commit/663944af14072b988d80cc69d85d257438f8846b))
35
+
36
+ # [9.8.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@9.7.0...@bitgo/abstract-utxo@9.8.0) (2024-12-19)
37
+
38
+ ### Bug Fixes
39
+
40
+ - **abstract-utxo:** pass actual wallet to signTransaction ([1024bff](https://github.com/BitGo/BitGoJS/commit/1024bff44bd5387a908703336e83ca7f6e4c9edc))
41
+ - **abstract-utxo:** remove txHex check from postProcessPrebuild ([7e7c047](https://github.com/BitGo/BitGoJS/commit/7e7c04757320f8af2f1235e34b8cea1cf6b8a442))
42
+
43
+ ### Features
44
+
45
+ - **abstract-utxo:** enforce import order lint rule ([c6f0d09](https://github.com/BitGo/BitGoJS/commit/c6f0d093fceefdd7035212bf00fd2c3ac458b5bd))
46
+ - **abstract-utxo:** extract signer keychain earlier ([048c240](https://github.com/BitGo/BitGoJS/commit/048c240138c833bd4782f4c606a37a47d41dc6a5))
47
+ - **abstract-utxo:** implement sign for descriptor wallets ([24eaced](https://github.com/BitGo/BitGoJS/commit/24eacedc9f77c7308ceb06dc06dca6c9742581a0))
48
+
49
+ # [9.7.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@9.5.0...@bitgo/abstract-utxo@9.7.0) (2024-12-17)
50
+
51
+ ### Features
52
+
53
+ - **abstract-utxo:** add getKeySignatures function ([cbbf6e3](https://github.com/BitGo/BitGoJS/commit/cbbf6e34918fd499fbdf9f2325b123238dc0ebee))
54
+ - **abstract-utxo:** implement explainTx for descriptor wallets ([36bca5b](https://github.com/BitGo/BitGoJS/commit/36bca5b230f60b7fd3766079c7adc8b0be66a9ed))
55
+ - **abstract-utxo:** implement parseTransaction for descriptor ([9573556](https://github.com/BitGo/BitGoJS/commit/957355697b233a164fb889ed52bda17805780d93))
56
+ - **abstract-utxo:** implement verifyTransaction ([8261e50](https://github.com/BitGo/BitGoJS/commit/8261e50c4fb20454704f3b544d4d7bc0edb71cad))
57
+ - **abstract-utxo:** permit Wsh2Of3CltvDrop in descriptor validation ([95a393f](https://github.com/BitGo/BitGoJS/commit/95a393faaa44ea6a6018773b06bc916b4ad1420b))
58
+
59
+ # [9.6.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@9.5.0...@bitgo/abstract-utxo@9.6.0) (2024-12-17)
60
+
61
+ ### Features
62
+
63
+ - **abstract-utxo:** add getKeySignatures function ([cbbf6e3](https://github.com/BitGo/BitGoJS/commit/cbbf6e34918fd499fbdf9f2325b123238dc0ebee))
64
+ - **abstract-utxo:** implement explainTx for descriptor wallets ([36bca5b](https://github.com/BitGo/BitGoJS/commit/36bca5b230f60b7fd3766079c7adc8b0be66a9ed))
65
+ - **abstract-utxo:** implement parseTransaction for descriptor ([9573556](https://github.com/BitGo/BitGoJS/commit/957355697b233a164fb889ed52bda17805780d93))
66
+ - **abstract-utxo:** implement verifyTransaction ([8261e50](https://github.com/BitGo/BitGoJS/commit/8261e50c4fb20454704f3b544d4d7bc0edb71cad))
67
+ - **abstract-utxo:** permit Wsh2Of3CltvDrop in descriptor validation ([95a393f](https://github.com/BitGo/BitGoJS/commit/95a393faaa44ea6a6018773b06bc916b4ad1420b))
68
+
69
+ # [9.5.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@9.4.0...@bitgo/abstract-utxo@9.5.0) (2024-12-12)
70
+
71
+ ### Bug Fixes
72
+
73
+ - **abstract-utxo:** fix decodeTransaction for base64 input ([c00ade0](https://github.com/BitGo/BitGoJS/commit/c00ade0e16b7af07f69b4981eae7245ff331549e))
74
+ - **abstract-utxo:** fix mocha config ([b4931d1](https://github.com/BitGo/BitGoJS/commit/b4931d10381e0ca959d256bcf559b0820f7696b7))
75
+ - **abstract-utxo:** remove outputDifference ([caebae1](https://github.com/BitGo/BitGoJS/commit/caebae110e970056483a172fea4fd262808c62bc))
76
+
77
+ ### Features
78
+
79
+ - **abstract-utxo:** add .json files to .prettierignore ([ffbff4e](https://github.com/BitGo/BitGoJS/commit/ffbff4ed40c9c3097fc8d04939548990de4c2101))
80
+ - **abstract-utxo:** add DescriptorBuilder and parser ([e25bc68](https://github.com/BitGo/BitGoJS/commit/e25bc6883626629d6fc244ca8dcb6af7142ca734))
81
+ - **abstract-utxo:** add descriptorWallet explainPsbt ([897d369](https://github.com/BitGo/BitGoJS/commit/897d369cd94c1ad12a3d68ede75f56a88efdd2a2))
82
+ - **abstract-utxo:** add isDescriptorWalletData ([017ba2c](https://github.com/BitGo/BitGoJS/commit/017ba2c1405f7d5ff0a9f81bc4c639b0fb7657b1))
83
+ - **abstract-utxo:** add outputDifference utility ([02f84bc](https://github.com/BitGo/BitGoJS/commit/02f84bcfef19bb36b44367bcf29fc60a4c6188d6))
84
+ - **abstract-utxo:** guard against descriptor wallets ([45dda5a](https://github.com/BitGo/BitGoJS/commit/45dda5abbdcad98494572a22479d0721ea0f5501))
85
+ - **abstract-utxo:** improve isDescriptorWallet family ([b92855e](https://github.com/BitGo/BitGoJS/commit/b92855e4c89840e5b2c9d114cb4181edef217d81))
86
+ - **abstract-utxo:** permit BIP32Interface in descriptor utils ([baa9290](https://github.com/BitGo/BitGoJS/commit/baa92902d9407dd5b9178e3bbf92701629b20cb2))
87
+ - **abstract-utxo:** validate descriptors depending on env ([dcd9793](https://github.com/BitGo/BitGoJS/commit/dcd9793ab3b070ac38334c8b66c484725e21d749))
88
+
89
+ # [9.4.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@9.3.0...@bitgo/abstract-utxo@9.4.0) (2024-12-11)
90
+
91
+ ### Features
92
+
93
+ - **abstract-utxo:** add apply option to toPlainObject ([6eae1ca](https://github.com/BitGo/BitGoJS/commit/6eae1ca0a46f36cef19cbd839abb4b68d972089b))
94
+ - **abstract-utxo:** add package src/core ([6ca55f5](https://github.com/BitGo/BitGoJS/commit/6ca55f5fb0df16e2a38fcd7a9bcd7286bbb68d5d))
95
+ - **abstract-utxo:** enable esModuleInterop ([f99aa90](https://github.com/BitGo/BitGoJS/commit/f99aa90ad656b62eeae8c094d57caf5ae883eb7c))
96
+ - **abstract-utxo:** include test files in tsconfig.json ([c2187fb](https://github.com/BitGo/BitGoJS/commit/c2187fbf1d5ea150cc8a69630e1b819dd2a300e0))
97
+ - **abstract-utxo:** update wasm-miniscript to 2.0.0-beta.2 ([cec5cd7](https://github.com/BitGo/BitGoJS/commit/cec5cd72f5ea1b7eed074a3ef436e21cf7362733))
98
+
99
+ # [9.3.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@9.2.2...@bitgo/abstract-utxo@9.3.0) (2024-12-03)
100
+
101
+ ### Features
102
+
103
+ - **abstract-utxo:** make AbstractUtxoCoin less abstract ([e456e04](https://github.com/BitGo/BitGoJS/commit/e456e04628c773b72e77e06c094e6c56e0d9661d))
104
+
105
+ ## [9.2.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@9.2.1...@bitgo/abstract-utxo@9.2.2) (2024-11-26)
106
+
107
+ **Note:** Version bump only for package @bitgo/abstract-utxo
108
+
109
+ ## [9.2.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@9.2.0...@bitgo/abstract-utxo@9.2.1) (2024-11-21)
110
+
111
+ ### Bug Fixes
112
+
113
+ - validate addresses created matches the requested format ([01006ee](https://github.com/BitGo/BitGoJS/commit/01006ee65a4e036c0268ca96e2c435df8337027b))
114
+
115
+ # [9.2.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@9.1.2...@bitgo/abstract-utxo@9.2.0) (2024-11-19)
116
+
117
+ ### Bug Fixes
118
+
119
+ - **abstract-utxo:** rename isExtendedAddressFormat to isScriptRecipient ([c37b2a5](https://github.com/BitGo/BitGoJS/commit/c37b2a50fec7c4a60706e0cb906b40c2d47990ef))
120
+
121
+ ### Features
122
+
123
+ - **abstract-utxo:** explain and verify tx with op return ([04f8518](https://github.com/BitGo/BitGoJS/commit/04f851884ab245fd25eb9ee2858743263a5e99d9))
124
+ - fix scriptPubKey prefix ([9d9ce34](https://github.com/BitGo/BitGoJS/commit/9d9ce34330583cd65aba082c623024e0d9ab1505)), closes [/github.com/bitcoin/bitcoin/blob/v28.0/src/rpc/blockchain.cpp#L657](https://github.com//github.com/bitcoin/bitcoin/blob/v28.0/src/rpc/blockchain.cpp/issues/L657)
125
+
126
+ ## [9.1.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@9.1.2...@bitgo/abstract-utxo@9.1.3) (2024-11-14)
127
+
128
+ **Note:** Version bump only for package @bitgo/abstract-utxo
129
+
130
+ ## [9.1.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@9.1.1...@bitgo/abstract-utxo@9.1.2) (2024-11-08)
131
+
132
+ **Note:** Version bump only for package @bitgo/abstract-utxo
133
+
134
+ ## [9.1.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@9.1.0...@bitgo/abstract-utxo@9.1.1) (2024-11-07)
135
+
136
+ **Note:** Version bump only for package @bitgo/abstract-utxo
137
+
138
+ # [9.1.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@9.0.3...@bitgo/abstract-utxo@9.1.0) (2024-11-01)
139
+
140
+ ### Features
141
+
142
+ - update public-types ([85f8d0f](https://github.com/BitGo/BitGoJS/commit/85f8d0fcf1c1e8bf85088406b0ff3de62aab180d))
143
+
144
+ ## [9.0.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@9.0.2...@bitgo/abstract-utxo@9.0.3) (2024-10-22)
145
+
146
+ ### Bug Fixes
147
+
148
+ - **abstract-utxo:** fix isValidAddress by generating all addr formats ([5be7bfc](https://github.com/BitGo/BitGoJS/commit/5be7bfcfebacadd1b6eed85ca3ed2c134bfff829))
149
+ - **abstract-utxo:** use param in isValidAddress ([ec9165a](https://github.com/BitGo/BitGoJS/commit/ec9165a9bf32eb09ecf97942839e40c3133e7256))
150
+
151
+ ## [9.0.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@9.0.1...@bitgo/abstract-utxo@9.0.2) (2024-10-15)
152
+
153
+ **Note:** Version bump only for package @bitgo/abstract-utxo
154
+
155
+ ## [9.0.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@9.0.0...@bitgo/abstract-utxo@9.0.1) (2024-10-08)
156
+
157
+ **Note:** Version bump only for package @bitgo/abstract-utxo
158
+
159
+ # [9.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@8.14.4...@bitgo/abstract-utxo@9.0.0) (2024-10-04)
160
+
161
+ ### chore
162
+
163
+ - **utxo-lib:** remove unnecessary properties from WalletUnspent ([159f667](https://github.com/BitGo/BitGoJS/commit/159f66715cf8aa0f485d4df601556b0564cc6cfa))
164
+
165
+ ### Features
166
+
167
+ - add btc testnet4 to sdk ([8edfa40](https://github.com/BitGo/BitGoJS/commit/8edfa40e24fa5061f104e7e59a8e55c2dd27a0b8))
168
+
169
+ ### BREAKING CHANGES
170
+
171
+ - **utxo-lib:** removes fields from WalletUnspent type
172
+
173
+ Issue: BTC-1351
174
+
175
+ ## [8.14.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@8.14.3...@bitgo/abstract-utxo@8.14.4) (2024-09-24)
176
+
177
+ ### Bug Fixes
178
+
179
+ - **abstract-utxo:** address verification ([7d67509](https://github.com/BitGo/BitGoJS/commit/7d67509cbdbf2595d3298ea4609d6b2ed6efcada))
180
+
181
+ ## [8.14.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@8.14.2...@bitgo/abstract-utxo@8.14.3) (2024-09-19)
182
+
183
+ **Note:** Version bump only for package @bitgo/abstract-utxo
184
+
185
+ ## [8.14.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@8.14.1...@bitgo/abstract-utxo@8.14.2) (2024-09-16)
186
+
187
+ **Note:** Version bump only for package @bitgo/abstract-utxo
188
+
189
+ ## [8.14.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@8.14.0...@bitgo/abstract-utxo@8.14.1) (2024-09-10)
190
+
191
+ **Note:** Version bump only for package @bitgo/abstract-utxo
192
+
193
+ # [8.14.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@8.13.2...@bitgo/abstract-utxo@8.14.0) (2024-09-03)
194
+
195
+ ### Features
196
+
197
+ - **abstract-utxo:** add address creation for descriptor wallets ([a5b3a71](https://github.com/BitGo/BitGoJS/commit/a5b3a71132f588c61033e44cd7a5ab0be54f0722))
198
+
199
+ ## [8.13.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@8.13.1...@bitgo/abstract-utxo@8.13.2) (2024-08-29)
200
+
201
+ **Note:** Version bump only for package @bitgo/abstract-utxo
202
+
203
+ ## [8.13.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@8.13.0...@bitgo/abstract-utxo@8.13.1) (2024-08-27)
204
+
205
+ ### Bug Fixes
206
+
207
+ - **abstract-utxo:** do not throw error when cannot verify psbt ccw ([0fadd86](https://github.com/BitGo/BitGoJS/commit/0fadd86ad4e7a6b6a79f5c919f8bbc36f9fa23a5))
208
+ - **abstract-utxo:** fix change wallet verification ([1d27e87](https://github.com/BitGo/BitGoJS/commit/1d27e87bd053733b7970ed749de12fda506826a3))
209
+
210
+ # [8.13.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@8.12.0...@bitgo/abstract-utxo@8.13.0) (2024-08-20)
211
+
212
+ ### Features
213
+
214
+ - default to psbt format for btc hot wallets ([0e12c94](https://github.com/BitGo/BitGoJS/commit/0e12c9466c89281fbeb1035e48d7abea96ccdebe))
215
+
216
+ ## [8.12.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@8.12.0...@bitgo/abstract-utxo@8.12.1) (2024-08-13)
217
+
218
+ **Note:** Version bump only for package @bitgo/abstract-utxo
219
+
220
+ # [8.12.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@8.11.2...@bitgo/abstract-utxo@8.12.0) (2024-08-07)
221
+
222
+ ### Features
223
+
224
+ - add bitgo signet for btc ([a1912b9](https://github.com/BitGo/BitGoJS/commit/a1912b9478211568b29b2ea8986dc62db435f6ab))
225
+
226
+ ## [8.11.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@8.11.1...@bitgo/abstract-utxo@8.11.2) (2024-07-30)
227
+
228
+ **Note:** Version bump only for package @bitgo/abstract-utxo
229
+
230
+ ## [8.11.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@8.11.0...@bitgo/abstract-utxo@8.11.1) (2024-07-24)
231
+
232
+ **Note:** Version bump only for package @bitgo/abstract-utxo
233
+
234
+ # [8.11.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@8.10.0...@bitgo/abstract-utxo@8.11.0) (2024-07-16)
235
+
236
+ ### Bug Fixes
237
+
238
+ - disable PSBT for zcash ([f7c79ca](https://github.com/BitGo/BitGoJS/commit/f7c79ca7491cf34746b78b8aa4bc74e4305c7dfd))
239
+
240
+ ### Features
241
+
242
+ - put `changeAddress` in `expectedOutputs` if ([70f3cbf](https://github.com/BitGo/BitGoJS/commit/70f3cbfbdc03e61ecaf1e329beeb7f70170dc683))
243
+
244
+ # [8.10.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@8.9.0...@bitgo/abstract-utxo@8.10.0) (2024-07-04)
245
+
246
+ ### Bug Fixes
247
+
248
+ - make public signet tests work with bitgo module ([fe32ae3](https://github.com/BitGo/BitGoJS/commit/fe32ae31241176762e608f1b43b0ab54976efe1c))
249
+
250
+ ### Features
251
+
252
+ - **abstract-utxo:** allow non-segwit signing by looking at txHex ([09e355a](https://github.com/BitGo/BitGoJS/commit/09e355a73c28dd807893c0e027b4c723a42d003d))
253
+
254
+ # [8.9.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@8.8.1...@bitgo/abstract-utxo@8.9.0) (2024-07-02)
255
+
256
+ ### Features
257
+
258
+ - add `sweep` function for v1 wallets ([a78e2cf](https://github.com/BitGo/BitGoJS/commit/a78e2cfaec23d3a1d129b757e0bcba76ce12addf))
259
+ - export `BitGoV1Unspent` interface from `abstract-utxo` ([c6d9e63](https://github.com/BitGo/BitGoJS/commit/c6d9e63dde2404f6250a138a049dadc7a408328a))
260
+
261
+ ## [8.8.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@8.8.0...@bitgo/abstract-utxo@8.8.1) (2024-06-27)
262
+
263
+ ### Bug Fixes
264
+
265
+ - find change address instead of using index ([81aad0c](https://github.com/BitGo/BitGoJS/commit/81aad0c7abc7e0da8f1d623f3a780dba3a67a708))
266
+
267
+ # [8.8.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@8.7.2...@bitgo/abstract-utxo@8.8.0) (2024-06-26)
268
+
269
+ ### Bug Fixes
270
+
271
+ - **abstract-utxo:** remove unused coinSpecific in isWalletAddress ([b3e7e38](https://github.com/BitGo/BitGoJS/commit/b3e7e385ea6dc421937db875fe3c2a305285a01a))
272
+
273
+ ### Features
274
+
275
+ - **abstract-utxo:** allow non-standard signing on bulk tx ([214342f](https://github.com/BitGo/BitGoJS/commit/214342f8a16848a7827d98ee239d72db742f84bc))
276
+ - **abstract-utxo:** do not query wp for output addresses if psbt ([500baf6](https://github.com/BitGo/BitGoJS/commit/500baf6001cbece5caa0003139f7db654fe6f742))
277
+
278
+ ## [8.7.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@8.7.0...@bitgo/abstract-utxo@8.7.2) (2024-06-21)
279
+
280
+ **Note:** Version bump only for package @bitgo/abstract-utxo
281
+
282
+ ## [8.7.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@8.7.0...@bitgo/abstract-utxo@8.7.1) (2024-06-20)
283
+
284
+ **Note:** Version bump only for package @bitgo/abstract-utxo
285
+
286
+ # [8.7.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@8.6.1...@bitgo/abstract-utxo@8.7.0) (2024-06-14)
287
+
288
+ ### Bug Fixes
289
+
290
+ - correctly parse the response of `/fees/recommended` from Mempool ([e7455a8](https://github.com/BitGo/BitGoJS/commit/e7455a8057a6ece91b73fe373ecd1742282a8c28))
291
+
292
+ ### Features
293
+
294
+ - add `recover` function for v1 btc wallets ([16e3b25](https://github.com/BitGo/BitGoJS/commit/16e3b2550baab6d15795ee8314935ee3f13c5af1))
295
+
296
+ ## [8.6.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@8.6.0...@bitgo/abstract-utxo@8.6.1) (2024-06-11)
297
+
298
+ **Note:** Version bump only for package @bitgo/abstract-utxo
299
+
300
+ # [8.6.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@8.5.0...@bitgo/abstract-utxo@8.6.0) (2024-06-05)
301
+
302
+ ### Features
303
+
304
+ - **utxo-lib:** add signPsbtFromOVC ([59db80f](https://github.com/BitGo/BitGoJS/commit/59db80fcd2d07d145049b6f2dfbdccb6c1931606))
305
+
306
+ ### Reverts
307
+
308
+ - Revert "feat: use psbt format for hot and custodial wallets" ([4d027c8](https://github.com/BitGo/BitGoJS/commit/4d027c8c218fca8228544f22f1b413e2ba507463))
309
+
310
+ # [8.5.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@8.4.0...@bitgo/abstract-utxo@8.5.0) (2024-05-31)
311
+
312
+ ### Features
313
+
314
+ - use cashaddr address format for ecash recovery ([072f11f](https://github.com/BitGo/BitGoJS/commit/072f11f9e2b8b10c91d9ddf4e0503dc3a1e13563))
315
+ - use psbt format for hot and custodial wallets ([7b66a58](https://github.com/BitGo/BitGoJS/commit/7b66a584ce304093e03a372dafad9152ef875e7b))
316
+
317
+ # [8.4.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@8.3.1...@bitgo/abstract-utxo@8.4.0) (2024-05-28)
318
+
319
+ ### Features
320
+
321
+ - add p2tr as the last option ([673c7d8](https://github.com/BitGo/BitGoJS/commit/673c7d8444be8147ca2b3803e641ab35890e6521))
322
+ - remove p2tr from changeAddressType list ([561a8bd](https://github.com/BitGo/BitGoJS/commit/561a8bdd4f785a4e8ef483e0271a40a4a5c192d9))
323
+
324
+ ## [8.3.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@8.3.0...@bitgo/abstract-utxo@8.3.1) (2024-05-22)
325
+
326
+ **Note:** Version bump only for package @bitgo/abstract-utxo
327
+
328
+ # [8.3.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@8.2.1...@bitgo/abstract-utxo@8.3.0) (2024-05-17)
329
+
330
+ ### Features
331
+
332
+ - remove conditional p2trMusig2 check ([9683f33](https://github.com/BitGo/BitGoJS/commit/9683f3325fd454a804a60894c618ee0212acc6b2))
333
+ - send changeAddressType preferences array ([bd18c9e](https://github.com/BitGo/BitGoJS/commit/bd18c9e5e897655036676db49070858e11b6e028))
334
+
335
+ ## [8.2.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@8.2.0...@bitgo/abstract-utxo@8.2.1) (2024-05-13)
336
+
337
+ **Note:** Version bump only for package @bitgo/abstract-utxo
338
+
339
+ # [8.2.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@8.1.3...@bitgo/abstract-utxo@8.2.0) (2024-05-08)
340
+
341
+ ### Features
342
+
343
+ - use canonical address when checking if owned by wallet ([82a13bd](https://github.com/BitGo/BitGoJS/commit/82a13bdaed9cf4f7ae5a1aa87e6ff7d92bf989eb))
344
+
345
+ ### Reverts
346
+
347
+ - Revert "Revert "feat(abstract-utxo): support trustless change outputs from explaintx"" ([03896f6](https://github.com/BitGo/BitGoJS/commit/03896f65ecaaa85f6a5a9be9d45012d848329938))
348
+
349
+ ## [8.1.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@8.1.2...@bitgo/abstract-utxo@8.1.3) (2024-05-01)
350
+
351
+ ### Reverts
352
+
353
+ - Revert "feat(abstract-utxo): support trustless change outputs from explaintx" ([23442a9](https://github.com/BitGo/BitGoJS/commit/23442a9873ae432c1d5efee8a3b3d4c0c3a772e2))
354
+
355
+ ## [8.1.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@8.1.1...@bitgo/abstract-utxo@8.1.2) (2024-04-25)
356
+
357
+ **Note:** Version bump only for package @bitgo/abstract-utxo
358
+
359
+ ## [8.1.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@8.1.0...@bitgo/abstract-utxo@8.1.1) (2024-04-24)
360
+
361
+ ### Bug Fixes
362
+
363
+ - superagent upgrade to 9.0 ([6e9aa43](https://github.com/BitGo/BitGoJS/commit/6e9aa43a6d2999298abd450ceb168d664b8b926d))
364
+
365
+ # [8.1.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@8.0.6...@bitgo/abstract-utxo@8.1.0) (2024-04-22)
366
+
367
+ ### Features
368
+
369
+ - **abstract-utxo:** support trustless change outputs from explaintx ([445ed53](https://github.com/BitGo/BitGoJS/commit/445ed5357c24357b5f9137669551e146bf2f2e60))
370
+ - only query unspents for wallet owned addresses ([5beaff5](https://github.com/BitGo/BitGoJS/commit/5beaff54e8fc11b642c13e3ac17ffd6b6ff4752c))
371
+
372
+ ## [8.0.6](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@8.0.5...@bitgo/abstract-utxo@8.0.6) (2024-04-17)
373
+
374
+ **Note:** Version bump only for package @bitgo/abstract-utxo
375
+
376
+ ## [8.0.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@8.0.4...@bitgo/abstract-utxo@8.0.5) (2024-04-12)
377
+
378
+ **Note:** Version bump only for package @bitgo/abstract-utxo
379
+
380
+ ## [8.0.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@8.0.3...@bitgo/abstract-utxo@8.0.4) (2024-04-10)
381
+
382
+ **Note:** Version bump only for package @bitgo/abstract-utxo
383
+
384
+ ## [8.0.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@8.0.2...@bitgo/abstract-utxo@8.0.3) (2024-04-09)
385
+
386
+ **Note:** Version bump only for package @bitgo/abstract-utxo
387
+
388
+ ## [8.0.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@8.0.1...@bitgo/abstract-utxo@8.0.2) (2024-04-08)
389
+
390
+ **Note:** Version bump only for package @bitgo/abstract-utxo
391
+
392
+ ## [8.0.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@8.0.0...@bitgo/abstract-utxo@8.0.1) (2024-04-05)
393
+
394
+ **Note:** Version bump only for package @bitgo/abstract-utxo
395
+
396
+ # [8.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@7.0.4...@bitgo/abstract-utxo@8.0.0) (2024-03-28)
397
+
398
+ ### Features
399
+
400
+ - **root:** deprecate node 16 ([d3ec624](https://github.com/BitGo/BitGoJS/commit/d3ec6240bddae2a4ab7fa80c4a16efecc36210bd))
401
+
402
+ ### BREAKING CHANGES
403
+
404
+ - **root:** Node 16 is no longer supported in bitgojs.
405
+ TICKET: WP-1100
406
+
407
+ ## [7.0.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@7.0.3...@bitgo/abstract-utxo@7.0.4) (2024-03-19)
408
+
409
+ **Note:** Version bump only for package @bitgo/abstract-utxo
410
+
411
+ ## [7.0.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@7.0.2...@bitgo/abstract-utxo@7.0.3) (2024-03-11)
412
+
413
+ **Note:** Version bump only for package @bitgo/abstract-utxo
414
+
415
+ ## [7.0.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@7.0.1...@bitgo/abstract-utxo@7.0.2) (2024-02-28)
416
+
417
+ **Note:** Version bump only for package @bitgo/abstract-utxo
418
+
419
+ ## [7.0.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@7.0.0...@bitgo/abstract-utxo@7.0.1) (2024-02-22)
420
+
421
+ **Note:** Version bump only for package @bitgo/abstract-utxo
422
+
423
+ # [7.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@3.5.0...@bitgo/abstract-utxo@7.0.0) (2024-02-19)
424
+
425
+ ### Bug Fixes
426
+
427
+ - **abstract-utxo:** add changeAddress to change params ([3df744d](https://github.com/BitGo/BitGoJS/commit/3df744dbfe8de6ff846aec13669c38454dd5139f))
428
+ - **abstract-utxo:** add changeAddressType to change params ([b05b278](https://github.com/BitGo/BitGoJS/commit/b05b278a7148b5a5bfb61b17f60b81c7477b6b31))
429
+ - **abstract-utxo:** assert locking script before signing ([92eedd9](https://github.com/BitGo/BitGoJS/commit/92eedd93b3e9696842c2cf2b51868ae4a6218a28))
430
+ - **abstract-utxo:** do not override changeAddressType or txFormat ([9494255](https://github.com/BitGo/BitGoJS/commit/94942559b0be8f9789c7afbb3740924aaab76ab3))
431
+ - **abstract-utxo:** revert to addressType ([5e45e62](https://github.com/BitGo/BitGoJS/commit/5e45e62d512c2794a517030027b1f9f66b20e048))
432
+ - **abstract-utxo:** upper case address should return false ([f0b6c46](https://github.com/BitGo/BitGoJS/commit/f0b6c467daaa0e43bb2923993fb238c7a4ce6f59))
433
+
434
+ ### Features
435
+
436
+ - **abstract-utxo:** change api used for bitcoin recovery from blockstream to blockchair ([6da5791](https://github.com/BitGo/BitGoJS/commit/6da5791bce2fc73d5d77c1eee6cb581b60da2079))
437
+ - **abstract-utxo:** enable segwit override when flagged ([bdf723c](https://github.com/BitGo/BitGoJS/commit/bdf723ce51d245e97b217941a21b02084b2473cf))
438
+ - **abstract-utxo:** support webauthn decryption in abstract utxo fn ([e9dd17a](https://github.com/BitGo/BitGoJS/commit/e9dd17a87211732a5287144df5a3fb766e6c1142))
439
+ - **abstract-utxo:** this enables psbt unless explicitly disabled for ([9a1722e](https://github.com/BitGo/BitGoJS/commit/9a1722e21e2a2fb3068d2940f439f72a6cbcb421))
440
+ - add walletFlags property, helper methods ([f0fd760](https://github.com/BitGo/BitGoJS/commit/f0fd760122334d86b0d4239bc3b23e0983a1d524))
441
+ - allow replacement transaction verification after prebuild ([c81fba8](https://github.com/BitGo/BitGoJS/commit/c81fba89a90f4e74289fd1580914d63a7d86da35))
442
+ - **bitgo:** calculate fees explicitly for psbts ([7a7e288](https://github.com/BitGo/BitGoJS/commit/7a7e288c63718a112abf633b842e7538d1e25693))
443
+ - handle musigKp flag in wallet ([b79b77c](https://github.com/BitGo/BitGoJS/commit/b79b77c4e0d64d85951724946206a5ded4fdd7b2))
444
+ - pass down `includeRbf: true` while fetching tx to be replaced ([4a5d9f0](https://github.com/BitGo/BitGoJS/commit/4a5d9f02db9a45a179bcaa3369493e2c57ecdf40))
445
+ - rectify the external/internal recipients handling for RBF ([6f0be13](https://github.com/BitGo/BitGoJS/commit/6f0be13918ac7afbeddb222819a243a44a46fd5b))
446
+ - rename the `findMissingOutputs` func to `outputDifference` ([d4c7eb4](https://github.com/BitGo/BitGoJS/commit/d4c7eb4baeb216e8165fd2cb452de9f4c6cb613e))
447
+ - **unspents:** default unspents dimensions to recovery path ([361eb62](https://github.com/BitGo/BitGoJS/commit/361eb62641aac19c876576a65da7f6777dc532a0))
448
+ - use psbt for prebuild when wallet is distributedCustody ([10f5e1a](https://github.com/BitGo/BitGoJS/commit/10f5e1ab37d2bea6acd93f94defbe786e4a027b9))
449
+
450
+ ### BREAKING CHANGES
451
+
452
+ - renames the `findMissingOutputs` to `outputDifference`
453
+ in `AbstractUtxoCoin` class
454
+
455
+ BTC-820
456
+
457
+ # [6.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@3.5.0...@bitgo/abstract-utxo@6.0.0) (2024-01-30)
458
+
459
+ ### Bug Fixes
460
+
461
+ - **abstract-utxo:** add changeAddress to change params ([3df744d](https://github.com/BitGo/BitGoJS/commit/3df744dbfe8de6ff846aec13669c38454dd5139f))
462
+ - **abstract-utxo:** add changeAddressType to change params ([b05b278](https://github.com/BitGo/BitGoJS/commit/b05b278a7148b5a5bfb61b17f60b81c7477b6b31))
463
+ - **abstract-utxo:** assert locking script before signing ([92eedd9](https://github.com/BitGo/BitGoJS/commit/92eedd93b3e9696842c2cf2b51868ae4a6218a28))
464
+ - **abstract-utxo:** do not override changeAddressType or txFormat ([9494255](https://github.com/BitGo/BitGoJS/commit/94942559b0be8f9789c7afbb3740924aaab76ab3))
465
+ - **abstract-utxo:** revert to addressType ([5e45e62](https://github.com/BitGo/BitGoJS/commit/5e45e62d512c2794a517030027b1f9f66b20e048))
466
+ - **abstract-utxo:** upper case address should return false ([f0b6c46](https://github.com/BitGo/BitGoJS/commit/f0b6c467daaa0e43bb2923993fb238c7a4ce6f59))
467
+
468
+ ### Features
469
+
470
+ - **abstract-utxo:** change api used for bitcoin recovery from blockstream to blockchair ([6da5791](https://github.com/BitGo/BitGoJS/commit/6da5791bce2fc73d5d77c1eee6cb581b60da2079))
471
+ - **abstract-utxo:** enable segwit override when flagged ([bdf723c](https://github.com/BitGo/BitGoJS/commit/bdf723ce51d245e97b217941a21b02084b2473cf))
472
+ - **abstract-utxo:** support webauthn decryption in abstract utxo fn ([e9dd17a](https://github.com/BitGo/BitGoJS/commit/e9dd17a87211732a5287144df5a3fb766e6c1142))
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
+ - allow replacement transaction verification after prebuild ([c81fba8](https://github.com/BitGo/BitGoJS/commit/c81fba89a90f4e74289fd1580914d63a7d86da35))
476
+ - **bitgo:** calculate fees explicitly for psbts ([7a7e288](https://github.com/BitGo/BitGoJS/commit/7a7e288c63718a112abf633b842e7538d1e25693))
477
+ - handle musigKp flag in wallet ([b79b77c](https://github.com/BitGo/BitGoJS/commit/b79b77c4e0d64d85951724946206a5ded4fdd7b2))
478
+ - rename the `findMissingOutputs` func to `outputDifference` ([d4c7eb4](https://github.com/BitGo/BitGoJS/commit/d4c7eb4baeb216e8165fd2cb452de9f4c6cb613e))
479
+ - **unspents:** default unspents dimensions to recovery path ([361eb62](https://github.com/BitGo/BitGoJS/commit/361eb62641aac19c876576a65da7f6777dc532a0))
480
+ - use psbt for prebuild when wallet is distributedCustody ([10f5e1a](https://github.com/BitGo/BitGoJS/commit/10f5e1ab37d2bea6acd93f94defbe786e4a027b9))
481
+
482
+ ### BREAKING CHANGES
483
+
484
+ - renames the `findMissingOutputs` to `outputDifference`
485
+ in `AbstractUtxoCoin` class
486
+
487
+ BTC-820
488
+
489
+ # [5.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@3.5.0...@bitgo/abstract-utxo@5.0.0) (2024-01-26)
490
+
491
+ ### Bug Fixes
492
+
493
+ - **abstract-utxo:** add changeAddress to change params ([3df744d](https://github.com/BitGo/BitGoJS/commit/3df744dbfe8de6ff846aec13669c38454dd5139f))
494
+ - **abstract-utxo:** add changeAddressType to change params ([b05b278](https://github.com/BitGo/BitGoJS/commit/b05b278a7148b5a5bfb61b17f60b81c7477b6b31))
495
+ - **abstract-utxo:** assert locking script before signing ([92eedd9](https://github.com/BitGo/BitGoJS/commit/92eedd93b3e9696842c2cf2b51868ae4a6218a28))
496
+ - **abstract-utxo:** do not override changeAddressType or txFormat ([9494255](https://github.com/BitGo/BitGoJS/commit/94942559b0be8f9789c7afbb3740924aaab76ab3))
497
+ - **abstract-utxo:** revert to addressType ([5e45e62](https://github.com/BitGo/BitGoJS/commit/5e45e62d512c2794a517030027b1f9f66b20e048))
498
+ - **abstract-utxo:** upper case address should return false ([f0b6c46](https://github.com/BitGo/BitGoJS/commit/f0b6c467daaa0e43bb2923993fb238c7a4ce6f59))
499
+
500
+ ### Features
501
+
502
+ - **abstract-utxo:** change api used for bitcoin recovery from blockstream to blockchair ([6da5791](https://github.com/BitGo/BitGoJS/commit/6da5791bce2fc73d5d77c1eee6cb581b60da2079))
503
+ - **abstract-utxo:** enable segwit override when flagged ([bdf723c](https://github.com/BitGo/BitGoJS/commit/bdf723ce51d245e97b217941a21b02084b2473cf))
504
+ - **abstract-utxo:** support webauthn decryption in abstract utxo fn ([e9dd17a](https://github.com/BitGo/BitGoJS/commit/e9dd17a87211732a5287144df5a3fb766e6c1142))
505
+ - **abstract-utxo:** this enables psbt unless explicitly disabled for ([9a1722e](https://github.com/BitGo/BitGoJS/commit/9a1722e21e2a2fb3068d2940f439f72a6cbcb421))
506
+ - add walletFlags property, helper methods ([f0fd760](https://github.com/BitGo/BitGoJS/commit/f0fd760122334d86b0d4239bc3b23e0983a1d524))
507
+ - allow replacement transaction verification after prebuild ([c81fba8](https://github.com/BitGo/BitGoJS/commit/c81fba89a90f4e74289fd1580914d63a7d86da35))
508
+ - **bitgo:** calculate fees explicitly for psbts ([7a7e288](https://github.com/BitGo/BitGoJS/commit/7a7e288c63718a112abf633b842e7538d1e25693))
509
+ - handle musigKp flag in wallet ([b79b77c](https://github.com/BitGo/BitGoJS/commit/b79b77c4e0d64d85951724946206a5ded4fdd7b2))
510
+ - rename the `findMissingOutputs` func to `outputDifference` ([d4c7eb4](https://github.com/BitGo/BitGoJS/commit/d4c7eb4baeb216e8165fd2cb452de9f4c6cb613e))
511
+ - **unspents:** default unspents dimensions to recovery path ([361eb62](https://github.com/BitGo/BitGoJS/commit/361eb62641aac19c876576a65da7f6777dc532a0))
512
+ - use psbt for prebuild when wallet is distributedCustody ([10f5e1a](https://github.com/BitGo/BitGoJS/commit/10f5e1ab37d2bea6acd93f94defbe786e4a027b9))
513
+
514
+ ### BREAKING CHANGES
515
+
516
+ - renames the `findMissingOutputs` to `outputDifference`
517
+ in `AbstractUtxoCoin` class
518
+
519
+ BTC-820
520
+
521
+ # [4.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@3.5.0...@bitgo/abstract-utxo@4.0.0) (2024-01-26)
522
+
523
+ ### Bug Fixes
524
+
525
+ - **abstract-utxo:** add changeAddress to change params ([3df744d](https://github.com/BitGo/BitGoJS/commit/3df744dbfe8de6ff846aec13669c38454dd5139f))
526
+ - **abstract-utxo:** add changeAddressType to change params ([b05b278](https://github.com/BitGo/BitGoJS/commit/b05b278a7148b5a5bfb61b17f60b81c7477b6b31))
527
+ - **abstract-utxo:** assert locking script before signing ([92eedd9](https://github.com/BitGo/BitGoJS/commit/92eedd93b3e9696842c2cf2b51868ae4a6218a28))
528
+ - **abstract-utxo:** do not override changeAddressType or txFormat ([9494255](https://github.com/BitGo/BitGoJS/commit/94942559b0be8f9789c7afbb3740924aaab76ab3))
529
+ - **abstract-utxo:** revert to addressType ([5e45e62](https://github.com/BitGo/BitGoJS/commit/5e45e62d512c2794a517030027b1f9f66b20e048))
530
+ - **abstract-utxo:** upper case address should return false ([f0b6c46](https://github.com/BitGo/BitGoJS/commit/f0b6c467daaa0e43bb2923993fb238c7a4ce6f59))
531
+
532
+ ### Features
533
+
534
+ - **abstract-utxo:** change api used for bitcoin recovery from blockstream to blockchair ([6da5791](https://github.com/BitGo/BitGoJS/commit/6da5791bce2fc73d5d77c1eee6cb581b60da2079))
535
+ - **abstract-utxo:** enable segwit override when flagged ([bdf723c](https://github.com/BitGo/BitGoJS/commit/bdf723ce51d245e97b217941a21b02084b2473cf))
536
+ - **abstract-utxo:** support webauthn decryption in abstract utxo fn ([e9dd17a](https://github.com/BitGo/BitGoJS/commit/e9dd17a87211732a5287144df5a3fb766e6c1142))
537
+ - **abstract-utxo:** this enables psbt unless explicitly disabled for ([9a1722e](https://github.com/BitGo/BitGoJS/commit/9a1722e21e2a2fb3068d2940f439f72a6cbcb421))
538
+ - add walletFlags property, helper methods ([f0fd760](https://github.com/BitGo/BitGoJS/commit/f0fd760122334d86b0d4239bc3b23e0983a1d524))
539
+ - allow replacement transaction verification after prebuild ([c81fba8](https://github.com/BitGo/BitGoJS/commit/c81fba89a90f4e74289fd1580914d63a7d86da35))
540
+ - **bitgo:** calculate fees explicitly for psbts ([7a7e288](https://github.com/BitGo/BitGoJS/commit/7a7e288c63718a112abf633b842e7538d1e25693))
541
+ - handle musigKp flag in wallet ([b79b77c](https://github.com/BitGo/BitGoJS/commit/b79b77c4e0d64d85951724946206a5ded4fdd7b2))
542
+ - rename the `findMissingOutputs` func to `outputDifference` ([d4c7eb4](https://github.com/BitGo/BitGoJS/commit/d4c7eb4baeb216e8165fd2cb452de9f4c6cb613e))
543
+ - **unspents:** default unspents dimensions to recovery path ([361eb62](https://github.com/BitGo/BitGoJS/commit/361eb62641aac19c876576a65da7f6777dc532a0))
544
+ - use psbt for prebuild when wallet is distributedCustody ([10f5e1a](https://github.com/BitGo/BitGoJS/commit/10f5e1ab37d2bea6acd93f94defbe786e4a027b9))
545
+
546
+ ### BREAKING CHANGES
547
+
548
+ - renames the `findMissingOutputs` to `outputDifference`
549
+ in `AbstractUtxoCoin` class
550
+
551
+ BTC-820
552
+
553
+ # [3.32.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@3.5.0...@bitgo/abstract-utxo@3.32.0) (2024-01-25)
554
+
555
+ ### Bug Fixes
556
+
557
+ - **abstract-utxo:** add changeAddress to change params ([3df744d](https://github.com/BitGo/BitGoJS/commit/3df744dbfe8de6ff846aec13669c38454dd5139f))
558
+ - **abstract-utxo:** add changeAddressType to change params ([b05b278](https://github.com/BitGo/BitGoJS/commit/b05b278a7148b5a5bfb61b17f60b81c7477b6b31))
559
+ - **abstract-utxo:** do not override changeAddressType or txFormat ([9494255](https://github.com/BitGo/BitGoJS/commit/94942559b0be8f9789c7afbb3740924aaab76ab3))
560
+ - **abstract-utxo:** revert to addressType ([5e45e62](https://github.com/BitGo/BitGoJS/commit/5e45e62d512c2794a517030027b1f9f66b20e048))
561
+ - **abstract-utxo:** upper case address should return false ([f0b6c46](https://github.com/BitGo/BitGoJS/commit/f0b6c467daaa0e43bb2923993fb238c7a4ce6f59))
562
+
563
+ ### Features
564
+
565
+ - **abstract-utxo:** change api used for bitcoin recovery from blockstream to blockchair ([6da5791](https://github.com/BitGo/BitGoJS/commit/6da5791bce2fc73d5d77c1eee6cb581b60da2079))
566
+ - **abstract-utxo:** enable segwit override when flagged ([bdf723c](https://github.com/BitGo/BitGoJS/commit/bdf723ce51d245e97b217941a21b02084b2473cf))
567
+ - **abstract-utxo:** support webauthn decryption in abstract utxo fn ([e9dd17a](https://github.com/BitGo/BitGoJS/commit/e9dd17a87211732a5287144df5a3fb766e6c1142))
568
+ - **abstract-utxo:** this enables psbt unless explicitly disabled for ([9a1722e](https://github.com/BitGo/BitGoJS/commit/9a1722e21e2a2fb3068d2940f439f72a6cbcb421))
569
+ - add walletFlags property, helper methods ([f0fd760](https://github.com/BitGo/BitGoJS/commit/f0fd760122334d86b0d4239bc3b23e0983a1d524))
570
+ - **bitgo:** calculate fees explicitly for psbts ([7a7e288](https://github.com/BitGo/BitGoJS/commit/7a7e288c63718a112abf633b842e7538d1e25693))
571
+ - handle musigKp flag in wallet ([b79b77c](https://github.com/BitGo/BitGoJS/commit/b79b77c4e0d64d85951724946206a5ded4fdd7b2))
572
+ - **unspents:** default unspents dimensions to recovery path ([361eb62](https://github.com/BitGo/BitGoJS/commit/361eb62641aac19c876576a65da7f6777dc532a0))
573
+ - use psbt for prebuild when wallet is distributedCustody ([10f5e1a](https://github.com/BitGo/BitGoJS/commit/10f5e1ab37d2bea6acd93f94defbe786e4a027b9))
574
+
575
+ # [3.31.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@3.5.0...@bitgo/abstract-utxo@3.31.0) (2024-01-22)
576
+
577
+ ### Bug Fixes
578
+
579
+ - **abstract-utxo:** add changeAddress to change params ([3df744d](https://github.com/BitGo/BitGoJS/commit/3df744dbfe8de6ff846aec13669c38454dd5139f))
580
+ - **abstract-utxo:** add changeAddressType to change params ([b05b278](https://github.com/BitGo/BitGoJS/commit/b05b278a7148b5a5bfb61b17f60b81c7477b6b31))
581
+ - **abstract-utxo:** do not override changeAddressType or txFormat ([9494255](https://github.com/BitGo/BitGoJS/commit/94942559b0be8f9789c7afbb3740924aaab76ab3))
582
+ - **abstract-utxo:** revert to addressType ([5e45e62](https://github.com/BitGo/BitGoJS/commit/5e45e62d512c2794a517030027b1f9f66b20e048))
583
+ - **abstract-utxo:** upper case address should return false ([f0b6c46](https://github.com/BitGo/BitGoJS/commit/f0b6c467daaa0e43bb2923993fb238c7a4ce6f59))
584
+
585
+ ### Features
586
+
587
+ - **abstract-utxo:** change api used for bitcoin recovery from blockstream to blockchair ([6da5791](https://github.com/BitGo/BitGoJS/commit/6da5791bce2fc73d5d77c1eee6cb581b60da2079))
588
+ - **abstract-utxo:** enable segwit override when flagged ([bdf723c](https://github.com/BitGo/BitGoJS/commit/bdf723ce51d245e97b217941a21b02084b2473cf))
589
+ - **abstract-utxo:** support webauthn decryption in abstract utxo fn ([e9dd17a](https://github.com/BitGo/BitGoJS/commit/e9dd17a87211732a5287144df5a3fb766e6c1142))
590
+ - **abstract-utxo:** this enables psbt unless explicitly disabled for ([9a1722e](https://github.com/BitGo/BitGoJS/commit/9a1722e21e2a2fb3068d2940f439f72a6cbcb421))
591
+ - add walletFlags property, helper methods ([f0fd760](https://github.com/BitGo/BitGoJS/commit/f0fd760122334d86b0d4239bc3b23e0983a1d524))
592
+ - **bitgo:** calculate fees explicitly for psbts ([7a7e288](https://github.com/BitGo/BitGoJS/commit/7a7e288c63718a112abf633b842e7538d1e25693))
593
+ - handle musigKp flag in wallet ([b79b77c](https://github.com/BitGo/BitGoJS/commit/b79b77c4e0d64d85951724946206a5ded4fdd7b2))
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.30.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@3.5.0...@bitgo/abstract-utxo@3.30.0) (2024-01-09)
598
+
599
+ ### Bug Fixes
600
+
601
+ - **abstract-utxo:** add changeAddress to change params ([3df744d](https://github.com/BitGo/BitGoJS/commit/3df744dbfe8de6ff846aec13669c38454dd5139f))
602
+ - **abstract-utxo:** add changeAddressType to change params ([b05b278](https://github.com/BitGo/BitGoJS/commit/b05b278a7148b5a5bfb61b17f60b81c7477b6b31))
603
+ - **abstract-utxo:** do not override changeAddressType or txFormat ([9494255](https://github.com/BitGo/BitGoJS/commit/94942559b0be8f9789c7afbb3740924aaab76ab3))
604
+ - **abstract-utxo:** revert to addressType ([5e45e62](https://github.com/BitGo/BitGoJS/commit/5e45e62d512c2794a517030027b1f9f66b20e048))
605
+ - **abstract-utxo:** upper case address should return false ([f0b6c46](https://github.com/BitGo/BitGoJS/commit/f0b6c467daaa0e43bb2923993fb238c7a4ce6f59))
606
+
607
+ ### Features
608
+
609
+ - **abstract-utxo:** change api used for bitcoin recovery from blockstream to blockchair ([6da5791](https://github.com/BitGo/BitGoJS/commit/6da5791bce2fc73d5d77c1eee6cb581b60da2079))
610
+ - **abstract-utxo:** enable segwit override when flagged ([bdf723c](https://github.com/BitGo/BitGoJS/commit/bdf723ce51d245e97b217941a21b02084b2473cf))
611
+ - **abstract-utxo:** this enables psbt unless explicitly disabled for ([9a1722e](https://github.com/BitGo/BitGoJS/commit/9a1722e21e2a2fb3068d2940f439f72a6cbcb421))
612
+ - add walletFlags property, helper methods ([f0fd760](https://github.com/BitGo/BitGoJS/commit/f0fd760122334d86b0d4239bc3b23e0983a1d524))
613
+ - **bitgo:** calculate fees explicitly for psbts ([7a7e288](https://github.com/BitGo/BitGoJS/commit/7a7e288c63718a112abf633b842e7538d1e25693))
614
+ - handle musigKp flag in wallet ([b79b77c](https://github.com/BitGo/BitGoJS/commit/b79b77c4e0d64d85951724946206a5ded4fdd7b2))
615
+ - **unspents:** default unspents dimensions to recovery path ([361eb62](https://github.com/BitGo/BitGoJS/commit/361eb62641aac19c876576a65da7f6777dc532a0))
616
+ - use psbt for prebuild when wallet is distributedCustody ([10f5e1a](https://github.com/BitGo/BitGoJS/commit/10f5e1ab37d2bea6acd93f94defbe786e4a027b9))
617
+
618
+ # [3.29.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@3.5.0...@bitgo/abstract-utxo@3.29.0) (2024-01-03)
619
+
620
+ ### Bug Fixes
621
+
622
+ - **abstract-utxo:** add changeAddress to change params ([3df744d](https://github.com/BitGo/BitGoJS/commit/3df744dbfe8de6ff846aec13669c38454dd5139f))
623
+ - **abstract-utxo:** add changeAddressType to change params ([b05b278](https://github.com/BitGo/BitGoJS/commit/b05b278a7148b5a5bfb61b17f60b81c7477b6b31))
624
+ - **abstract-utxo:** do not override changeAddressType or txFormat ([9494255](https://github.com/BitGo/BitGoJS/commit/94942559b0be8f9789c7afbb3740924aaab76ab3))
625
+ - **abstract-utxo:** revert to addressType ([5e45e62](https://github.com/BitGo/BitGoJS/commit/5e45e62d512c2794a517030027b1f9f66b20e048))
626
+ - **abstract-utxo:** upper case address should return false ([f0b6c46](https://github.com/BitGo/BitGoJS/commit/f0b6c467daaa0e43bb2923993fb238c7a4ce6f59))
627
+
628
+ ### Features
629
+
630
+ - **abstract-utxo:** change api used for bitcoin recovery from blockstream to blockchair ([6da5791](https://github.com/BitGo/BitGoJS/commit/6da5791bce2fc73d5d77c1eee6cb581b60da2079))
631
+ - **abstract-utxo:** enable segwit override when flagged ([bdf723c](https://github.com/BitGo/BitGoJS/commit/bdf723ce51d245e97b217941a21b02084b2473cf))
632
+ - **abstract-utxo:** this enables psbt unless explicitly disabled for ([9a1722e](https://github.com/BitGo/BitGoJS/commit/9a1722e21e2a2fb3068d2940f439f72a6cbcb421))
633
+ - **bitgo:** calculate fees explicitly for psbts ([7a7e288](https://github.com/BitGo/BitGoJS/commit/7a7e288c63718a112abf633b842e7538d1e25693))
634
+ - **unspents:** default unspents dimensions to recovery path ([361eb62](https://github.com/BitGo/BitGoJS/commit/361eb62641aac19c876576a65da7f6777dc532a0))
635
+ - use psbt for prebuild when wallet is distributedCustody ([10f5e1a](https://github.com/BitGo/BitGoJS/commit/10f5e1ab37d2bea6acd93f94defbe786e4a027b9))
636
+
637
+ # [3.28.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@3.5.0...@bitgo/abstract-utxo@3.28.0) (2023-12-18)
638
+
639
+ ### Bug Fixes
640
+
641
+ - **abstract-utxo:** add changeAddressType to change params ([b05b278](https://github.com/BitGo/BitGoJS/commit/b05b278a7148b5a5bfb61b17f60b81c7477b6b31))
642
+ - **abstract-utxo:** upper case address should return false ([f0b6c46](https://github.com/BitGo/BitGoJS/commit/f0b6c467daaa0e43bb2923993fb238c7a4ce6f59))
643
+
644
+ ### Features
645
+
646
+ - **abstract-utxo:** change api used for bitcoin recovery from blockstream to blockchair ([6da5791](https://github.com/BitGo/BitGoJS/commit/6da5791bce2fc73d5d77c1eee6cb581b60da2079))
647
+ - **abstract-utxo:** enable segwit override when flagged ([bdf723c](https://github.com/BitGo/BitGoJS/commit/bdf723ce51d245e97b217941a21b02084b2473cf))
648
+ - **abstract-utxo:** this enables psbt unless explicitly disabled for ([9a1722e](https://github.com/BitGo/BitGoJS/commit/9a1722e21e2a2fb3068d2940f439f72a6cbcb421))
649
+ - **bitgo:** calculate fees explicitly for psbts ([7a7e288](https://github.com/BitGo/BitGoJS/commit/7a7e288c63718a112abf633b842e7538d1e25693))
650
+ - **unspents:** default unspents dimensions to recovery path ([361eb62](https://github.com/BitGo/BitGoJS/commit/361eb62641aac19c876576a65da7f6777dc532a0))
651
+ - use psbt for prebuild when wallet is distributedCustody ([10f5e1a](https://github.com/BitGo/BitGoJS/commit/10f5e1ab37d2bea6acd93f94defbe786e4a027b9))
652
+
653
+ # [3.27.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@3.5.0...@bitgo/abstract-utxo@3.27.0) (2023-12-12)
654
+
655
+ ### Bug Fixes
656
+
657
+ - **abstract-utxo:** upper case address should return false ([f0b6c46](https://github.com/BitGo/BitGoJS/commit/f0b6c467daaa0e43bb2923993fb238c7a4ce6f59))
658
+
659
+ ### Features
660
+
661
+ - **abstract-utxo:** change api used for bitcoin recovery from blockstream to blockchair ([6da5791](https://github.com/BitGo/BitGoJS/commit/6da5791bce2fc73d5d77c1eee6cb581b60da2079))
662
+ - **abstract-utxo:** enable segwit override when flagged ([bdf723c](https://github.com/BitGo/BitGoJS/commit/bdf723ce51d245e97b217941a21b02084b2473cf))
663
+ - **abstract-utxo:** this enables psbt unless explicitly disabled for ([9a1722e](https://github.com/BitGo/BitGoJS/commit/9a1722e21e2a2fb3068d2940f439f72a6cbcb421))
664
+ - **bitgo:** calculate fees explicitly for psbts ([7a7e288](https://github.com/BitGo/BitGoJS/commit/7a7e288c63718a112abf633b842e7538d1e25693))
665
+ - **unspents:** default unspents dimensions to recovery path ([361eb62](https://github.com/BitGo/BitGoJS/commit/361eb62641aac19c876576a65da7f6777dc532a0))
666
+ - use psbt for prebuild when wallet is distributedCustody ([10f5e1a](https://github.com/BitGo/BitGoJS/commit/10f5e1ab37d2bea6acd93f94defbe786e4a027b9))
667
+
668
+ # [3.26.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@3.5.0...@bitgo/abstract-utxo@3.26.0) (2023-12-09)
669
+
670
+ ### Bug Fixes
671
+
672
+ - **abstract-utxo:** upper case address should return false ([f0b6c46](https://github.com/BitGo/BitGoJS/commit/f0b6c467daaa0e43bb2923993fb238c7a4ce6f59))
673
+
674
+ ### Features
675
+
676
+ - **abstract-utxo:** change api used for bitcoin recovery from blockstream to blockchair ([6da5791](https://github.com/BitGo/BitGoJS/commit/6da5791bce2fc73d5d77c1eee6cb581b60da2079))
677
+ - **abstract-utxo:** this enables psbt unless explicitly disabled for ([9a1722e](https://github.com/BitGo/BitGoJS/commit/9a1722e21e2a2fb3068d2940f439f72a6cbcb421))
678
+ - **bitgo:** calculate fees explicitly for psbts ([7a7e288](https://github.com/BitGo/BitGoJS/commit/7a7e288c63718a112abf633b842e7538d1e25693))
679
+ - **unspents:** default unspents dimensions to recovery path ([361eb62](https://github.com/BitGo/BitGoJS/commit/361eb62641aac19c876576a65da7f6777dc532a0))
680
+ - use psbt for prebuild when wallet is distributedCustody ([10f5e1a](https://github.com/BitGo/BitGoJS/commit/10f5e1ab37d2bea6acd93f94defbe786e4a027b9))
681
+
682
+ # [3.25.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@3.5.0...@bitgo/abstract-utxo@3.25.0) (2023-12-05)
683
+
684
+ ### Bug Fixes
685
+
686
+ - **abstract-utxo:** upper case address should return false ([f0b6c46](https://github.com/BitGo/BitGoJS/commit/f0b6c467daaa0e43bb2923993fb238c7a4ce6f59))
687
+
688
+ ### Features
689
+
690
+ - **abstract-utxo:** change api used for bitcoin recovery from blockstream to blockchair ([6da5791](https://github.com/BitGo/BitGoJS/commit/6da5791bce2fc73d5d77c1eee6cb581b60da2079))
691
+ - **abstract-utxo:** this enables psbt unless explicitly disabled for ([9a1722e](https://github.com/BitGo/BitGoJS/commit/9a1722e21e2a2fb3068d2940f439f72a6cbcb421))
692
+ - **bitgo:** calculate fees explicitly for psbts ([7a7e288](https://github.com/BitGo/BitGoJS/commit/7a7e288c63718a112abf633b842e7538d1e25693))
693
+ - **unspents:** default unspents dimensions to recovery path ([361eb62](https://github.com/BitGo/BitGoJS/commit/361eb62641aac19c876576a65da7f6777dc532a0))
694
+ - use psbt for prebuild when wallet is distributedCustody ([10f5e1a](https://github.com/BitGo/BitGoJS/commit/10f5e1ab37d2bea6acd93f94defbe786e4a027b9))
695
+
696
+ # [3.24.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@3.5.0...@bitgo/abstract-utxo@3.24.0) (2023-11-28)
697
+
698
+ ### Bug Fixes
699
+
700
+ - **abstract-utxo:** upper case address should return false ([f0b6c46](https://github.com/BitGo/BitGoJS/commit/f0b6c467daaa0e43bb2923993fb238c7a4ce6f59))
701
+
702
+ ### Features
703
+
704
+ - **abstract-utxo:** change api used for bitcoin recovery from blockstream to blockchair ([6da5791](https://github.com/BitGo/BitGoJS/commit/6da5791bce2fc73d5d77c1eee6cb581b60da2079))
705
+ - **bitgo:** calculate fees explicitly for psbts ([7a7e288](https://github.com/BitGo/BitGoJS/commit/7a7e288c63718a112abf633b842e7538d1e25693))
706
+ - **unspents:** default unspents dimensions to recovery path ([361eb62](https://github.com/BitGo/BitGoJS/commit/361eb62641aac19c876576a65da7f6777dc532a0))
707
+ - use psbt for prebuild when wallet is distributedCustody ([10f5e1a](https://github.com/BitGo/BitGoJS/commit/10f5e1ab37d2bea6acd93f94defbe786e4a027b9))
708
+
709
+ # [3.23.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@3.5.0...@bitgo/abstract-utxo@3.23.0) (2023-11-24)
710
+
711
+ ### Bug Fixes
712
+
713
+ - **abstract-utxo:** upper case address should return false ([f0b6c46](https://github.com/BitGo/BitGoJS/commit/f0b6c467daaa0e43bb2923993fb238c7a4ce6f59))
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
+ - **unspents:** default unspents dimensions to recovery path ([361eb62](https://github.com/BitGo/BitGoJS/commit/361eb62641aac19c876576a65da7f6777dc532a0))
720
+ - use psbt for prebuild when wallet is distributedCustody ([10f5e1a](https://github.com/BitGo/BitGoJS/commit/10f5e1ab37d2bea6acd93f94defbe786e4a027b9))
721
+
722
+ # [3.22.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@3.5.0...@bitgo/abstract-utxo@3.22.0) (2023-11-17)
723
+
724
+ ### Bug Fixes
725
+
726
+ - **abstract-utxo:** upper case address should return false ([f0b6c46](https://github.com/BitGo/BitGoJS/commit/f0b6c467daaa0e43bb2923993fb238c7a4ce6f59))
727
+
728
+ ### Features
729
+
730
+ - **abstract-utxo:** change api used for bitcoin recovery from blockstream to blockchair ([6da5791](https://github.com/BitGo/BitGoJS/commit/6da5791bce2fc73d5d77c1eee6cb581b60da2079))
731
+ - **bitgo:** calculate fees explicitly for psbts ([7a7e288](https://github.com/BitGo/BitGoJS/commit/7a7e288c63718a112abf633b842e7538d1e25693))
732
+ - **unspents:** default unspents dimensions to recovery path ([361eb62](https://github.com/BitGo/BitGoJS/commit/361eb62641aac19c876576a65da7f6777dc532a0))
733
+ - use psbt for prebuild when wallet is distributedCustody ([10f5e1a](https://github.com/BitGo/BitGoJS/commit/10f5e1ab37d2bea6acd93f94defbe786e4a027b9))
734
+
735
+ # [3.21.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@3.5.0...@bitgo/abstract-utxo@3.21.0) (2023-11-13)
736
+
737
+ ### Bug Fixes
738
+
739
+ - **abstract-utxo:** upper case address should return false ([f0b6c46](https://github.com/BitGo/BitGoJS/commit/f0b6c467daaa0e43bb2923993fb238c7a4ce6f59))
740
+
741
+ ### Features
742
+
743
+ - **abstract-utxo:** change api used for bitcoin recovery from blockstream to blockchair ([6da5791](https://github.com/BitGo/BitGoJS/commit/6da5791bce2fc73d5d77c1eee6cb581b60da2079))
744
+ - **bitgo:** calculate fees explicitly for psbts ([7a7e288](https://github.com/BitGo/BitGoJS/commit/7a7e288c63718a112abf633b842e7538d1e25693))
745
+ - use psbt for prebuild when wallet is distributedCustody ([10f5e1a](https://github.com/BitGo/BitGoJS/commit/10f5e1ab37d2bea6acd93f94defbe786e4a027b9))
746
+
747
+ # [3.20.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@3.5.0...@bitgo/abstract-utxo@3.20.0) (2023-11-13)
748
+
749
+ ### Bug Fixes
750
+
751
+ - **abstract-utxo:** upper case address should return false ([f0b6c46](https://github.com/BitGo/BitGoJS/commit/f0b6c467daaa0e43bb2923993fb238c7a4ce6f59))
752
+
753
+ ### Features
754
+
755
+ - **abstract-utxo:** change api used for bitcoin recovery from blockstream to blockchair ([6da5791](https://github.com/BitGo/BitGoJS/commit/6da5791bce2fc73d5d77c1eee6cb581b60da2079))
756
+ - **bitgo:** calculate fees explicitly for psbts ([7a7e288](https://github.com/BitGo/BitGoJS/commit/7a7e288c63718a112abf633b842e7538d1e25693))
757
+ - use psbt for prebuild when wallet is distributedCustody ([10f5e1a](https://github.com/BitGo/BitGoJS/commit/10f5e1ab37d2bea6acd93f94defbe786e4a027b9))
758
+
759
+ # [3.19.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@3.5.0...@bitgo/abstract-utxo@3.19.0) (2023-11-13)
760
+
761
+ ### Bug Fixes
762
+
763
+ - **abstract-utxo:** upper case address should return false ([f0b6c46](https://github.com/BitGo/BitGoJS/commit/f0b6c467daaa0e43bb2923993fb238c7a4ce6f59))
764
+
765
+ ### Features
766
+
767
+ - **abstract-utxo:** change api used for bitcoin recovery from blockstream to blockchair ([6da5791](https://github.com/BitGo/BitGoJS/commit/6da5791bce2fc73d5d77c1eee6cb581b60da2079))
768
+ - **bitgo:** calculate fees explicitly for psbts ([7a7e288](https://github.com/BitGo/BitGoJS/commit/7a7e288c63718a112abf633b842e7538d1e25693))
769
+ - use psbt for prebuild when wallet is distributedCustody ([10f5e1a](https://github.com/BitGo/BitGoJS/commit/10f5e1ab37d2bea6acd93f94defbe786e4a027b9))
770
+
771
+ # [3.18.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@3.5.0...@bitgo/abstract-utxo@3.18.0) (2023-10-20)
772
+
773
+ ### Bug Fixes
774
+
775
+ - **abstract-utxo:** upper case address should return false ([f0b6c46](https://github.com/BitGo/BitGoJS/commit/f0b6c467daaa0e43bb2923993fb238c7a4ce6f59))
776
+
777
+ ### Features
778
+
779
+ - **abstract-utxo:** change api used for bitcoin recovery from blockstream to blockchair ([6da5791](https://github.com/BitGo/BitGoJS/commit/6da5791bce2fc73d5d77c1eee6cb581b60da2079))
780
+ - **bitgo:** calculate fees explicitly for psbts ([7a7e288](https://github.com/BitGo/BitGoJS/commit/7a7e288c63718a112abf633b842e7538d1e25693))
781
+
782
+ # [3.17.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@3.5.0...@bitgo/abstract-utxo@3.17.0) (2023-10-18)
783
+
784
+ ### Bug Fixes
785
+
786
+ - **abstract-utxo:** upper case address should return false ([f0b6c46](https://github.com/BitGo/BitGoJS/commit/f0b6c467daaa0e43bb2923993fb238c7a4ce6f59))
787
+
788
+ ### Features
789
+
790
+ - **abstract-utxo:** change api used for bitcoin recovery from blockstream to blockchair ([6da5791](https://github.com/BitGo/BitGoJS/commit/6da5791bce2fc73d5d77c1eee6cb581b60da2079))
791
+ - **bitgo:** calculate fees explicitly for psbts ([7a7e288](https://github.com/BitGo/BitGoJS/commit/7a7e288c63718a112abf633b842e7538d1e25693))
792
+
793
+ # [3.16.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@3.5.0...@bitgo/abstract-utxo@3.16.0) (2023-09-25)
794
+
795
+ ### Bug Fixes
796
+
797
+ - **abstract-utxo:** upper case address should return false ([f0b6c46](https://github.com/BitGo/BitGoJS/commit/f0b6c467daaa0e43bb2923993fb238c7a4ce6f59))
798
+
799
+ ### Features
800
+
801
+ - **abstract-utxo:** change api used for bitcoin recovery from blockstream to blockchair ([6da5791](https://github.com/BitGo/BitGoJS/commit/6da5791bce2fc73d5d77c1eee6cb581b60da2079))
802
+ - **bitgo:** calculate fees explicitly for psbts ([7a7e288](https://github.com/BitGo/BitGoJS/commit/7a7e288c63718a112abf633b842e7538d1e25693))
803
+
804
+ # [3.15.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@3.5.0...@bitgo/abstract-utxo@3.15.0) (2023-09-09)
805
+
806
+ ### Bug Fixes
807
+
808
+ - **abstract-utxo:** upper case address should return false ([f0b6c46](https://github.com/BitGo/BitGoJS/commit/f0b6c467daaa0e43bb2923993fb238c7a4ce6f59))
809
+
810
+ ### Features
811
+
812
+ - **abstract-utxo:** change api used for bitcoin recovery from blockstream to blockchair ([6da5791](https://github.com/BitGo/BitGoJS/commit/6da5791bce2fc73d5d77c1eee6cb581b60da2079))
813
+ - **bitgo:** calculate fees explicitly for psbts ([7a7e288](https://github.com/BitGo/BitGoJS/commit/7a7e288c63718a112abf633b842e7538d1e25693))
814
+
815
+ # [3.14.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@3.5.0...@bitgo/abstract-utxo@3.14.0) (2023-09-09)
816
+
817
+ ### Bug Fixes
818
+
819
+ - **abstract-utxo:** upper case address should return false ([f0b6c46](https://github.com/BitGo/BitGoJS/commit/f0b6c467daaa0e43bb2923993fb238c7a4ce6f59))
820
+
821
+ ### Features
822
+
823
+ - **abstract-utxo:** change api used for bitcoin recovery from blockstream to blockchair ([6da5791](https://github.com/BitGo/BitGoJS/commit/6da5791bce2fc73d5d77c1eee6cb581b60da2079))
824
+ - **bitgo:** calculate fees explicitly for psbts ([7a7e288](https://github.com/BitGo/BitGoJS/commit/7a7e288c63718a112abf633b842e7538d1e25693))
825
+
826
+ # [3.13.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@3.5.0...@bitgo/abstract-utxo@3.13.0) (2023-09-07)
827
+
828
+ ### Bug Fixes
829
+
830
+ - **abstract-utxo:** upper case address should return false ([f0b6c46](https://github.com/BitGo/BitGoJS/commit/f0b6c467daaa0e43bb2923993fb238c7a4ce6f59))
831
+
832
+ ### Features
833
+
834
+ - **abstract-utxo:** change api used for bitcoin recovery from blockstream to blockchair ([6da5791](https://github.com/BitGo/BitGoJS/commit/6da5791bce2fc73d5d77c1eee6cb581b60da2079))
835
+ - **bitgo:** calculate fees explicitly for psbts ([7a7e288](https://github.com/BitGo/BitGoJS/commit/7a7e288c63718a112abf633b842e7538d1e25693))
836
+
837
+ # [3.12.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@3.5.0...@bitgo/abstract-utxo@3.12.0) (2023-09-05)
838
+
839
+ ### Features
840
+
841
+ - **abstract-utxo:** change api used for bitcoin recovery from blockstream to blockchair ([6da5791](https://github.com/BitGo/BitGoJS/commit/6da5791bce2fc73d5d77c1eee6cb581b60da2079))
842
+ - **bitgo:** calculate fees explicitly for psbts ([7a7e288](https://github.com/BitGo/BitGoJS/commit/7a7e288c63718a112abf633b842e7538d1e25693))
843
+
844
+ # [3.11.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@3.5.0...@bitgo/abstract-utxo@3.11.0) (2023-09-01)
845
+
846
+ ### Features
847
+
848
+ - **abstract-utxo:** change api used for bitcoin recovery from blockstream to blockchair ([6da5791](https://github.com/BitGo/BitGoJS/commit/6da5791bce2fc73d5d77c1eee6cb581b60da2079))
849
+ - **bitgo:** calculate fees explicitly for psbts ([7a7e288](https://github.com/BitGo/BitGoJS/commit/7a7e288c63718a112abf633b842e7538d1e25693))
850
+
851
+ # [3.10.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@3.5.0...@bitgo/abstract-utxo@3.10.0) (2023-08-29)
852
+
853
+ ### Features
854
+
855
+ - **abstract-utxo:** change api used for bitcoin recovery from blockstream to blockchair ([6da5791](https://github.com/BitGo/BitGoJS/commit/6da5791bce2fc73d5d77c1eee6cb581b60da2079))
856
+ - **bitgo:** calculate fees explicitly for psbts ([7a7e288](https://github.com/BitGo/BitGoJS/commit/7a7e288c63718a112abf633b842e7538d1e25693))
857
+
858
+ # [3.9.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@3.5.0...@bitgo/abstract-utxo@3.9.0) (2023-08-25)
859
+
860
+ ### Features
861
+
862
+ - **abstract-utxo:** change api used for bitcoin recovery from blockstream to blockchair ([6da5791](https://github.com/BitGo/BitGoJS/commit/6da5791bce2fc73d5d77c1eee6cb581b60da2079))
863
+ - **bitgo:** calculate fees explicitly for psbts ([7a7e288](https://github.com/BitGo/BitGoJS/commit/7a7e288c63718a112abf633b842e7538d1e25693))
864
+
865
+ # [3.8.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@3.5.0...@bitgo/abstract-utxo@3.8.0) (2023-08-24)
866
+
867
+ ### Features
868
+
869
+ - **abstract-utxo:** change api used for bitcoin recovery from blockstream to blockchair ([6da5791](https://github.com/BitGo/BitGoJS/commit/6da5791bce2fc73d5d77c1eee6cb581b60da2079))
870
+ - **bitgo:** calculate fees explicitly for psbts ([7a7e288](https://github.com/BitGo/BitGoJS/commit/7a7e288c63718a112abf633b842e7538d1e25693))
871
+
872
+ # [3.7.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@3.5.0...@bitgo/abstract-utxo@3.7.0) (2023-08-16)
873
+
874
+ ### Features
875
+
876
+ - **abstract-utxo:** change api used for bitcoin recovery from blockstream to blockchair ([6da5791](https://github.com/BitGo/BitGoJS/commit/6da5791bce2fc73d5d77c1eee6cb581b60da2079))
877
+ - **bitgo:** calculate fees explicitly for psbts ([7a7e288](https://github.com/BitGo/BitGoJS/commit/7a7e288c63718a112abf633b842e7538d1e25693))
878
+
879
+ # [3.6.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@3.5.0...@bitgo/abstract-utxo@3.6.0) (2023-08-16)
880
+
881
+ ### Features
882
+
883
+ - **abstract-utxo:** change api used for bitcoin recovery from blockstream to blockchair ([6da5791](https://github.com/BitGo/BitGoJS/commit/6da5791bce2fc73d5d77c1eee6cb581b60da2079))
884
+ - **bitgo:** calculate fees explicitly for psbts ([7a7e288](https://github.com/BitGo/BitGoJS/commit/7a7e288c63718a112abf633b842e7538d1e25693))
885
+
886
+ # [3.5.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@3.3.0...@bitgo/abstract-utxo@3.5.0) (2023-08-04)
887
+
888
+ ### Features
889
+
890
+ - **abstract-utxo:** add psbt support backup recovery ([b312a86](https://github.com/BitGo/BitGoJS/commit/b312a86091c1320b4d7a02bd1ca5c3d2056c00c6))
891
+ - **root:** add node 18 to engines and CI ([9cc6a70](https://github.com/BitGo/BitGoJS/commit/9cc6a70ba807161b7c6a0ebe3d7c47f25c7c8eca))
892
+ - **root:** remove node 14 from engines ([6ec47cb](https://github.com/BitGo/BitGoJS/commit/6ec47cbd7996cc78bbf2cf7f16595c24fe43cd41))
893
+ - **utxo-lib:** extract half signed tx from psbt ([3145474](https://github.com/BitGo/BitGoJS/commit/31454748fcea6df7fbbf886937abc48b36fb9cbd))
894
+
895
+ # [3.4.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@3.3.0...@bitgo/abstract-utxo@3.4.0) (2023-07-28)
896
+
897
+ ### Features
898
+
899
+ - **root:** add node 18 to engines and CI ([9cc6a70](https://github.com/BitGo/BitGoJS/commit/9cc6a70ba807161b7c6a0ebe3d7c47f25c7c8eca))
900
+ - **root:** remove node 14 from engines ([6ec47cb](https://github.com/BitGo/BitGoJS/commit/6ec47cbd7996cc78bbf2cf7f16595c24fe43cd41))
901
+ - **utxo-lib:** extract half signed tx from psbt ([3145474](https://github.com/BitGo/BitGoJS/commit/31454748fcea6df7fbbf886937abc48b36fb9cbd))
902
+
903
+ # [3.3.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@3.2.0...@bitgo/abstract-utxo@3.3.0) (2023-07-18)
904
+
905
+ ### Features
906
+
907
+ - **abstract-utxo:** always use bitcoin network for validating secondary key signatures ([d9b7022](https://github.com/BitGo/BitGoJS/commit/d9b7022832ed38d8661b842add34caa97f340d31))
908
+ - **abstract-utxo:** move keysSignatures test to separate file ([b9fa5c5](https://github.com/BitGo/BitGoJS/commit/b9fa5c57ae6207974612c96c4cf0941665703a4e))
909
+
910
+ # [3.2.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@3.1.2...@bitgo/abstract-utxo@3.2.0) (2023-06-21)
911
+
912
+ ### Features
913
+
914
+ - **abstract-utxo:** support express external signer for musig2 inputs ([4401367](https://github.com/BitGo/BitGoJS/commit/44013673d564c976ae7b55788369dc48acbec64f))
915
+ - **utxo-lib:** add extractTransaction to UtxoPsbt ([0c41982](https://github.com/BitGo/BitGoJS/commit/0c41982de5b9397e69b314272c4e0f38bb6f69c3))
916
+
917
+ ## [3.1.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@3.1.1...@bitgo/abstract-utxo@3.1.2) (2023-06-14)
918
+
919
+ **Note:** Version bump only for package @bitgo/abstract-utxo
920
+
921
+ ## [3.1.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@3.1.0...@bitgo/abstract-utxo@3.1.1) (2023-06-13)
922
+
923
+ **Note:** Version bump only for package @bitgo/abstract-utxo
924
+
925
+ # [3.1.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@3.0.0...@bitgo/abstract-utxo@3.1.0) (2023-06-07)
926
+
927
+ ### Features
928
+
929
+ - **abstract-utxo:** make walletId param optional for signtx ([f5aff50](https://github.com/BitGo/BitGoJS/commit/f5aff5087727fb1842dc7cda64756553ab364c2b))
930
+
931
+ # [3.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@2.3.0...@bitgo/abstract-utxo@3.0.0) (2023-06-05)
932
+
933
+ ### Bug Fixes
934
+
935
+ - **utxo-lib:** use PsbtInput instead of UtxoPsbt ([1f73539](https://github.com/BitGo/BitGoJS/commit/1f73539409cf69fc55ab8aedb9d8873bb82bc375))
936
+
937
+ ### Features
938
+
939
+ - **abstract-utxo:** add psbt support to explain and verify Tx ([4189659](https://github.com/BitGo/BitGoJS/commit/41896593cdc180cb5a60145a8d31fdf55dba6bb2))
940
+
941
+ ### BREAKING CHANGES
942
+
943
+ - **utxo-lib:** functions signature is changed
944
+
945
+ # [2.3.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@2.2.1...@bitgo/abstract-utxo@2.3.0) (2023-05-25)
946
+
947
+ ### Features
948
+
949
+ - **abstract-utxo:** add psbt and musig2 support for sdk-api ([7a23991](https://github.com/BitGo/BitGoJS/commit/7a23991079e5609d43d7483f8137189163943dfc))
950
+
951
+ ## [2.2.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@2.2.0...@bitgo/abstract-utxo@2.2.1) (2023-05-17)
952
+
953
+ **Note:** Version bump only for package @bitgo/abstract-utxo
954
+
955
+ # [2.2.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@2.1.3...@bitgo/abstract-utxo@2.2.0) (2023-05-10)
956
+
957
+ ### Features
958
+
959
+ - **sdk-coin-btc:** find & use supplementary unspents in case ([fc321ee](https://github.com/BitGo/BitGoJS/commit/fc321ee1fccfae2d6676070fb32d8d4dee531aaf))
960
+
961
+ ## [2.1.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@2.1.2...@bitgo/abstract-utxo@2.1.3) (2023-05-03)
962
+
963
+ **Note:** Version bump only for package @bitgo/abstract-utxo
964
+
965
+ ## [2.1.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@2.1.1...@bitgo/abstract-utxo@2.1.2) (2023-04-25)
966
+
967
+ **Note:** Version bump only for package @bitgo/abstract-utxo
968
+
969
+ ## [2.1.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@2.1.0...@bitgo/abstract-utxo@2.1.1) (2023-04-20)
970
+
971
+ **Note:** Version bump only for package @bitgo/abstract-utxo
972
+
973
+ # [2.1.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@2.0.1...@bitgo/abstract-utxo@2.1.0) (2023-04-13)
974
+
975
+ ### Bug Fixes
976
+
977
+ - **sdk-coin-btc:** get rootwalletkeys for inscription transfer ([b160186](https://github.com/BitGo/BitGoJS/commit/b16018643273e20ea6908f51149139def7209932))
978
+
979
+ ### Features
980
+
981
+ - **utxo-lib:** create p2tr address using musig2 ([699e829](https://github.com/BitGo/BitGoJS/commit/699e8291f4a205ba0b2071c6369f2c8843b8a945))
982
+
6
983
  ## [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
984
 
8
985
  **Note:** Version bump only for package @bitgo/abstract-utxo