@exodus/activity-txs 3.1.1 → 3.1.3
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,18 @@
|
|
|
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
|
+
## [3.1.3](https://github.com/ExodusMovement/exodus-hydra/compare/@exodus/activity-txs@3.1.2...@exodus/activity-txs@3.1.3) (2023-10-31)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- collapse batch ([#4647](https://github.com/ExodusMovement/exodus-hydra/issues/4647)) ([d4e468f](https://github.com/ExodusMovement/exodus-hydra/commit/d4e468f80049e94aabe2bed79b8a4c8dee03db2b))
|
|
11
|
+
|
|
12
|
+
## [3.1.2](https://github.com/ExodusMovement/exodus-hydra/compare/@exodus/activity-txs@3.1.1...@exodus/activity-txs@3.1.2) (2023-10-20)
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
- import from atoms index ([#4508](https://github.com/ExodusMovement/exodus-hydra/issues/4508)) ([923fb99](https://github.com/ExodusMovement/exodus-hydra/commit/923fb992328b63e45401c78176b5a6ef7b666eee))
|
|
17
|
+
|
|
6
18
|
## [3.1.1](https://github.com/ExodusMovement/exodus-hydra/compare/@exodus/activity-txs@3.1.0...@exodus/activity-txs@3.1.1) (2023-10-18)
|
|
7
19
|
|
|
8
20
|
### Bug Fixes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@exodus/activity-txs",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.3",
|
|
4
4
|
"description": "The activity-txs feature",
|
|
5
5
|
"author": "Exodus Movement Inc.",
|
|
6
6
|
"repository": {
|
|
@@ -30,10 +30,10 @@
|
|
|
30
30
|
"test": "jest"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@exodus/atoms": "^
|
|
33
|
+
"@exodus/atoms": "^6.0.1",
|
|
34
34
|
"@exodus/basic-utils": "^2.1.0",
|
|
35
35
|
"@exodus/core-selectors": "^1.5.0",
|
|
36
|
-
"@exodus/module": "^1.2.
|
|
36
|
+
"@exodus/module": "^1.2.1",
|
|
37
37
|
"@exodus/multi-account-redux": "^2.0.0",
|
|
38
38
|
"lodash": "^4.17.21",
|
|
39
39
|
"reselect": "^3.0.1"
|
|
@@ -41,19 +41,19 @@
|
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"@exodus/assets": "^8.0.95",
|
|
43
43
|
"@exodus/assets-base": "^8.1.10",
|
|
44
|
-
"@exodus/assets-feature": "^3.
|
|
44
|
+
"@exodus/assets-feature": "^3.7.0",
|
|
45
45
|
"@exodus/bitcoin-plugin": "^1.4.2",
|
|
46
|
-
"@exodus/blockchain-metadata": "^14.
|
|
46
|
+
"@exodus/blockchain-metadata": "^14.2.0",
|
|
47
47
|
"@exodus/dependency-injection": "^2.0.1",
|
|
48
48
|
"@exodus/dependency-preprocessors": "^3.1.1",
|
|
49
49
|
"@exodus/models": "^10.1.0",
|
|
50
50
|
"@exodus/personal-notes": "^3.6.0",
|
|
51
51
|
"@exodus/redux-dependency-injection": "^3.0.0",
|
|
52
52
|
"@exodus/storage-memory": "^2.1.1",
|
|
53
|
-
"@exodus/wallet-accounts": "^14.
|
|
53
|
+
"@exodus/wallet-accounts": "^14.2.0",
|
|
54
54
|
"eslint": "^8.44.0",
|
|
55
55
|
"jest": "^29.1.2",
|
|
56
56
|
"redux": "^4.2.1"
|
|
57
57
|
},
|
|
58
|
-
"gitHead": "
|
|
58
|
+
"gitHead": "4a29da06e8d3e0efe2251025ee9aa285a259182c"
|
|
59
59
|
}
|
package/plugin/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import createAtomObserver from '@exodus/atoms
|
|
1
|
+
import { createAtomObserver } from '@exodus/atoms'
|
|
2
2
|
|
|
3
3
|
const createActivityTxsPlugin = ({ activityTxsAtom, port }) => {
|
|
4
4
|
const observer = createAtomObserver({ atom: activityTxsAtom, port, event: 'activityTxs' })
|
|
@@ -22,7 +22,9 @@ const collapseBatch = ({ batch, assets }) => {
|
|
|
22
22
|
return Tx.fromJSON(
|
|
23
23
|
merge({}, txJSON, {
|
|
24
24
|
coinAmount: totalBatchValue,
|
|
25
|
+
coinName: asset.name,
|
|
25
26
|
feeAmount: totalBatchFee,
|
|
27
|
+
feeCoinName: asset.feeAsset.name,
|
|
26
28
|
...(batchedIds.length > 1 && {
|
|
27
29
|
data: {
|
|
28
30
|
...baseData,
|