@exodus/solana-api 3.25.2 → 3.25.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,14 @@
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.25.3](https://github.com/ExodusMovement/assets/compare/@exodus/solana-api@3.25.1...@exodus/solana-api@3.25.3) (2025-11-13)
7
+
8
+ **Note:** Version bump only for package @exodus/solana-api
9
+
10
+
11
+
12
+
13
+
6
14
  ## [3.25.2](https://github.com/ExodusMovement/assets/compare/@exodus/solana-api@3.25.1...@exodus/solana-api@3.25.2) (2025-11-04)
7
15
 
8
16
  **Note:** Version bump only for package @exodus/solana-api
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/solana-api",
3
- "version": "3.25.2",
3
+ "version": "3.25.3",
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",
@@ -33,7 +33,7 @@
33
33
  "@exodus/fetch": "^1.7.3",
34
34
  "@exodus/models": "^12.0.1",
35
35
  "@exodus/simple-retry": "^0.0.6",
36
- "@exodus/solana-lib": "^3.15.2",
36
+ "@exodus/solana-lib": "^3.17.0",
37
37
  "@exodus/solana-meta": "^2.0.2",
38
38
  "@exodus/timer": "^1.1.1",
39
39
  "debug": "^4.1.1",
@@ -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": "c327da082bf6b55c270d4ab754c2abdc73e0a8de",
52
+ "gitHead": "6a39e3cdbf3bf1849d6d4aae8e935588332d92ac",
53
53
  "bugs": {
54
54
  "url": "https://github.com/ExodusMovement/assets/issues?q=is%3Aissue+is%3Aopen+label%3Asolana-api"
55
55
  },
@@ -286,9 +286,14 @@ export const extractTxLogData = async ({ unsignedTx, api }) => {
286
286
  }
287
287
  }
288
288
 
289
- const txData = await parseTxBuffer(unsignedTx.txData.transactionBuffer, api)
289
+ const transfers = await parseTxBuffer(unsignedTx.txData.transactionBuffer, api)
290
+ const { method, from, to, amount } = transfers[0] // Use first transfer only
291
+
290
292
  return {
291
- ...txData,
293
+ method,
294
+ from,
295
+ to,
296
+ amount,
292
297
  stakingParams: unsignedTx.txMeta.stakingParams,
293
298
  usedFeePayer: unsignedTx.txMeta.usedFeePayer,
294
299
  fee: unsignedTx.txMeta.fee,