@exodus/solana-plugin 1.15.0 → 1.15.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,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.15.1](https://github.com/ExodusMovement/assets/compare/@exodus/solana-plugin@1.15.0...@exodus/solana-plugin@1.15.1) (2024-10-23)
7
+
8
+ **Note:** Version bump only for package @exodus/solana-plugin
9
+
10
+
11
+
12
+
13
+
6
14
  ## [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
15
 
8
16
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/solana-plugin",
3
- "version": "1.15.0",
3
+ "version": "1.15.1",
4
4
  "description": "Exodus internal Solana asset plugin",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
@@ -40,5 +40,5 @@
40
40
  "type": "git",
41
41
  "url": "git+https://github.com/ExodusMovement/assets.git"
42
42
  },
43
- "gitHead": "b41d4471ed86010b8eed3e22af9503f01e5ff595"
43
+ "gitHead": "6e24fd14809228179aa018e351df40d61c22ae3b"
44
44
  }
@@ -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,