@exodus/solana-plugin 1.15.2 → 1.16.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.16.1](https://github.com/ExodusMovement/assets/compare/@exodus/solana-plugin@1.16.0...@exodus/solana-plugin@1.16.1) (2024-12-04)
7
+
8
+ **Note:** Version bump only for package @exodus/solana-plugin
9
+
10
+
11
+
12
+
13
+
14
+ ## [1.16.0](https://github.com/ExodusMovement/assets/compare/@exodus/solana-plugin@1.15.2...@exodus/solana-plugin@1.16.0) (2024-11-29)
15
+
16
+
17
+ ### Features
18
+
19
+
20
+ * feat: avoid checking a balance (#4597)
21
+
22
+
23
+
6
24
  ## [1.15.2](https://github.com/ExodusMovement/assets/compare/@exodus/solana-plugin@1.15.1...@exodus/solana-plugin@1.15.2) (2024-10-30)
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.2",
4
- "description": "Exodus internal Solana asset plugin",
3
+ "version": "1.16.1",
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.7.1",
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": "7dda4dfeb25b9a469ee8018f31341ac804c38ab7"
43
+ "gitHead": "94b6b798534f6b0587f6940248ab612513bfc34f"
44
44
  }
@@ -163,6 +163,7 @@ export const createSolanaAssetFactory =
163
163
  .map(createToken),
164
164
  getUnstakingFee,
165
165
  hasFeature: (feature) => !!features[feature], // @deprecated use api.features instead
166
+ privateKeyEncodingDefinition: { encoding: 'base58', data: 'priv|pub' },
166
167
  sendTx,
167
168
  signTx: ({ unsignedTx, privateKey, signer }) =>
168
169
  signer
@@ -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({