@exodus/bitcoin-api 3.1.0 → 3.1.1

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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,16 @@
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
+ ## [3.1.1](https://github.com/ExodusMovement/assets/compare/@exodus/bitcoin-api@3.1.0...@exodus/bitcoin-api@3.1.1) (2025-07-16)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+
12
+ * fix: fetchUTXOs now search input script in response script and scriptPubKey fields (#6097)
13
+
14
+
15
+
6
16
  ## [3.1.0](https://github.com/ExodusMovement/assets/compare/@exodus/bitcoin-api@3.0.0...@exodus/bitcoin-api@3.1.0) (2025-07-15)
7
17
 
8
18
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/bitcoin-api",
3
- "version": "3.1.0",
3
+ "version": "3.1.1",
4
4
  "description": "Bitcoin transaction and fee monitors, RPC with the blockchain node, other networking code.",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
@@ -57,5 +57,5 @@
57
57
  "type": "git",
58
58
  "url": "git+https://github.com/ExodusMovement/assets.git"
59
59
  },
60
- "gitHead": "229692f08cdae6009bb5bb2abbe9d708f6b2ab11"
60
+ "gitHead": "a6b7f1349f8af1fdf341509bfd52578b53d11053"
61
61
  }
@@ -90,7 +90,7 @@ export default class InsightAPIClient {
90
90
  value: utxo.amount,
91
91
  vout: utxo.vout,
92
92
  height: utxo.height,
93
- script: utxo.script,
93
+ script: utxo.script ?? utxo.scriptPubKey,
94
94
  asset: utxo.asset,
95
95
  }))
96
96
  }