@exodus/activity-txs 4.8.0 → 5.0.0
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
|
+
## [5.0.0](https://github.com/ExodusMovement/exodus-hydra/compare/@exodus/activity-txs@4.8.0...@exodus/activity-txs@5.0.0) (2025-05-29)
|
|
7
|
+
|
|
8
|
+
### ⚠ BREAKING CHANGES
|
|
9
|
+
|
|
10
|
+
- rename argument for pending fiat orders (#12718)
|
|
11
|
+
|
|
12
|
+
### Features
|
|
13
|
+
|
|
14
|
+
- feat!: rename argument for pending fiat orders (#12718)
|
|
15
|
+
|
|
6
16
|
## [4.8.0](https://github.com/ExodusMovement/exodus-hydra/compare/@exodus/activity-txs@4.7.2...@exodus/activity-txs@4.8.0) (2025-05-22)
|
|
7
17
|
|
|
8
18
|
### Features
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@exodus/activity-txs",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "5.0.0",
|
|
4
4
|
"description": "The activity-txs feature",
|
|
5
5
|
"author": "Exodus Movement, Inc.",
|
|
6
6
|
"repository": {
|
|
@@ -50,10 +50,10 @@
|
|
|
50
50
|
"@exodus/bitcoin-plugin": "^1.4.2",
|
|
51
51
|
"@exodus/connected-origins": "^4.3.0",
|
|
52
52
|
"@exodus/error-tracking": "^2.0.0",
|
|
53
|
-
"@exodus/fiat-ramp": "^12.
|
|
53
|
+
"@exodus/fiat-ramp": "^12.9.0",
|
|
54
54
|
"@exodus/logger": "^1.2.3",
|
|
55
55
|
"@exodus/nfts": "^9.5.1",
|
|
56
|
-
"@exodus/orders": "^5.
|
|
56
|
+
"@exodus/orders": "^5.3.0",
|
|
57
57
|
"@exodus/personal-notes": "^3.8.0",
|
|
58
58
|
"@exodus/redux-dependency-injection": "^4.1.1",
|
|
59
59
|
"@exodus/wallet-accounts": "^17.5.2",
|
|
@@ -63,5 +63,5 @@
|
|
|
63
63
|
"publishConfig": {
|
|
64
64
|
"access": "public"
|
|
65
65
|
},
|
|
66
|
-
"gitHead": "
|
|
66
|
+
"gitHead": "4cc92d5c28fdd93aca7cdfd6d3518e4b905e9b0d"
|
|
67
67
|
}
|
|
@@ -10,7 +10,7 @@ const selectorFactory =
|
|
|
10
10
|
assert(createActivitySelector, 'please provide activitySelector')
|
|
11
11
|
|
|
12
12
|
return memoize(
|
|
13
|
-
({ assetName, walletAccount,
|
|
13
|
+
({ assetName, walletAccount, displayFiatOrdersWithoutTx = false, ...rest }) => {
|
|
14
14
|
const activitySelector = createActivitySelector({ assetName, walletAccount, ...rest })
|
|
15
15
|
assert(activitySelector, 'createActivitySelector must return selector')
|
|
16
16
|
if (visibleOrdersSelector.isFallback) return activitySelector
|
|
@@ -41,7 +41,7 @@ const selectorFactory =
|
|
|
41
41
|
}
|
|
42
42
|
}
|
|
43
43
|
|
|
44
|
-
if (
|
|
44
|
+
if (displayFiatOrdersWithoutTx) {
|
|
45
45
|
for (const fiatOrder of fiatOrders) {
|
|
46
46
|
const isOrderWithoutTx = !fiatOrder.txId
|
|
47
47
|
const isRelatedBuyOrder =
|