@exodus/solana-plugin 1.24.4 → 1.24.6

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.24.6](https://github.com/ExodusMovement/assets/compare/@exodus/solana-plugin@1.24.5...@exodus/solana-plugin@1.24.6) (2025-09-29)
7
+
8
+ **Note:** Version bump only for package @exodus/solana-plugin
9
+
10
+
11
+
12
+
13
+
14
+ ## [1.24.5](https://github.com/ExodusMovement/assets/compare/@exodus/solana-plugin@1.24.4...@exodus/solana-plugin@1.24.5) (2025-09-18)
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+
20
+ * fix: SOL coinAmount for staking (regression) (#6476)
21
+
22
+
23
+
6
24
  ## [1.24.4](https://github.com/ExodusMovement/assets/compare/@exodus/solana-plugin@1.24.3...@exodus/solana-plugin@1.24.4) (2025-09-16)
7
25
 
8
26
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/solana-plugin",
3
- "version": "1.24.4",
3
+ "version": "1.24.6",
4
4
  "description": "Solana plugin for Exodus SDK powered wallets.",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
@@ -26,8 +26,8 @@
26
26
  "@exodus/bip44-constants": "^195.0.0",
27
27
  "@exodus/i18n-dummy": "^1.0.0",
28
28
  "@exodus/send-validation-model": "^1.0.0",
29
- "@exodus/solana-api": "^3.20.3",
30
- "@exodus/solana-lib": "^3.11.2",
29
+ "@exodus/solana-api": "^3.20.8",
30
+ "@exodus/solana-lib": "^3.12.1",
31
31
  "@exodus/solana-meta": "^2.3.1",
32
32
  "@exodus/web3-solana-utils": "^2.9.0",
33
33
  "minimalistic-assert": "^1.0.1",
@@ -43,5 +43,5 @@
43
43
  "type": "git",
44
44
  "url": "git+https://github.com/ExodusMovement/assets.git"
45
45
  },
46
- "gitHead": "90c85c31ff9bff8c11a0873592d4ed8184bd4145"
46
+ "gitHead": "bdbe86b58adda62d0ea7ef8cc8d4c633d3bd32be"
47
47
  }
@@ -71,7 +71,7 @@ const sendValidationsFactory = ({ api, assetName, assetClientInterface }) => {
71
71
  id: 'SOL_RENT_EXEMPT_AMOUNT',
72
72
  type: VALIDATION_TYPES.ERROR,
73
73
  shouldValidate: ({ asset, sendAmount }) => sendAmount,
74
- isValid: async ({ asset, destinationAddress, sendAmount, baseAssetBalance, feeAmount }) => {
74
+ isValid: async ({ asset, destinationAddress, sendAmount, baseAssetBalance, fees }) => {
75
75
  if (!destinationAddress || !sendAmount || sendAmount.isZero) {
76
76
  return true
77
77
  }
@@ -87,7 +87,7 @@ const sendValidationsFactory = ({ api, assetName, assetClientInterface }) => {
87
87
  } else {
88
88
  // sending token
89
89
  isEnoughForRent = baseAssetBalance
90
- .sub(feeAmount || asset.feeAsset.currency.ZERO)
90
+ .sub(fees?.fee || asset.feeAsset.currency.ZERO)
91
91
  .gte(rentExemptAmount)
92
92
  }
93
93