@exodus/bitcoin-api 4.14.0 → 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 +18 -0
- package/package.json +2 -2
- package/src/get-fee-async.js +4 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,24 @@
|
|
|
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
|
+
|
|
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)
|
|
17
|
+
|
|
18
|
+
**Note:** Version bump only for package @exodus/bitcoin-api
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
6
24
|
## [4.14.0](https://github.com/ExodusMovement/assets/compare/@exodus/bitcoin-api@4.13.0...@exodus/bitcoin-api@4.14.0) (2026-03-27)
|
|
7
25
|
|
|
8
26
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@exodus/bitcoin-api",
|
|
3
|
-
"version": "4.14.
|
|
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": "
|
|
66
|
+
"gitHead": "0e21e32b5a5ef1bccabd562609a09a027188984b"
|
|
67
67
|
}
|
package/src/get-fee-async.js
CHANGED
|
@@ -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
|
-
|
|
39
|
-
|
|
40
|
-
|
|
39
|
+
customFee,
|
|
40
|
+
receiveAddress: toAddress,
|
|
41
|
+
taprootInputWitnessSize,
|
|
41
42
|
})
|
|
42
43
|
return { fee }
|
|
43
44
|
}
|