@exodus/solana-plugin 1.19.0 → 1.20.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,16 @@
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.20.0](https://github.com/ExodusMovement/assets/compare/@exodus/solana-plugin@1.19.0...@exodus/solana-plugin@1.20.0) (2025-04-08)
7
+
8
+
9
+ ### Features
10
+
11
+
12
+ * feat: Solana rent except sender validation (#5394)
13
+
14
+
15
+
6
16
  ## [1.19.0](https://github.com/ExodusMovement/assets/compare/@exodus/solana-plugin@1.18.3...@exodus/solana-plugin@1.19.0) (2025-04-03)
7
17
 
8
18
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/solana-plugin",
3
- "version": "1.19.0",
3
+ "version": "1.20.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
  "dependencies": {
24
24
  "@exodus/assets": "^11.0.0",
25
25
  "@exodus/bip44-constants": "^195.0.0",
26
- "@exodus/solana-api": "^3.15.0",
26
+ "@exodus/solana-api": "^3.16.0",
27
27
  "@exodus/solana-lib": "^3.10.0",
28
28
  "@exodus/solana-meta": "^2.3.1",
29
29
  "@exodus/web3-solana-utils": "^2.9.0",
@@ -40,5 +40,5 @@
40
40
  "type": "git",
41
41
  "url": "git+https://github.com/ExodusMovement/assets.git"
42
42
  },
43
- "gitHead": "59c4d4a4a7404eb915e4fa722a2afe01d1556046"
43
+ "gitHead": "06bfa593f6ed1ccb1905a95ed09b151a5eabe93f"
44
44
  }
@@ -206,6 +206,7 @@ export const createSolanaAssetFactory =
206
206
  accountReserve,
207
207
  lowBalance,
208
208
  MIN_STAKING_AMOUNT,
209
+ serverApi,
209
210
  }
210
211
 
211
212
  return overrideCallback({
@@ -222,6 +223,5 @@ export const createSolanaAssetFactory =
222
223
  txsLimit,
223
224
  signWithSigner,
224
225
  },
225
- serverApi,
226
226
  })
227
227
  }