@exodus/solana-plugin 1.18.2 → 1.18.3
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 +10 -0
- package/package.json +3 -3
- package/src/create-asset.js +0 -3
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
|
+
## [1.18.3](https://github.com/ExodusMovement/assets/compare/@exodus/solana-plugin@1.18.2...@exodus/solana-plugin@1.18.3) (2025-04-03)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
* fix: SOL staking method param (#5362)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
6
16
|
## [1.18.2](https://github.com/ExodusMovement/assets/compare/@exodus/solana-plugin@1.18.1...@exodus/solana-plugin@1.18.2) (2025-03-25)
|
|
7
17
|
|
|
8
18
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@exodus/solana-plugin",
|
|
3
|
-
"version": "1.18.
|
|
3
|
+
"version": "1.18.3",
|
|
4
4
|
"description": "Solana plugin for Exodus SDK powered wallets.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "src/index.js",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@exodus/assets": "^11.0.0",
|
|
25
25
|
"@exodus/bip44-constants": "^195.0.0",
|
|
26
|
-
"@exodus/solana-api": "^3.14.
|
|
26
|
+
"@exodus/solana-api": "^3.14.7",
|
|
27
27
|
"@exodus/solana-lib": "^3.9.4",
|
|
28
28
|
"@exodus/solana-meta": "^2.3.1",
|
|
29
29
|
"@exodus/web3-solana-utils": "^2.9.0",
|
|
@@ -40,5 +40,5 @@
|
|
|
40
40
|
"type": "git",
|
|
41
41
|
"url": "git+https://github.com/ExodusMovement/assets.git"
|
|
42
42
|
},
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "9b7dd58f7b4f5e4ba9e23e869dee7e26e5fe9499"
|
|
44
44
|
}
|
package/src/create-asset.js
CHANGED
|
@@ -7,7 +7,6 @@ import {
|
|
|
7
7
|
getFeeAsyncFactory,
|
|
8
8
|
getUnstakingFee,
|
|
9
9
|
isSolanaRewardsActivityTx,
|
|
10
|
-
SolanaAutoWithdrawMonitor,
|
|
11
10
|
SolanaMonitor,
|
|
12
11
|
} from '@exodus/solana-api'
|
|
13
12
|
import {
|
|
@@ -202,8 +201,6 @@ export const createSolanaAssetFactory =
|
|
|
202
201
|
accountReserve,
|
|
203
202
|
lowBalance,
|
|
204
203
|
MIN_STAKING_AMOUNT,
|
|
205
|
-
createAutoWithdrawMonitor: (args) =>
|
|
206
|
-
new SolanaAutoWithdrawMonitor({ ...args, assetClientInterface }),
|
|
207
204
|
}
|
|
208
205
|
|
|
209
206
|
return overrideCallback({
|