@exodus/solana-plugin 1.21.1 → 1.23.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,34 @@
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.23.0](https://github.com/ExodusMovement/assets/compare/@exodus/solana-plugin@1.22.0...@exodus/solana-plugin@1.23.0) (2025-06-11)
7
+
8
+
9
+ ### Features
10
+
11
+
12
+ * feat(solana): implement unconfirmedSent/unconfirmedReceived in solana balances (#5802)
13
+
14
+
15
+ ### Bug Fixes
16
+
17
+
18
+ * fix: SOL amount NaN case (#5713)
19
+
20
+ * fix: SOL from/to addresses for token txs (#5751)
21
+
22
+
23
+
24
+ ## [1.22.0](https://github.com/ExodusMovement/assets/compare/@exodus/solana-plugin@1.21.1...@exodus/solana-plugin@1.22.0) (2025-05-15)
25
+
26
+
27
+ ### Features
28
+
29
+
30
+ * feat(solana): allow overridding getBalances for custom tokens (#5644)
31
+
32
+
33
+
6
34
  ## [1.21.1](https://github.com/ExodusMovement/assets/compare/@exodus/solana-plugin@1.21.0...@exodus/solana-plugin@1.21.1) (2025-05-05)
7
35
 
8
36
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/solana-plugin",
3
- "version": "1.21.1",
3
+ "version": "1.23.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.18.0",
26
+ "@exodus/solana-api": "^3.20.0",
27
27
  "@exodus/solana-lib": "^3.11.2",
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": "aeb2c9fa295b25d05938640f32aa6f3d318c6922"
43
+ "gitHead": "a11096f37c71032ca704876059c11b2e55cc592a"
44
44
  }
@@ -98,7 +98,7 @@ export const createSolanaAssetFactory =
98
98
  name,
99
99
  api: {
100
100
  features: {},
101
- getBalances,
101
+ getBalances: (...args) => api.getBalances(...args),
102
102
  },
103
103
  })
104
104