@exodus/bitcoin-api 4.15.6 → 4.15.8

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,26 @@
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.15.8](https://github.com/ExodusMovement/assets/compare/@exodus/bitcoin-api@4.15.7...@exodus/bitcoin-api@4.15.8) (2026-06-05)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+
12
+ * fix(bitcoin-api): increase insight address timeout and reduce retry delays for faster restore (#8216)
13
+
14
+
15
+
16
+ ## [4.15.7](https://github.com/ExodusMovement/assets/compare/@exodus/bitcoin-api@4.15.6...@exodus/bitcoin-api@4.15.7) (2026-06-04)
17
+
18
+
19
+ ### Bug Fixes
20
+
21
+
22
+ * fix(bitcoin-api): pass isSendAll to selectUtxos in batch-tx (#7994)
23
+
24
+
25
+
6
26
  ## [4.15.6](https://github.com/ExodusMovement/assets/compare/@exodus/bitcoin-api@4.15.5...@exodus/bitcoin-api@4.15.6) (2026-06-03)
7
27
 
8
28
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/bitcoin-api",
3
- "version": "4.15.6",
3
+ "version": "4.15.8",
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": "c19821f0073cd61c5e2a6b07c962165e8ee77416"
66
+ "gitHead": "0d0738ee6470d53801719742d165849969f70c5e"
67
67
  }
@@ -67,7 +67,7 @@ const fetchJson = async (
67
67
  }
68
68
 
69
69
  async function fetchJsonRetry(url, fetchOptions, httpErrorMessage) {
70
- const waitTimes = ['5s', '10s', '20s', '30s']
70
+ const waitTimes = ['2s', '5s', '10s', '20s']
71
71
  const fetchWithRetry = retry(fetchJson, { delayTimesMs: waitTimes })
72
72
  return fetchWithRetry(url, fetchOptions, false, httpErrorMessage)
73
73
  }
@@ -156,7 +156,7 @@ export default class InsightAPIClient {
156
156
  'Content-Type': 'application/json',
157
157
  },
158
158
  body: JSON.stringify({ addrs: addrs.join(',') }),
159
- timeout: 10_000,
159
+ timeout: 25_000,
160
160
  }
161
161
 
162
162
  return fetchJsonRetry(url, fetchOptions, INSIGHT_HTTP_ERROR_ADDRS_TXS_MESSAGE)
@@ -50,6 +50,7 @@ export const getCreateBatchTransaction = ({
50
50
  amount,
51
51
  feeRate: feeData.feePerKB,
52
52
  receiveAddresses,
53
+ isSendAll,
53
54
  getFeeEstimator: (asset, { feePerKB, ...options }) =>
54
55
  getFeeEstimator(asset, feePerKB, options),
55
56
  unconfirmedTxAncestor,