@exodus/solana-plugin 1.32.2 → 1.32.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 +8 -0
- package/package.json +3 -3
- package/src/create-asset.js +6 -9
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.32.3](https://github.com/ExodusMovement/assets/compare/@exodus/solana-plugin@1.32.2...@exodus/solana-plugin@1.32.3) (2026-02-13)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @exodus/solana-plugin
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [1.32.2](https://github.com/ExodusMovement/assets/compare/@exodus/solana-plugin@1.32.1...@exodus/solana-plugin@1.32.2) (2026-02-12)
|
|
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.32.
|
|
3
|
+
"version": "1.32.3",
|
|
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.29.
|
|
30
|
+
"@exodus/solana-api": "^3.29.4",
|
|
31
31
|
"@exodus/solana-lib": "^3.20.1",
|
|
32
32
|
"@exodus/solana-meta": "^2.3.1",
|
|
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": "7f0ba4d0c14841809acd9d9365fbe1d38db3835e"
|
|
48
48
|
}
|
package/src/create-asset.js
CHANGED
|
@@ -120,9 +120,8 @@ export const createSolanaAssetFactory =
|
|
|
120
120
|
})
|
|
121
121
|
|
|
122
122
|
const stakingApi = stakingApiFactory({
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
sendTx,
|
|
123
|
+
assetName: baseAssetName,
|
|
124
|
+
assetClientInterface,
|
|
126
125
|
})
|
|
127
126
|
|
|
128
127
|
const initAgentWallet = createInitAgentWalletFactory({
|
|
@@ -203,11 +202,10 @@ export const createSolanaAssetFactory =
|
|
|
203
202
|
assetClientInterface,
|
|
204
203
|
})
|
|
205
204
|
|
|
206
|
-
const { approveDelegation, revokeDelegation
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
})
|
|
205
|
+
const { approveDelegation, revokeDelegation } = createTokenDelegationFactory({
|
|
206
|
+
api: defaultApi,
|
|
207
|
+
assetClientInterface,
|
|
208
|
+
})
|
|
211
209
|
|
|
212
210
|
const createHistoryMonitor = createHistoryMonitorFactory({
|
|
213
211
|
monitorType,
|
|
@@ -276,7 +274,6 @@ export const createSolanaAssetFactory =
|
|
|
276
274
|
approveDelegation,
|
|
277
275
|
bip44,
|
|
278
276
|
accountReserve,
|
|
279
|
-
getDelegatedAddresses,
|
|
280
277
|
initAgentWallet,
|
|
281
278
|
lowBalance,
|
|
282
279
|
MIN_STAKING_AMOUNT,
|