@exodus/solana-plugin 1.29.2 → 1.29.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,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.29.4](https://github.com/ExodusMovement/assets/compare/@exodus/solana-plugin@1.29.3...@exodus/solana-plugin@1.29.4) (2025-12-29)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+
12
+ * fix: solana fee handling in createTxFactory (#7185)
13
+
14
+
15
+
16
+ ## [1.29.3](https://github.com/ExodusMovement/assets/compare/@exodus/solana-plugin@1.29.2...@exodus/solana-plugin@1.29.3) (2025-12-22)
17
+
18
+
19
+ ### Bug Fixes
20
+
21
+
22
+ * fix: bump dust threshold for parity with Pay (#7157)
23
+
24
+
25
+
6
26
  ## [1.29.2](https://github.com/ExodusMovement/assets/compare/@exodus/solana-plugin@1.29.1...@exodus/solana-plugin@1.29.2) (2025-12-19)
7
27
 
8
28
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/solana-plugin",
3
- "version": "1.29.2",
3
+ "version": "1.29.4",
4
4
  "description": "Solana plugin for Exodus SDK powered wallets.",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
@@ -27,7 +27,7 @@
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.26.0",
30
+ "@exodus/solana-api": "^3.26.5",
31
31
  "@exodus/solana-lib": "^3.18.3",
32
32
  "@exodus/solana-meta": "^2.3.1",
33
33
  "@exodus/web3-solana-utils": "^2.9.0",
@@ -44,5 +44,5 @@
44
44
  "type": "git",
45
45
  "url": "git+https://github.com/ExodusMovement/assets.git"
46
46
  },
47
- "gitHead": "eefb54e97a3e8146a79972c099396648d703fd9f"
47
+ "gitHead": "1d62bfbf0924dc4c6eb52f6af2417c220f7454cb"
48
48
  }
@@ -69,7 +69,7 @@ export const createSolanaAssetFactory =
69
69
  const { name: baseAssetName } = assetList.find((asset) => asset.baseAssetName === asset.name)
70
70
  const base = assets[baseAssetName]
71
71
 
72
- const smallTxAmount = base.currency.defaultUnit('0.00005')
72
+ const smallTxAmount = base.currency.defaultUnit('0.0001')
73
73
  const accountReserve = base.currency.defaultUnit(
74
74
  defaultAccountReserve ?? DEFAULT_ACCOUNT_RESERVE
75
75
  )