@exodus/assets-feature 8.1.0 → 8.1.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,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
+ ## [8.1.2](https://github.com/ExodusMovement/exodus-hydra/compare/@exodus/assets-feature@8.1.1...@exodus/assets-feature@8.1.2) (2025-05-30)
7
+
8
+ **Note:** Version bump only for package @exodus/assets-feature
9
+
10
+ ## [8.1.1](https://github.com/ExodusMovement/exodus-hydra/compare/@exodus/assets-feature@8.1.0...@exodus/assets-feature@8.1.1) (2025-05-20)
11
+
12
+ ### Bug Fixes
13
+
14
+ - fix: do not remove demoted token with unchanged name (#12588)
15
+
6
16
  ## [8.1.0](https://github.com/ExodusMovement/exodus-hydra/compare/@exodus/assets-feature@8.0.0...@exodus/assets-feature@8.1.0) (2025-05-19)
7
17
 
8
18
  ### Features
@@ -603,7 +603,10 @@ export class AssetsModule {
603
603
 
604
604
  const tokens = await this.#storage.get(this.#storageDataKey)
605
605
  const normalizedTokens = mapValues(tokens, normalizeToken)
606
- return pickBy(normalizedTokens, ({ name }) => !this.#invalidTokenNames.has(name))
606
+ return pickBy(
607
+ normalizedTokens,
608
+ ({ name }) => !this.#invalidTokenNames.has(name) || name === oldToNewStyleTokenNames[name]
609
+ )
607
610
  }
608
611
 
609
612
  #updateStoredCustomTokens = async (tokens) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/assets-feature",
3
- "version": "8.1.0",
3
+ "version": "8.1.2",
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",
@@ -67,7 +67,7 @@
67
67
  "@exodus/fusion-local": "^2.1.0",
68
68
  "@exodus/keychain": "^7.3.0",
69
69
  "@exodus/logger": "^1.2.3",
70
- "@exodus/models": "^12.12.0",
70
+ "@exodus/models": "^12.12.1",
71
71
  "@exodus/osmosis-plugin": "^1.3.3",
72
72
  "@exodus/public-key-provider": "^4.1.1",
73
73
  "@exodus/redux-dependency-injection": "^4.1.1",
@@ -82,5 +82,5 @@
82
82
  "publishConfig": {
83
83
  "access": "public"
84
84
  },
85
- "gitHead": "c0269d54d37bcceefb29cd77f806146438b71e68"
85
+ "gitHead": "e757127fda298e8694cf7e696c1dbf79d561401d"
86
86
  }