@exodus/solana-plugin 1.39.3 → 1.39.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 +10 -0
- package/package.json +2 -2
- package/src/create-asset.js +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,16 @@
|
|
|
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.4](https://github.com/ExodusMovement/assets/compare/@exodus/solana-plugin@1.39.3...@exodus/solana-plugin@1.39.4) (2026-06-19)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
* fix: re-introduce MIN_STAKING_AMOUNT constant (#8266)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
6
16
|
## [1.39.3](https://github.com/ExodusMovement/assets/compare/@exodus/solana-plugin@1.39.2...@exodus/solana-plugin@1.39.3) (2026-06-18)
|
|
7
17
|
|
|
8
18
|
**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.39.
|
|
3
|
+
"version": "1.39.4",
|
|
4
4
|
"description": "Solana plugin for Exodus SDK powered wallets.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "src/index.js",
|
|
@@ -45,5 +45,5 @@
|
|
|
45
45
|
"type": "git",
|
|
46
46
|
"url": "git+https://github.com/ExodusMovement/assets.git"
|
|
47
47
|
},
|
|
48
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "9ee2c92699b19a44fc86e42bc860bbc51fe644a9"
|
|
49
49
|
}
|
package/src/create-asset.js
CHANGED
|
@@ -41,6 +41,7 @@ import { createWeb3API } from './web3/index.js'
|
|
|
41
41
|
|
|
42
42
|
const DEFAULT_ACCOUNT_RESERVE = 0
|
|
43
43
|
const DEFAULT_LOW_BALANCE = 0.01
|
|
44
|
+
const MIN_STAKING_AMOUNT = '1.003'
|
|
44
45
|
const STAKE_ACCOUNT_SIZE = 200
|
|
45
46
|
|
|
46
47
|
const normalizePositiveIntegerLamports = (value, errorMessage) => {
|
|
@@ -335,6 +336,7 @@ export const createSolanaAssetFactory =
|
|
|
335
336
|
findRecoverableNestedAccounts: recoverNestedAccounts.findRecoverableNestedAccounts,
|
|
336
337
|
initAgentWallet,
|
|
337
338
|
lowBalance,
|
|
339
|
+
MIN_STAKING_AMOUNT: base.currency.defaultUnit(MIN_STAKING_AMOUNT),
|
|
338
340
|
recoverNestedAccountFunds: recoverNestedAccounts.recoverNestedAccountFunds,
|
|
339
341
|
revokeDelegation,
|
|
340
342
|
serverApi: defaultApi,
|