@exodus/activity-txs 4.3.1 → 4.3.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,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
+ ## [4.3.2](https://github.com/ExodusMovement/exodus-hydra/compare/@exodus/activity-txs@4.3.1...@exodus/activity-txs@4.3.2) (2024-07-25)
7
+
8
+ ### Bug Fixes
9
+
10
+ - migrate definitions ([#8030](https://github.com/ExodusMovement/exodus-hydra/issues/8030)) ([d2dfde5](https://github.com/ExodusMovement/exodus-hydra/commit/d2dfde55dfa843eb52842f64b3aac3a6f9a59069))
11
+
6
12
  ## [4.3.1](https://github.com/ExodusMovement/exodus-hydra/compare/@exodus/activity-txs@4.3.0...@exodus/activity-txs@4.3.1) (2024-07-18)
7
13
 
8
14
  **Note:** Version bump only for package @exodus/activity-txs
@@ -1,6 +1,6 @@
1
1
  import { combine, compute } from '@exodus/atoms'
2
2
  import { createSelector } from 'reselect'
3
- import { memoize } from 'lodash'
3
+ import { memoize } from 'lodash' // eslint-disable-line @exodus/restricted-imports/prefer-basic-utils -- TODO: fix next time we touch this file
4
4
  import { mapValues } from '@exodus/basic-utils'
5
5
  import { createDeepEqualOutputSelector } from '@exodus/core-selectors/utils/deep-equal'
6
6
 
@@ -150,6 +150,7 @@ const activityTxsAtomDefinition = {
150
150
  type: 'atom',
151
151
  factory: createActivityTxsAtom,
152
152
  dependencies: ['txLogsAtom', 'accountStatesAtom', 'assetsModule'],
153
+ public: true,
153
154
  }
154
155
 
155
156
  export default activityTxsAtomDefinition
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/activity-txs",
3
- "version": "4.3.1",
3
+ "version": "4.3.2",
4
4
  "description": "The activity-txs feature",
5
5
  "author": "Exodus Movement, Inc.",
6
6
  "repository": {
@@ -44,22 +44,22 @@
44
44
  "devDependencies": {
45
45
  "@exodus/assets": "^8.0.95",
46
46
  "@exodus/assets-base": "^8.1.10",
47
- "@exodus/assets-feature": "^5.8.1",
48
- "@exodus/available-assets": "^8.3.1",
47
+ "@exodus/assets-feature": "^5.8.2",
48
+ "@exodus/available-assets": "^8.4.0",
49
49
  "@exodus/bitcoin-plugin": "^1.4.2",
50
- "@exodus/blockchain-metadata": "^15.3.4",
51
- "@exodus/connected-origins": "^3.3.3",
52
- "@exodus/dependency-injection": "^2.3.1",
53
- "@exodus/dependency-preprocessors": "^6.0.1",
54
- "@exodus/fiat-ramp": "^10.9.1",
55
- "@exodus/nfts": "^9.3.2",
56
- "@exodus/orders": "^4.10.1",
57
- "@exodus/personal-notes": "^3.6.1",
50
+ "@exodus/blockchain-metadata": "^15.3.5",
51
+ "@exodus/connected-origins": "^3.3.4",
52
+ "@exodus/dependency-injection": "^2.3.2",
53
+ "@exodus/dependency-preprocessors": "^6.0.2",
54
+ "@exodus/fiat-ramp": "^10.9.2",
55
+ "@exodus/nfts": "^9.3.3",
56
+ "@exodus/orders": "^4.10.2",
57
+ "@exodus/personal-notes": "^3.6.2",
58
58
  "@exodus/redux-dependency-injection": "^3.2.3",
59
59
  "@exodus/storage-memory": "^2.1.1",
60
- "@exodus/wallet-accounts": "^16.8.1",
60
+ "@exodus/wallet-accounts": "^16.8.2",
61
61
  "@types/minimalistic-assert": "^1.0.1",
62
62
  "redux": "^4.2.1"
63
63
  },
64
- "gitHead": "a76a22c96445bcaa05e18de0e0c323cf9dd04cba"
64
+ "gitHead": "3995391eb48639b2d60ced5224a6a8f4902a2466"
65
65
  }
package/plugin/index.js CHANGED
@@ -18,6 +18,7 @@ const activityTxsPluginDefinition = {
18
18
  type: 'plugin',
19
19
  factory: createActivityTxsPlugin,
20
20
  dependencies: ['activityTxsAtom', 'port'],
21
+ public: true,
21
22
  }
22
23
 
23
24
  export default activityTxsPluginDefinition
@@ -1,4 +1,4 @@
1
- import { memoize } from 'lodash'
1
+ import { memoize } from 'lodash' // eslint-disable-line @exodus/restricted-imports/prefer-basic-utils -- TODO: fix next time we touch this file
2
2
  import { createSelector } from 'reselect'
3
3
 
4
4
  const createBatchedAssetSourceActivityByIdSelector = {
@@ -1,4 +1,4 @@
1
- import { memoize, get, groupBy, merge } from 'lodash'
1
+ import { memoize, get, groupBy, merge } from 'lodash' // eslint-disable-line @exodus/restricted-imports/prefer-basic-utils -- TODO: fix next time we touch this file
2
2
  import { createSelector } from 'reselect'
3
3
  import { Tx } from '@exodus/models'
4
4
 
@@ -1,4 +1,4 @@
1
- import { memoize } from 'lodash'
1
+ import { memoize } from 'lodash' // eslint-disable-line @exodus/restricted-imports/prefer-basic-utils -- TODO: fix next time we touch this file
2
2
  import { createSelector } from 'reselect'
3
3
 
4
4
  const createLimitedAssetSourceSelectorDefinition = {