@exodus/solana-plugin 1.32.0 → 1.32.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,24 @@
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.32.2](https://github.com/ExodusMovement/assets/compare/@exodus/solana-plugin@1.32.1...@exodus/solana-plugin@1.32.2) (2026-02-12)
7
+
8
+ **Note:** Version bump only for package @exodus/solana-plugin
9
+
10
+
11
+
12
+
13
+
14
+ ## [1.32.1](https://github.com/ExodusMovement/assets/compare/@exodus/solana-plugin@1.32.0...@exodus/solana-plugin@1.32.1) (2026-02-03)
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+
20
+ * fix: expose SOL isWhitelisted method (#7393)
21
+
22
+
23
+
6
24
  ## [1.32.0](https://github.com/ExodusMovement/assets/compare/@exodus/solana-plugin@1.31.0...@exodus/solana-plugin@1.32.0) (2026-02-03)
7
25
 
8
26
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/solana-plugin",
3
- "version": "1.32.0",
3
+ "version": "1.32.2",
4
4
  "description": "Solana plugin for Exodus SDK powered wallets.",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
@@ -27,7 +27,7 @@
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",
30
- "@exodus/solana-api": "^3.29.0",
30
+ "@exodus/solana-api": "^3.29.3",
31
31
  "@exodus/solana-lib": "^3.20.1",
32
32
  "@exodus/solana-meta": "^2.3.1",
33
33
  "@exodus/web3-solana-utils": "^2.9.0",
@@ -44,5 +44,5 @@
44
44
  "type": "git",
45
45
  "url": "git+https://github.com/ExodusMovement/assets.git"
46
46
  },
47
- "gitHead": "d844d6fa5e5eec3c7b279ee5317f676357eb82b2"
47
+ "gitHead": "970efdfe3384d11099816eb037bb46a77575dce4"
48
48
  }
@@ -12,6 +12,7 @@ import {
12
12
  getBalancesFactory,
13
13
  getFeeAsyncFactory,
14
14
  isSolanaRewardsActivityTx,
15
+ stakingApiFactory,
15
16
  WsApi,
16
17
  } from '@exodus/solana-api'
17
18
  import {
@@ -118,6 +119,12 @@ export const createSolanaAssetFactory =
118
119
  assetClientInterface,
119
120
  })
120
121
 
122
+ const stakingApi = stakingApiFactory({
123
+ asset: base,
124
+ createTx,
125
+ sendTx,
126
+ })
127
+
121
128
  const initAgentWallet = createInitAgentWalletFactory({
122
129
  api: defaultApi,
123
130
  assetClientInterface,
@@ -163,6 +170,7 @@ export const createSolanaAssetFactory =
163
170
  }
164
171
 
165
172
  const assetStakingApi = {
173
+ ...stakingApi,
166
174
  isStaking: ({ accountState }) => accountState.stakingInfo.isDelegating,
167
175
  }
168
176
 
@@ -168,7 +168,7 @@ const sendValidationsFactory = ({ api, assetName, assetClientInterface }) => {
168
168
  }
169
169
 
170
170
  if (
171
- !(await asset.baseAsset.api.isWhitelisted({
171
+ !(await asset.baseAsset.serverApi.isWhitelisted({
172
172
  address: destinationAddress,
173
173
  tokenMintAddress: EXOD_SHARES_MINT_ADDRESS,
174
174
  }))