@exodus/solana-plugin 1.39.0 → 1.39.1

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,24 @@
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
+ ## [1.39.1](https://github.com/ExodusMovement/assets/compare/@exodus/solana-plugin@1.39.0...@exodus/solana-plugin@1.39.1) (2026-05-27)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+
12
+ * fix: add SOL compatibility mode test (#8132)
13
+
14
+ * fix: SOL token integration test (#8077)
15
+
16
+
17
+ ### Performance
18
+
19
+
20
+ * perf: lazy asset factories (#8083)
21
+
22
+
23
+
6
24
  ## [1.39.0](https://github.com/ExodusMovement/assets/compare/@exodus/solana-plugin@1.38.0...@exodus/solana-plugin@1.39.0) (2026-05-13)
7
25
 
8
26
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/solana-plugin",
3
- "version": "1.39.0",
3
+ "version": "1.39.1",
4
4
  "description": "Solana plugin for Exodus SDK powered wallets.",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
@@ -24,6 +24,7 @@
24
24
  "dependencies": {
25
25
  "@exodus/asset-lib": "^5.0.0",
26
26
  "@exodus/assets": "^11.8.0",
27
+ "@exodus/basic-utils": "^5.1.0",
27
28
  "@exodus/bip44-constants": "^195.0.0",
28
29
  "@exodus/i18n-dummy": "^1.0.0",
29
30
  "@exodus/send-validation-model": "^1.0.0",
@@ -44,5 +45,5 @@
44
45
  "type": "git",
45
46
  "url": "git+https://github.com/ExodusMovement/assets.git"
46
47
  },
47
- "gitHead": "bfe4518bed8e01ef4f874886571dad00012f6b2b"
48
+ "gitHead": "31ef78abe48afdebd23769ff81a4d7e427b36406"
48
49
  }
@@ -1,4 +1,5 @@
1
1
  import { ASSET_FAMILY, connectAssetsList } from '@exodus/assets'
2
+ import { lazyFn } from '@exodus/basic-utils'
2
3
  import bip44Constants from '@exodus/bip44-constants/by-ticker.js'
3
4
  import {
4
5
  Api,
@@ -111,11 +112,9 @@ export const createSolanaAssetFactory =
111
112
  })
112
113
  }
113
114
 
114
- const createTx = createTxFactory({
115
- assetClientInterface,
116
- api: defaultApi,
117
- feePayerClient,
118
- })
115
+ const createTx = lazyFn(() =>
116
+ createTxFactory({ assetClientInterface, api: defaultApi, feePayerClient })
117
+ )
119
118
 
120
119
  const sendTx = createAndBroadcastTXFactory({
121
120
  api: defaultApi,