@exodus/bitcoin-api 4.14.1 → 4.14.2

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.2](https://github.com/ExodusMovement/assets/compare/@exodus/bitcoin-api@4.14.1...@exodus/bitcoin-api@4.14.2) (2026-04-04)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+
12
+ * fix(bitcoin-api): pass missing params in getFeeAsync fallback (#7726)
13
+
14
+
15
+
6
16
  ## [4.14.1](https://github.com/ExodusMovement/assets/compare/@exodus/bitcoin-api@4.14.0...@exodus/bitcoin-api@4.14.1) (2026-04-02)
7
17
 
8
18
  **Note:** Version bump only for package @exodus/bitcoin-api
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/bitcoin-api",
3
- "version": "4.14.1",
3
+ "version": "4.14.2",
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": "00d2c9f1bc5285d90db56abb5f883851f2ac4d3b"
66
+ "gitHead": "0e21e32b5a5ef1bccabd562609a09a027188984b"
67
67
  }
@@ -22,6 +22,7 @@ export const getFeeAsyncFactory = ({ createTx, assetClientInterface }) => {
22
22
 
23
23
  return { fee }
24
24
  } catch {
25
+ const { customFee, taprootInputWitnessSize } = extraCreateTxParams
25
26
  const assetName = asset.name
26
27
  const [accountState, txSet, feeData] = await Promise.all([
27
28
  assetClientInterface.getAccountState({ assetName, walletAccount }),
@@ -35,9 +36,9 @@ export const getFeeAsyncFactory = ({ createTx, assetClientInterface }) => {
35
36
  feeData,
36
37
  amount: sendAmount,
37
38
  isSendAll,
38
- // customFee,
39
- // receiveAddress,
40
- // taprootInputWitnessSize,
39
+ customFee,
40
+ receiveAddress: toAddress,
41
+ taprootInputWitnessSize,
41
42
  })
42
43
  return { fee }
43
44
  }