@exodus/bitcoin-api 2.29.5 → 2.29.6

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
+ ## [2.29.6](https://github.com/ExodusMovement/assets/compare/@exodus/bitcoin-api@2.29.5...@exodus/bitcoin-api@2.29.6) (2025-01-01)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+
12
+ * fix: remove exclude utxo from storage (#4764)
13
+
14
+
15
+
6
16
  ## [2.29.5](https://github.com/ExodusMovement/assets/compare/@exodus/bitcoin-api@2.29.4...@exodus/bitcoin-api@2.29.5) (2024-12-19)
7
17
 
8
18
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/bitcoin-api",
3
- "version": "2.29.5",
3
+ "version": "2.29.6",
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",
@@ -56,5 +56,5 @@
56
56
  "type": "git",
57
57
  "url": "git+https://github.com/ExodusMovement/assets.git"
58
58
  },
59
- "gitHead": "9f590f5439d73cba02054d608fb3d5c62fbdcf34"
59
+ "gitHead": "1f23b2168c83db6ae6ed864cd2baaa7cc70e0213"
60
60
  }
@@ -563,6 +563,12 @@ export class BitcoinMonitorScanner {
563
563
  }
564
564
 
565
565
  if (this.#shouldExcludeVoutUtxo({ asset, output, txItem, vout })) {
566
+ utxosToRemove.push({
567
+ address,
568
+ txId: txItem.txid,
569
+ vout: vout.n,
570
+ value: currency.defaultUnit(vout.value || 0),
571
+ })
566
572
  return
567
573
  }
568
574