@exodus/assets-feature 7.2.0 → 7.2.1
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 +6 -0
- package/module/assets-module.js +5 -1
- package/package.json +2 -2
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
|
+
## [7.2.1](https://github.com/ExodusMovement/exodus-hydra/compare/@exodus/assets-feature@7.2.0...@exodus/assets-feature@7.2.1) (2025-04-02)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- fix: provide lifecycleStatus when loading icons (#11931)
|
|
11
|
+
|
|
6
12
|
## [7.2.0](https://github.com/ExodusMovement/exodus-hydra/compare/@exodus/assets-feature@7.1.0...@exodus/assets-feature@7.2.0) (2025-04-01)
|
|
7
13
|
|
|
8
14
|
### Features
|
package/module/assets-module.js
CHANGED
|
@@ -495,7 +495,11 @@ export class AssetsModule {
|
|
|
495
495
|
async (assetName) => {
|
|
496
496
|
const tokenNames = [assetName]
|
|
497
497
|
|
|
498
|
-
const tokens = await this.#fetch(
|
|
498
|
+
const tokens = await this.#fetch(
|
|
499
|
+
'tokens',
|
|
500
|
+
{ tokenNames, lifecycleStatus: ['c', 'v', 'u'] },
|
|
501
|
+
'tokens'
|
|
502
|
+
)
|
|
499
503
|
const token = tokens[0]
|
|
500
504
|
if (token?.icon) {
|
|
501
505
|
return this.#iconsStorage.unzipIcon(token.icon)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@exodus/assets-feature",
|
|
3
|
-
"version": "7.2.
|
|
3
|
+
"version": "7.2.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "This Exodus SDK feature provides access to instances of all blockchain asset adapters supported by the wallet, and enables you to search for and add custom tokens at runtime.",
|
|
6
6
|
"type": "module",
|
|
@@ -78,5 +78,5 @@
|
|
|
78
78
|
"publishConfig": {
|
|
79
79
|
"access": "public"
|
|
80
80
|
},
|
|
81
|
-
"gitHead": "
|
|
81
|
+
"gitHead": "560e85813d18b278485be99bc9905b6e1e06d507"
|
|
82
82
|
}
|