@exodus/solana-plugin 1.32.4 → 1.34.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,26 @@
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.34.0](https://github.com/ExodusMovement/assets/compare/@exodus/solana-plugin@1.33.0...@exodus/solana-plugin@1.34.0) (2026-03-09)
7
+
8
+
9
+ ### Features
10
+
11
+
12
+ * feat: add hasLostPermission api method to asset plugins (#7524)
13
+
14
+
15
+
16
+ ## [1.33.0](https://github.com/ExodusMovement/assets/compare/@exodus/solana-plugin@1.32.4...@exodus/solana-plugin@1.33.0) (2026-03-05)
17
+
18
+
19
+ ### Features
20
+
21
+
22
+ * feat: add asset family utils (#7519)
23
+
24
+
25
+
6
26
  ## [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
27
 
8
28
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/solana-plugin",
3
- "version": "1.32.4",
3
+ "version": "1.34.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": "f27651709a0a2c70f3c0867afc543fcfa5cfd5c2"
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,
@@ -226,6 +227,7 @@ export const createSolanaAssetFactory =
226
227
  addressHasHistory: (...args) => defaultApi.addressHasHistory(...args),
227
228
  broadcastTx: (...args) => defaultApi.broadcastTransaction(...args),
228
229
  createAccountState: () => SolanaAccountState,
230
+ hasLostPermission: ({ accountState }) => Boolean(accountState?.ownerChanged),
229
231
  createHistoryMonitor,
230
232
  createToken: (tokenDef) =>
231
233
  tokenDef.isBuiltIn ? createToken(tokenDef) : createCustomToken(tokenDef),