@exodus/bitcoin-api 4.14.5 → 4.14.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
+ ## [4.14.6](https://github.com/ExodusMovement/assets/compare/@exodus/bitcoin-api@4.14.5...@exodus/bitcoin-api@4.14.6) (2026-04-24)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+
12
+ * fix(bitcoin-api): return data from broadcastTx methods (#7749)
13
+
14
+
15
+
6
16
  ## [4.14.5](https://github.com/ExodusMovement/assets/compare/@exodus/bitcoin-api@4.14.4...@exodus/bitcoin-api@4.14.5) (2026-04-24)
7
17
 
8
18
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/bitcoin-api",
3
- "version": "4.14.5",
3
+ "version": "4.14.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",
@@ -63,5 +63,5 @@
63
63
  "type": "git",
64
64
  "url": "git+https://github.com/ExodusMovement/assets.git"
65
65
  },
66
- "gitHead": "c420214d58816a0f5aa682822b066309d796fe30"
66
+ "gitHead": "2cecf114ca8d8516413cf6e8b654d239e4373c96"
67
67
  }
@@ -231,5 +231,8 @@ export default class InsightAPIClient {
231
231
  error.traceId = traceId
232
232
  throw error
233
233
  }
234
+
235
+ const { txid } = data
236
+ return { txid }
234
237
  }
235
238
  }
@@ -658,5 +658,8 @@ export default class MempoolRestClient {
658
658
 
659
659
  throw error
660
660
  }
661
+
662
+ const { txid } = data
663
+ return { txid }
661
664
  }
662
665
  }