@exodus/solana-api 3.27.3 → 3.27.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,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
+ ## [3.27.4](https://github.com/ExodusMovement/assets/compare/@exodus/solana-api@3.27.3...@exodus/solana-api@3.27.4) (2026-01-15)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+
12
+ * fix: SOL unconfirmed withdrawable balance (#7274)
13
+
14
+
15
+
6
16
  ## [3.27.3](https://github.com/ExodusMovement/assets/compare/@exodus/solana-api@3.27.2...@exodus/solana-api@3.27.3) (2026-01-13)
7
17
 
8
18
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/solana-api",
3
- "version": "3.27.3",
3
+ "version": "3.27.4",
4
4
  "description": "Transaction monitors, fee monitors, RPC with the blockchain node, and other networking code for Solana",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
@@ -49,7 +49,7 @@
49
49
  "@exodus/assets-testing": "^1.0.0",
50
50
  "@exodus/solana-web3.js": "^1.63.1-exodus.9-rc3"
51
51
  },
52
- "gitHead": "ecc849a8b24d0d0f5518437dc58d3fb943a2a1cd",
52
+ "gitHead": "c617d7eefb871a0ee8f174cccc56c42c20203b01",
53
53
  "bugs": {
54
54
  "url": "https://github.com/ExodusMovement/assets/issues?q=is%3Aissue+is%3Aopen+label%3Asolana-api"
55
55
  },
@@ -113,6 +113,7 @@ const fixBalances = ({
113
113
  activating = activating.add(stakeAmount.abs())
114
114
  break
115
115
  case 'withdraw':
116
+ unconfirmedSent = unconfirmedSent.add(withdrawable)
116
117
  withdrawable = asset.currency.ZERO
117
118
  break
118
119
  case 'undelegate':