@exodus/available-assets 5.2.0 → 6.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
|
+
## [6.0.0](https://github.com/ExodusMovement/exodus-hydra/compare/@exodus/available-assets@5.2.0...@exodus/available-assets@6.0.0) (2023-09-27)
|
|
7
|
+
|
|
8
|
+
### ⚠ BREAKING CHANGES
|
|
9
|
+
|
|
10
|
+
- selector name (#4247)
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
- selector name ([#4247](https://github.com/ExodusMovement/exodus-hydra/issues/4247)) ([c611677](https://github.com/ExodusMovement/exodus-hydra/commit/c6116775c805f64df432a37afd251c0420e09608))
|
|
15
|
+
|
|
6
16
|
## [5.2.0](https://github.com/ExodusMovement/exodus-hydra/compare/@exodus/available-assets@5.1.1...@exodus/available-assets@5.2.0) (2023-09-25)
|
|
7
17
|
|
|
8
18
|
### Features
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@exodus/available-assets",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "6.0.0",
|
|
4
4
|
"description": "Tracks supported/available assets, i.e. assets that the user can potentially enable via the UI",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"author": "Exodus Movement Inc.",
|
|
@@ -49,5 +49,5 @@
|
|
|
49
49
|
"jest-when": "^3.6.0",
|
|
50
50
|
"redux": "^4.2.1"
|
|
51
51
|
},
|
|
52
|
-
"gitHead": "
|
|
52
|
+
"gitHead": "4877652bbc679f2073147e342610564f49ae97d1"
|
|
53
53
|
}
|
package/redux/selectors/{get-combined-children-names.js → create-combined-children-names.js}
RENAMED
|
@@ -5,10 +5,10 @@ const selectorFactory = (allAvailableAssetsSelector) =>
|
|
|
5
5
|
allAssetsSelector: allAvailableAssetsSelector,
|
|
6
6
|
})
|
|
7
7
|
|
|
8
|
-
const
|
|
9
|
-
id: '
|
|
8
|
+
const createCombinedChildrenNamesSelectorDefinition = {
|
|
9
|
+
id: 'createCombinedChildrenNames',
|
|
10
10
|
selectorFactory,
|
|
11
11
|
dependencies: [{ selector: 'all' }],
|
|
12
12
|
}
|
|
13
13
|
|
|
14
|
-
export default
|
|
14
|
+
export default createCombinedChildrenNamesSelectorDefinition
|
package/redux/selectors/index.js
CHANGED
|
@@ -2,7 +2,7 @@ import allSelectorDefinition from './all'
|
|
|
2
2
|
import allForNetworkSelectorDefinition from './all-for-network'
|
|
3
3
|
import allWithParentCombinedNetworkSelectorDefinition from './all-with-parent-combined-network'
|
|
4
4
|
import allWithoutParentCombinedNetworkSelectorDefinition from './all-without-parent-combined-network'
|
|
5
|
-
import
|
|
5
|
+
import createCombinedChildrenNamesSelectorDefinition from './create-combined-children-names'
|
|
6
6
|
import getCombinedFallbackSelectorDefinition from './get-combined-fallback'
|
|
7
7
|
import getHasAssetsOnOtherChainsSelectorDefinition from './get-has-assets-on-other-chains'
|
|
8
8
|
import getSelectorDefinition from './get'
|
|
@@ -14,7 +14,7 @@ export default [
|
|
|
14
14
|
allForNetworkSelectorDefinition,
|
|
15
15
|
allWithParentCombinedNetworkSelectorDefinition,
|
|
16
16
|
allWithoutParentCombinedNetworkSelectorDefinition,
|
|
17
|
-
|
|
17
|
+
createCombinedChildrenNamesSelectorDefinition,
|
|
18
18
|
getCombinedFallbackSelectorDefinition,
|
|
19
19
|
getHasAssetsOnOtherChainsSelectorDefinition,
|
|
20
20
|
getSelectorDefinition,
|