@exodus/solana-plugin 1.21.0 → 1.22.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,26 @@
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.22.0](https://github.com/ExodusMovement/assets/compare/@exodus/solana-plugin@1.21.1...@exodus/solana-plugin@1.22.0) (2025-05-15)
7
+
8
+
9
+ ### Features
10
+
11
+
12
+ * feat(solana): allow overridding getBalances for custom tokens (#5644)
13
+
14
+
15
+
16
+ ## [1.21.1](https://github.com/ExodusMovement/assets/compare/@exodus/solana-plugin@1.21.0...@exodus/solana-plugin@1.21.1) (2025-05-05)
17
+
18
+
19
+ ### Bug Fixes
20
+
21
+
22
+ * fix: SOL reserve and units consumed (#5540)
23
+
24
+
25
+
6
26
  ## [1.21.0](https://github.com/ExodusMovement/assets/compare/@exodus/solana-plugin@1.20.1...@exodus/solana-plugin@1.21.0) (2025-05-01)
7
27
 
8
28
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/solana-plugin",
3
- "version": "1.21.0",
3
+ "version": "1.22.0",
4
4
  "description": "Solana plugin for Exodus SDK powered wallets.",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
@@ -24,7 +24,7 @@
24
24
  "@exodus/assets": "^11.0.0",
25
25
  "@exodus/bip44-constants": "^195.0.0",
26
26
  "@exodus/solana-api": "^3.18.0",
27
- "@exodus/solana-lib": "^3.11.1",
27
+ "@exodus/solana-lib": "^3.11.2",
28
28
  "@exodus/solana-meta": "^2.3.1",
29
29
  "@exodus/web3-solana-utils": "^2.9.0",
30
30
  "minimalistic-assert": "^1.0.1",
@@ -40,5 +40,5 @@
40
40
  "type": "git",
41
41
  "url": "git+https://github.com/ExodusMovement/assets.git"
42
42
  },
43
- "gitHead": "74fe0904cd863e2674e4c2e705a2e8624a8a92be"
43
+ "gitHead": "568eea37d6e849d3e904e8781d15b1f447ab33cb"
44
44
  }
@@ -26,7 +26,7 @@ import ms from 'ms'
26
26
  import { createGetBalanceForAddress } from './get-balance-for-address.js'
27
27
  import { createWeb3API } from './web3/index.js'
28
28
 
29
- const DEFAULT_ACCOUNT_RESERVE = 0.01
29
+ const DEFAULT_ACCOUNT_RESERVE = 0
30
30
  const DEFAULT_LOW_BALANCE = 0.01
31
31
  const DEFAULT_MIN_STAKING_AMOUNT = 0.01
32
32
 
@@ -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