@exodus/solana-plugin 1.15.1 → 1.16.0

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.16.0](https://github.com/ExodusMovement/assets/compare/@exodus/solana-plugin@1.15.2...@exodus/solana-plugin@1.16.0) (2024-11-29)
7
+
8
+
9
+ ### Features
10
+
11
+
12
+ * feat: avoid checking a balance (#4597)
13
+
14
+
15
+
16
+ ## [1.15.2](https://github.com/ExodusMovement/assets/compare/@exodus/solana-plugin@1.15.1...@exodus/solana-plugin@1.15.2) (2024-10-30)
17
+
18
+ **Note:** Version bump only for package @exodus/solana-plugin
19
+
20
+
21
+
22
+
23
+
6
24
  ## [1.15.1](https://github.com/ExodusMovement/assets/compare/@exodus/solana-plugin@1.15.0...@exodus/solana-plugin@1.15.1) (2024-10-23)
7
25
 
8
26
  **Note:** Version bump only for package @exodus/solana-plugin
package/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # @exodus/solana-plugin
2
+
3
+ Solana plugin for Exodus SDK powered wallets. See [Asset Packages](../../docs/asset-packages.md) for more detail on this package's role.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@exodus/solana-plugin",
3
- "version": "1.15.1",
4
- "description": "Exodus internal Solana asset plugin",
3
+ "version": "1.16.0",
4
+ "description": "Solana plugin for Exodus SDK powered wallets.",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
7
7
  "files": [
@@ -24,7 +24,7 @@
24
24
  "@exodus/assets": "^11.0.0",
25
25
  "@exodus/bip44-constants": "^195.0.0",
26
26
  "@exodus/solana-api": "^3.11.0",
27
- "@exodus/solana-lib": "^3.6.0",
27
+ "@exodus/solana-lib": "^3.9.0",
28
28
  "@exodus/solana-meta": "^2.0.0",
29
29
  "@exodus/web3-solana-utils": "^2.2.5",
30
30
  "minimalistic-assert": "^1.0.1",
@@ -40,5 +40,5 @@
40
40
  "type": "git",
41
41
  "url": "git+https://github.com/ExodusMovement/assets.git"
42
42
  },
43
- "gitHead": "6e24fd14809228179aa018e351df40d61c22ae3b"
43
+ "gitHead": "a5ab26da60a57ffb982a7001843af9cf06f899f8"
44
44
  }
@@ -16,7 +16,7 @@ export const createSimulateTransactions = ({ asset, assetClientInterface, prepar
16
16
  if (unsignedTxs) {
17
17
  // Converts to web3.js VersionedTransaction class instances.
18
18
  const transactions = unsignedTxs.map((unsignedTx) => {
19
- return prepareForSigning(unsignedTx)
19
+ return prepareForSigning(unsignedTx, { checkBalances: false })
20
20
  })
21
21
 
22
22
  return simulateSolanaTransactions({