@exodus/solana-api 3.14.2 → 3.14.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,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.14.3](https://github.com/ExodusMovement/assets/compare/@exodus/solana-api@3.14.2...@exodus/solana-api@3.14.3) (2025-03-14)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+
12
+ * fix(SOL): set amount as lamports for internal multi send (#5253)
13
+
14
+
15
+
6
16
  ## [3.14.2](https://github.com/ExodusMovement/assets/compare/@exodus/solana-api@3.14.1...@exodus/solana-api@3.14.2) (2025-03-12)
7
17
 
8
18
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/solana-api",
3
- "version": "3.14.2",
3
+ "version": "3.14.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",
@@ -46,7 +46,7 @@
46
46
  "@exodus/assets-testing": "^1.0.0",
47
47
  "@exodus/solana-web3.js": "^1.63.1-exodus.9-rc3"
48
48
  },
49
- "gitHead": "8ceb21b35e59dd7c7d4db2035ccba873d889464a",
49
+ "gitHead": "637668ee215b0aacc959fcac184bf8007e4e9e33",
50
50
  "bugs": {
51
51
  "url": "https://github.com/ExodusMovement/assets/issues?q=is%3Aissue+is%3Aopen+label%3Asolana-api"
52
52
  },
package/src/api.js CHANGED
@@ -487,7 +487,7 @@ export class Api {
487
487
  sent: [
488
488
  {
489
489
  address: solanaTransferTx.to,
490
- amount: solanaTransferTx.amount,
490
+ amount: lamports,
491
491
  },
492
492
  ],
493
493
  }
@@ -495,7 +495,7 @@ export class Api {
495
495
  }
496
496
 
497
497
  solanaTransferTx.to.push(destination)
498
- solanaTransferTx.data.sent.push({ address: destination, amount })
498
+ solanaTransferTx.data.sent.push({ address: destination, amount: lamports })
499
499
  } else {
500
500
  solanaTransferTx = {
501
501
  source,
@@ -508,7 +508,7 @@ export class Api {
508
508
  sent: [
509
509
  {
510
510
  address: destination,
511
- amount,
511
+ amount: lamports,
512
512
  },
513
513
  ],
514
514
  },