@exodus/solana-plugin 1.32.4 → 1.33.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
+ ## [1.33.0](https://github.com/ExodusMovement/assets/compare/@exodus/solana-plugin@1.32.3...@exodus/solana-plugin@1.33.0) (2026-03-05)
7
+
8
+
9
+ ### Features
10
+
11
+
12
+ * feat: add asset family utils (#7519)
13
+
14
+
15
+
6
16
  ## [1.32.4](https://github.com/ExodusMovement/assets/compare/@exodus/solana-plugin@1.32.3...@exodus/solana-plugin@1.32.4) (2026-02-25)
7
17
 
8
18
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/solana-plugin",
3
- "version": "1.32.4",
3
+ "version": "1.33.0",
4
4
  "description": "Solana plugin for Exodus SDK powered wallets.",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
@@ -23,7 +23,7 @@
23
23
  },
24
24
  "dependencies": {
25
25
  "@exodus/asset-lib": "^5.0.0",
26
- "@exodus/assets": "^11.0.0",
26
+ "@exodus/assets": "^11.8.0",
27
27
  "@exodus/bip44-constants": "^195.0.0",
28
28
  "@exodus/i18n-dummy": "^1.0.0",
29
29
  "@exodus/send-validation-model": "^1.0.0",
@@ -44,5 +44,5 @@
44
44
  "type": "git",
45
45
  "url": "git+https://github.com/ExodusMovement/assets.git"
46
46
  },
47
- "gitHead": "234305491e03390578c75123b3f8d9f603e7c5de"
47
+ "gitHead": "42e1b61decefbb1dc8f34e041856520d3f367945"
48
48
  }
@@ -1,4 +1,4 @@
1
- import { connectAssetsList } from '@exodus/assets'
1
+ import { ASSET_FAMILY, connectAssetsList } from '@exodus/assets'
2
2
  import bip44Constants from '@exodus/bip44-constants/by-ticker.js'
3
3
  import {
4
4
  Api,
@@ -139,7 +139,7 @@ export const createSolanaAssetFactory =
139
139
  mintAddress,
140
140
  name,
141
141
  api: {
142
- features: {},
142
+ features: { family: ASSET_FAMILY.SOLANA },
143
143
  getBalances: (...args) => api.getBalances(...args),
144
144
  },
145
145
  })
@@ -159,6 +159,7 @@ export const createSolanaAssetFactory =
159
159
  const features = {
160
160
  accountState: true,
161
161
  customTokens: base.name === 'solana',
162
+ family: ASSET_FAMILY.SOLANA,
162
163
  feeMonitor: false,
163
164
  feesApi: true,
164
165
  nfts: true,