@exodus/activity-txs 6.1.5 → 6.1.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,12 @@
|
|
|
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
|
+
## [6.1.6](https://github.com/ExodusMovement/exodus-hydra/compare/@exodus/activity-txs@6.1.5...@exodus/activity-txs@6.1.6) (2026-06-27)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- **activity-txs:** handle iterable (TxSet) tx source in groupTxsWithSameOrder ([#17380](https://github.com/ExodusMovement/exodus-hydra/issues/17380)) ([9ad4b9f](https://github.com/ExodusMovement/exodus-hydra/commit/9ad4b9f3ffc9f01708498ebf1286c932b0b7a999))
|
|
11
|
+
|
|
6
12
|
## [6.1.5](https://github.com/ExodusMovement/exodus-hydra/compare/@exodus/activity-txs@6.1.4...@exodus/activity-txs@6.1.5) (2026-06-25)
|
|
7
13
|
|
|
8
14
|
### Bug Fixes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@exodus/activity-txs",
|
|
3
|
-
"version": "6.1.
|
|
3
|
+
"version": "6.1.6",
|
|
4
4
|
"description": "The activity-txs feature",
|
|
5
5
|
"author": "Exodus Movement, Inc.",
|
|
6
6
|
"repository": {
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"@exodus/assets": "^11.0.0",
|
|
49
49
|
"@exodus/assets-base": "^12.0.0",
|
|
50
|
-
"@exodus/assets-feature": "^9.2.
|
|
50
|
+
"@exodus/assets-feature": "^9.2.4",
|
|
51
51
|
"@exodus/available-assets": "^8.11.0",
|
|
52
52
|
"@exodus/bitcoin-plugin": "^2.0.0",
|
|
53
53
|
"@exodus/connected-origins": "^4.3.0",
|
|
@@ -66,5 +66,5 @@
|
|
|
66
66
|
"access": "public",
|
|
67
67
|
"provenance": false
|
|
68
68
|
},
|
|
69
|
-
"gitHead": "
|
|
69
|
+
"gitHead": "1599b3ac77f23228ee4c61c1b131664fe1ff541c"
|
|
70
70
|
}
|
|
@@ -61,9 +61,10 @@ const bridgeAmountKey = (tx) =>
|
|
|
61
61
|
const amountSign = (tx) => (tx.coinAmount.toBaseString().startsWith('-') ? -1 : 1)
|
|
62
62
|
|
|
63
63
|
const groupTxsWithSameOrder = ({ txs, orderSet, isIndexless }) => {
|
|
64
|
-
|
|
64
|
+
const txList = Array.isArray(txs) ? txs : [...txs]
|
|
65
|
+
if (!orderSet) return txList.map((tx) => ({ tx, type: 'tx' }))
|
|
65
66
|
|
|
66
|
-
const classifiedTxs =
|
|
67
|
+
const classifiedTxs = txList.map((tx) => ({ tx, ...classifyTx({ tx, orderSet }) }))
|
|
67
68
|
|
|
68
69
|
const orphanCounterparts = []
|
|
69
70
|
for (const { tx, type } of classifiedTxs) {
|