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

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