@exodus/solana-api 3.30.11 → 3.30.12

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.30.12](https://github.com/ExodusMovement/assets/compare/@exodus/solana-api@3.30.10...@exodus/solana-api@3.30.12) (2026-04-17)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+
12
+ * fix(solana-api): use sender-only rent check for Solana undelegate/withdraw (#7797)
13
+
14
+
15
+
6
16
  ## [3.30.11](https://github.com/ExodusMovement/assets/compare/@exodus/solana-api@3.30.10...@exodus/solana-api@3.30.11) (2026-04-14)
7
17
 
8
18
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/solana-api",
3
- "version": "3.30.11",
3
+ "version": "3.30.12",
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": "a768579908694286d0f969b52412bb09eb0c6d3c",
52
+ "gitHead": "b9d3ed1f39f0337b6be02ef90b37e0646ba9c384",
53
53
  "bugs": {
54
54
  "url": "https://github.com/ExodusMovement/assets/issues?q=is%3Aissue+is%3Aopen+label%3Asolana-api"
55
55
  },
@@ -350,7 +350,14 @@ export const createTxFactory = ({ assetClientInterface, api, feePayerClient }) =
350
350
  }
351
351
 
352
352
  export const extractTxLogData = async ({ unsignedTx, api }) => {
353
- if (!unsignedTx.txData.transactionBuffer) {
353
+ const hasExplicitTxLogData = ['method', 'from', 'to', 'amount'].every(
354
+ (field) => unsignedTx.txData[field] != null
355
+ )
356
+
357
+ if (
358
+ (unsignedTx.txMeta.preferExplicitTxLogFields && hasExplicitTxLogData) ||
359
+ !unsignedTx.txData.transactionBuffer
360
+ ) {
354
361
  return {
355
362
  method: unsignedTx.txData.method,
356
363
  from: unsignedTx.txData.from,
package/src/fee-payer.js CHANGED
@@ -165,12 +165,20 @@ export const maybeAddFeePayerWithAuth = async ({ unsignedTx, feePayerClient }) =
165
165
  const sponsoredTransaction = deserializeTransaction(newTransactionBuffer)
166
166
  verifyOnlyFeePayerChanged(unsignedTxVersionedTransaction, sponsoredTransaction)
167
167
 
168
+ // For Jupiter-style swaps, `parseTxBuffer` cannot summarize the swap instructions
169
+ // from the serialized transaction buffer. In that case, allow downstream tx-log
170
+ // generation to use the explicit tx-log fields as a fallback for display only;
171
+ // the verified transaction buffer remains the source of truth.
172
+ const preferExplicitTxLogFields = unsignedTx.txData.method === 'swap'
173
+
168
174
  unsignedTxWithFeePayer = {
169
175
  txData: {
176
+ ...unsignedTx.txData,
170
177
  transactionBuffer: newTransactionBuffer,
171
178
  },
172
179
  txMeta: {
173
180
  ...unsignedTx.txMeta,
181
+ ...(preferExplicitTxLogFields && { preferExplicitTxLogFields: true }),
174
182
  feePayerPublicKey: result.feePayerPublicKey,
175
183
  sponsorshipRequestId: result.requestId,
176
184
  estimatedSponsorCost: result.estimatedCost,