@exodus/solana-plugin 1.36.2 → 1.36.4

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,30 @@
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.36.4](https://github.com/ExodusMovement/assets/compare/@exodus/solana-plugin@1.36.3...@exodus/solana-plugin@1.36.4) (2026-04-04)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+
12
+ * fix: addressIsActive users tx history (#7708)
13
+
14
+ * fix: sponsored Solana token sends when CU simulation fails (#7707)
15
+
16
+
17
+
18
+ ## [1.36.3](https://github.com/ExodusMovement/assets/compare/@exodus/solana-plugin@1.36.2...@exodus/solana-plugin@1.36.3) (2026-03-27)
19
+
20
+
21
+ ### Bug Fixes
22
+
23
+
24
+ * fix: integration tests (#7673)
25
+
26
+ * fix: SOL send-validation displayTicker (#7683)
27
+
28
+
29
+
6
30
  ## [1.36.2](https://github.com/ExodusMovement/assets/compare/@exodus/solana-plugin@1.36.1...@exodus/solana-plugin@1.36.2) (2026-03-25)
7
31
 
8
32
  **Note:** Version bump only for package @exodus/solana-plugin
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/solana-plugin",
3
- "version": "1.36.2",
3
+ "version": "1.36.4",
4
4
  "description": "Solana plugin for Exodus SDK powered wallets.",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
@@ -27,9 +27,9 @@
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.30.4",
31
- "@exodus/solana-lib": "^3.20.1",
32
- "@exodus/solana-meta": "^2.3.1",
30
+ "@exodus/solana-api": "^3.30.9",
31
+ "@exodus/solana-lib": "^3.22.5",
32
+ "@exodus/solana-meta": "^2.9.0",
33
33
  "@exodus/web3-solana-utils": "^2.9.0",
34
34
  "minimalistic-assert": "^1.0.1",
35
35
  "ms": "^2.1.3"
@@ -44,5 +44,5 @@
44
44
  "type": "git",
45
45
  "url": "git+https://github.com/ExodusMovement/assets.git"
46
46
  },
47
- "gitHead": "49d472ae5c602ba68329227e0e0cd3a9b4568fba"
47
+ "gitHead": "a2cd3fbc02d07f1c3dc127be4d7896292d2dc967"
48
48
  }
@@ -183,8 +183,8 @@ export const createSolanaAssetFactory =
183
183
  const getFee = ({ asset, feeData }) => {
184
184
  const priorityFee = feeData.priorityFee ?? 0
185
185
  // NOTE: fee is bumped via remote config, eventually fee = feeData.fee + (priorityFee * unitsConsumed * feeData.computeUnitsMultiplier)
186
- const SOL_TRANSFER_CU = 450 // standard SOL transfer // HACK: solana needs to use getFeeAsync
187
- const SPL_TRANSFER_CU = 4944 // SPL transfer // HACK: solana needs to use getFeeAsync
186
+ const SOL_TRANSFER_CU = 450 // HACK: solana needs to use getFeeAsync
187
+ const SPL_TRANSFER_CU = 4944 // HACK: solana needs to use getFeeAsync
188
188
  const isToken = asset.name !== base.name
189
189
 
190
190
  const computeUnits = isToken ? SPL_TRANSFER_CU : SOL_TRANSFER_CU
@@ -148,7 +148,7 @@ const sendValidationsFactory = ({ api, assetName, assetClientInterface }) => {
148
148
 
149
149
  if (!remaining.isZero && remaining.lt(rentExemptAmount)) {
150
150
  return t(
151
- `You can either leave a zero balance, which will close your SOL account, or maintain a minimum balance of ${rentExemptAmount.toDefaultString()} ${asset.displayTicker} to keep it active.`
151
+ `You can either leave a zero balance, which will close your SOL account, or maintain a minimum balance of ${rentExemptAmount.toDefaultString()} ${asset.feeAsset.displayTicker} to keep it active.`
152
152
  )
153
153
  }
154
154
  },