@exodus/solana-plugin 1.29.4 → 1.30.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,26 @@
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.30.1](https://github.com/ExodusMovement/assets/compare/@exodus/solana-plugin@1.30.0...@exodus/solana-plugin@1.30.1) (2026-01-08)
7
+
8
+ **Note:** Version bump only for package @exodus/solana-plugin
9
+
10
+
11
+
12
+
13
+
14
+ ## [1.30.0](https://github.com/ExodusMovement/assets/compare/@exodus/solana-plugin@1.29.4...@exodus/solana-plugin@1.30.0) (2026-01-08)
15
+
16
+
17
+ ### Features
18
+
19
+
20
+ * feat: filter SOL poisoning txs (#7212)
21
+
22
+ * feat: use checked token transfer instruction (#7219)
23
+
24
+
25
+
6
26
  ## [1.29.4](https://github.com/ExodusMovement/assets/compare/@exodus/solana-plugin@1.29.3...@exodus/solana-plugin@1.29.4) (2025-12-29)
7
27
 
8
28
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/solana-plugin",
3
- "version": "1.29.4",
3
+ "version": "1.30.1",
4
4
  "description": "Solana plugin for Exodus SDK powered wallets.",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
@@ -27,8 +27,8 @@
27
27
  "@exodus/bip44-constants": "^195.0.0",
28
28
  "@exodus/i18n-dummy": "^1.0.0",
29
29
  "@exodus/send-validation-model": "^1.0.0",
30
- "@exodus/solana-api": "^3.26.5",
31
- "@exodus/solana-lib": "^3.18.3",
30
+ "@exodus/solana-api": "^3.27.0",
31
+ "@exodus/solana-lib": "^3.19.1",
32
32
  "@exodus/solana-meta": "^2.3.1",
33
33
  "@exodus/web3-solana-utils": "^2.9.0",
34
34
  "minimalistic-assert": "^1.0.1",
@@ -44,5 +44,5 @@
44
44
  "type": "git",
45
45
  "url": "git+https://github.com/ExodusMovement/assets.git"
46
46
  },
47
- "gitHead": "1d62bfbf0924dc4c6eb52f6af2417c220f7454cb"
47
+ "gitHead": "99b6365c54f3b11fda999c2f89c82bdc354fc073"
48
48
  }
@@ -238,7 +238,7 @@ export const createSolanaAssetFactory =
238
238
  signer
239
239
  ? signUnsignedTxWithSigner(unsignedTx, signer)
240
240
  : signUnsignedTx(unsignedTx, privateKey),
241
- signHardware: createSignHardwareFactory({ getKeyIdentifier }),
241
+ signHardware: createSignHardwareFactory({ getKeyIdentifier, api: serverApi }),
242
242
  signMessage: ({ privateKey, signer, message }) =>
243
243
  signer
244
244
  ? signMessageWithSigner({ signer, message })