@exodus/ethereum-plugin 2.7.3 → 2.7.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
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
|
+
## [2.7.4](https://github.com/ExodusMovement/assets/compare/@exodus/ethereum-plugin@2.7.3...@exodus/ethereum-plugin@2.7.4) (2025-04-03)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
* fix: populate the activeStakedBalance for matic and polygon staking (#5374)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
6
16
|
## [2.7.3](https://github.com/ExodusMovement/assets/compare/@exodus/ethereum-plugin@2.7.2...@exodus/ethereum-plugin@2.7.3) (2025-03-06)
|
|
7
17
|
|
|
8
18
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@exodus/ethereum-plugin",
|
|
3
|
-
"version": "2.7.
|
|
3
|
+
"version": "2.7.4",
|
|
4
4
|
"description": "Ethereum plugin for Exodus SDK powered wallets",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "src/index.js",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"@exodus/currency": "^6.0.1",
|
|
24
|
-
"@exodus/ethereum-api": "^8.33.
|
|
24
|
+
"@exodus/ethereum-api": "^8.33.7",
|
|
25
25
|
"@exodus/ethereum-lib": "^5.8.2",
|
|
26
26
|
"@exodus/ethereum-meta": "^2.0.0",
|
|
27
27
|
"@exodus/ethereumjs": "^1.0.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": "c181bb6d727d45fe17b31d1cf1b70eeb34fb7fd4"
|
|
48
48
|
}
|
|
@@ -6,6 +6,7 @@ export const stakingAccountState = ({ currency }) => ({
|
|
|
6
6
|
minDelegateAmount: currency.defaultUnit(1),
|
|
7
7
|
unclaimedUndelegatedBalance: currency.ZERO,
|
|
8
8
|
delegatedBalance: currency.ZERO,
|
|
9
|
+
activeStakedBalance: currency.ZERO,
|
|
9
10
|
rewardsBalance: currency.ZERO,
|
|
10
11
|
withdrawable: currency.ZERO,
|
|
11
12
|
unbondNonce: '0',
|
|
@@ -459,6 +459,7 @@ export function getPolygonStakingInfo({ assetClientInterface, stakingServer }) {
|
|
|
459
459
|
unbondNonce,
|
|
460
460
|
isDelegating,
|
|
461
461
|
delegatedBalance,
|
|
462
|
+
activeStakedBalance: delegatedBalance,
|
|
462
463
|
minRewardsToWithdraw,
|
|
463
464
|
minDelegateAmount,
|
|
464
465
|
...unclaimedUndelegatedInfo,
|