@exodus/solana-plugin 1.36.3 → 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,18 @@
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
+
6
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)
7
19
 
8
20
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/solana-plugin",
3
- "version": "1.36.3",
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": "07a8157aec179f656835db50568127788d4b91b6"
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