@bitgo-beta/abstract-utxo 1.6.1-alpha.24 → 1.6.1-alpha.241

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