@exodus/solana-plugin 1.15.0 → 1.15.2
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 +16 -0
- package/package.json +3 -3
- package/src/create-asset.js +0 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,22 @@
|
|
|
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.15.2](https://github.com/ExodusMovement/assets/compare/@exodus/solana-plugin@1.15.1...@exodus/solana-plugin@1.15.2) (2024-10-30)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @exodus/solana-plugin
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [1.15.1](https://github.com/ExodusMovement/assets/compare/@exodus/solana-plugin@1.15.0...@exodus/solana-plugin@1.15.1) (2024-10-23)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @exodus/solana-plugin
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
## [1.15.0](https://github.com/ExodusMovement/assets/compare/@exodus/solana-plugin@1.14.3...@exodus/solana-plugin@1.15.0) (2024-09-11)
|
|
7
23
|
|
|
8
24
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@exodus/solana-plugin",
|
|
3
|
-
"version": "1.15.
|
|
3
|
+
"version": "1.15.2",
|
|
4
4
|
"description": "Exodus internal Solana asset plugin",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "src/index.js",
|
|
@@ -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.
|
|
27
|
+
"@exodus/solana-lib": "^3.7.1",
|
|
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": "
|
|
43
|
+
"gitHead": "7dda4dfeb25b9a469ee8018f31341ac804c38ab7"
|
|
44
44
|
}
|
package/src/create-asset.js
CHANGED
|
@@ -7,7 +7,6 @@ import {
|
|
|
7
7
|
getUnstakingFee,
|
|
8
8
|
isSolanaRewardsActivityTx,
|
|
9
9
|
SolanaAutoWithdrawMonitor,
|
|
10
|
-
SolanaFeeMonitor,
|
|
11
10
|
SolanaMonitor,
|
|
12
11
|
} from '@exodus/solana-api'
|
|
13
12
|
import {
|
|
@@ -133,7 +132,6 @@ export const createSolanaAssetFactory =
|
|
|
133
132
|
addressHasHistory: (...args) => serverApi.getAccountInfo(...args).then((acc) => !!acc),
|
|
134
133
|
broadcastTx: (...args) => serverApi.broadcastTransaction(...args),
|
|
135
134
|
createAccountState: () => SolanaAccountState,
|
|
136
|
-
createFeeMonitor: (args) => new SolanaFeeMonitor({ ...args, api: serverApi }),
|
|
137
135
|
createHistoryMonitor: (args) =>
|
|
138
136
|
new SolanaMonitor({
|
|
139
137
|
assetClientInterface,
|