@exodus/solana-api 3.14.5 → 3.14.6

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.6](https://github.com/ExodusMovement/assets/compare/@exodus/solana-api@3.14.5...@exodus/solana-api@3.14.6) (2025-04-01)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+
12
+ * fix: SOL staking method param (#5362)
13
+
14
+
15
+
6
16
  ## [3.14.5](https://github.com/ExodusMovement/assets/compare/@exodus/solana-api@3.14.4...@exodus/solana-api@3.14.5) (2025-03-25)
7
17
 
8
18
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/solana-api",
3
- "version": "3.14.5",
3
+ "version": "3.14.6",
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": "9674a3923c06f4c88439e857e88ab5bc67a11891",
49
+ "gitHead": "310d0d34a574d1da978f862e42c481de1e57bade",
50
50
  "bugs": {
51
51
  "url": "https://github.com/ExodusMovement/assets/issues?q=is%3Aissue+is%3Aopen+label%3Asolana-api"
52
52
  },
@@ -18,7 +18,11 @@ export const createUnsignedTxForSend = async ({
18
18
  reference,
19
19
  memo,
20
20
  nft,
21
- /// staking
21
+ // token related
22
+ tokenStandard,
23
+ customMintAddress,
24
+ // staking
25
+ method,
22
26
  stakeAddresses,
23
27
  seed,
24
28
  pool,
@@ -36,9 +40,6 @@ export const createUnsignedTxForSend = async ({
36
40
  creators,
37
41
  // </MagicEden>
38
42
  }) => {
39
- let method
40
- let customMintAddress
41
- let tokenStandard
42
43
  let tokenParams = Object.create(null)
43
44
  const baseAsset = asset.baseAsset
44
45