@exodus/solana-plugin 1.12.3 → 1.12.4
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 +8 -0
- package/package.json +3 -3
- package/src/create-asset.js +3 -0
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
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.12.4](https://github.com/ExodusMovement/assets/compare/@exodus/solana-plugin@1.12.3...@exodus/solana-plugin@1.12.4) (2024-06-27)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @exodus/solana-plugin
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [1.12.3](https://github.com/ExodusMovement/assets/compare/@exodus/solana-plugin@1.12.2...@exodus/solana-plugin@1.12.3) (2024-06-24)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @exodus/solana-plugin
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@exodus/solana-plugin",
|
|
3
|
-
"version": "1.12.
|
|
3
|
+
"version": "1.12.4",
|
|
4
4
|
"description": "Exodus internal Solana asset plugin",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"files": [
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"@exodus/assets": "^9.0.1",
|
|
24
24
|
"@exodus/bip44-constants": "^195.0.0",
|
|
25
|
-
"@exodus/solana-api": "^3.8.
|
|
25
|
+
"@exodus/solana-api": "^3.8.3",
|
|
26
26
|
"@exodus/solana-lib": "^3.5.0",
|
|
27
27
|
"@exodus/solana-meta": "^1.0.7",
|
|
28
28
|
"@exodus/web3-solana-utils": "^2.0.0",
|
|
@@ -39,5 +39,5 @@
|
|
|
39
39
|
"type": "git",
|
|
40
40
|
"url": "git+https://github.com/ExodusMovement/assets.git"
|
|
41
41
|
},
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "8a78b9595437fd8fecc5b08916a98584eabde577"
|
|
43
43
|
}
|
package/src/create-asset.js
CHANGED
|
@@ -20,6 +20,7 @@ import {
|
|
|
20
20
|
getUnstakingFee,
|
|
21
21
|
SolanaMonitor,
|
|
22
22
|
SolanaFeeMonitor,
|
|
23
|
+
SolanaAutoWithdrawMonitor,
|
|
23
24
|
createAccountState,
|
|
24
25
|
createAndBroadcastTXFactory,
|
|
25
26
|
} from '@exodus/solana-api'
|
|
@@ -205,6 +206,8 @@ export const createSolanaAssetFactory =
|
|
|
205
206
|
accountReserve,
|
|
206
207
|
lowBalance,
|
|
207
208
|
MIN_STAKING_AMOUNT,
|
|
209
|
+
createAutoWithdrawMonitor: (args) =>
|
|
210
|
+
new SolanaAutoWithdrawMonitor({ ...args, assetClientInterface }),
|
|
208
211
|
}
|
|
209
212
|
|
|
210
213
|
return overrideCallback({ asset: fullAsset })
|