@exodus/solana-plugin 1.36.2 → 1.36.3

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,18 @@
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.36.3](https://github.com/ExodusMovement/assets/compare/@exodus/solana-plugin@1.36.2...@exodus/solana-plugin@1.36.3) (2026-03-27)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+
12
+ * fix: integration tests (#7673)
13
+
14
+ * fix: SOL send-validation displayTicker (#7683)
15
+
16
+
17
+
6
18
  ## [1.36.2](https://github.com/ExodusMovement/assets/compare/@exodus/solana-plugin@1.36.1...@exodus/solana-plugin@1.36.2) (2026-03-25)
7
19
 
8
20
  **Note:** Version bump only for package @exodus/solana-plugin
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/solana-plugin",
3
- "version": "1.36.2",
3
+ "version": "1.36.3",
4
4
  "description": "Solana plugin for Exodus SDK powered wallets.",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
@@ -44,5 +44,5 @@
44
44
  "type": "git",
45
45
  "url": "git+https://github.com/ExodusMovement/assets.git"
46
46
  },
47
- "gitHead": "49d472ae5c602ba68329227e0e0cd3a9b4568fba"
47
+ "gitHead": "07a8157aec179f656835db50568127788d4b91b6"
48
48
  }
@@ -148,7 +148,7 @@ const sendValidationsFactory = ({ api, assetName, assetClientInterface }) => {
148
148
 
149
149
  if (!remaining.isZero && remaining.lt(rentExemptAmount)) {
150
150
  return t(
151
- `You can either leave a zero balance, which will close your SOL account, or maintain a minimum balance of ${rentExemptAmount.toDefaultString()} ${asset.displayTicker} to keep it active.`
151
+ `You can either leave a zero balance, which will close your SOL account, or maintain a minimum balance of ${rentExemptAmount.toDefaultString()} ${asset.feeAsset.displayTicker} to keep it active.`
152
152
  )
153
153
  }
154
154
  },