@exodus/solana-plugin 1.37.1 → 1.39.0
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 +20 -0
- package/package.json +3 -3
- package/src/create-asset.js +11 -1
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.39.0](https://github.com/ExodusMovement/assets/compare/@exodus/solana-plugin@1.38.0...@exodus/solana-plugin@1.39.0) (2026-05-13)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
* feat(solana): refresh fee-payer capabilities via fee monitor (#8065)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
## [1.38.0](https://github.com/ExodusMovement/assets/compare/@exodus/solana-plugin@1.37.1...@exodus/solana-plugin@1.38.0) (2026-05-12)
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
### Features
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
* feat(solana): gate fee payer by capabilities (#8044)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
6
26
|
## [1.37.1](https://github.com/ExodusMovement/assets/compare/@exodus/solana-plugin@1.37.0...@exodus/solana-plugin@1.37.1) (2026-05-01)
|
|
7
27
|
|
|
8
28
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@exodus/solana-plugin",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.39.0",
|
|
4
4
|
"description": "Solana plugin for Exodus SDK powered wallets.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "src/index.js",
|
|
@@ -27,7 +27,7 @@
|
|
|
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.
|
|
30
|
+
"@exodus/solana-api": "^3.34.0",
|
|
31
31
|
"@exodus/solana-lib": "^3.24.0",
|
|
32
32
|
"@exodus/solana-meta": "^2.9.0",
|
|
33
33
|
"@exodus/web3-solana-utils": "^2.9.0",
|
|
@@ -44,5 +44,5 @@
|
|
|
44
44
|
"type": "git",
|
|
45
45
|
"url": "git+https://github.com/ExodusMovement/assets.git"
|
|
46
46
|
},
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "bfe4518bed8e01ef4f874886571dad00012f6b2b"
|
|
48
48
|
}
|
package/src/create-asset.js
CHANGED
|
@@ -12,6 +12,7 @@ import {
|
|
|
12
12
|
getBalancesFactory,
|
|
13
13
|
getFeeAsyncFactory,
|
|
14
14
|
isSolanaRewardsActivityTx,
|
|
15
|
+
SolanaFeeMonitor,
|
|
15
16
|
stakingApiFactory,
|
|
16
17
|
WsApi,
|
|
17
18
|
} from '@exodus/solana-api'
|
|
@@ -169,7 +170,7 @@ export const createSolanaAssetFactory =
|
|
|
169
170
|
accountState: true,
|
|
170
171
|
customTokens: base.name === 'solana',
|
|
171
172
|
family: ASSET_FAMILY.SOLANA,
|
|
172
|
-
feeMonitor:
|
|
173
|
+
feeMonitor: true,
|
|
173
174
|
feesApi: true,
|
|
174
175
|
moveFunds: true,
|
|
175
176
|
nfts: true,
|
|
@@ -207,6 +208,14 @@ export const createSolanaAssetFactory =
|
|
|
207
208
|
|
|
208
209
|
const getFeeAsync = getFeeAsyncFactory({ assetClientInterface, createTx })
|
|
209
210
|
|
|
211
|
+
const createFeeMonitor = (args) =>
|
|
212
|
+
new SolanaFeeMonitor({
|
|
213
|
+
...args,
|
|
214
|
+
assetName: baseAssetName,
|
|
215
|
+
feePayerClient,
|
|
216
|
+
interval: feePayer.capabilitiesRefreshInterval,
|
|
217
|
+
})
|
|
218
|
+
|
|
210
219
|
const sendValidations = sendValidationsFactory({
|
|
211
220
|
api: defaultApi,
|
|
212
221
|
assetName: baseAssetName,
|
|
@@ -236,6 +245,7 @@ export const createSolanaAssetFactory =
|
|
|
236
245
|
addressHasHistory: (...args) => defaultApi.addressIsActive(...args),
|
|
237
246
|
broadcastTx: (...args) => defaultApi.broadcastTransaction(...args),
|
|
238
247
|
createAccountState: () => SolanaAccountState,
|
|
248
|
+
createFeeMonitor,
|
|
239
249
|
createHistoryMonitor,
|
|
240
250
|
createToken: (tokenDef) =>
|
|
241
251
|
tokenDef.isBuiltIn ? createToken(tokenDef) : createCustomToken(tokenDef),
|