@exodus/ethereum-plugin 2.7.3 → 2.7.5

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,24 @@
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.5](https://github.com/ExodusMovement/assets/compare/@exodus/ethereum-plugin@2.7.4...@exodus/ethereum-plugin@2.7.5) (2025-04-29)
7
+
8
+ **Note:** Version bump only for package @exodus/ethereum-plugin
9
+
10
+
11
+
12
+
13
+
14
+ ## [2.7.4](https://github.com/ExodusMovement/assets/compare/@exodus/ethereum-plugin@2.7.3...@exodus/ethereum-plugin@2.7.4) (2025-04-03)
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+
20
+ * fix: populate the activeStakedBalance for matic and polygon staking (#5374)
21
+
22
+
23
+
6
24
  ## [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
25
 
8
26
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/ethereum-plugin",
3
- "version": "2.7.3",
3
+ "version": "2.7.5",
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.1",
24
+ "@exodus/ethereum-api": "^8.34.3",
25
25
  "@exodus/ethereum-lib": "^5.8.2",
26
26
  "@exodus/ethereum-meta": "^2.0.0",
27
27
  "@exodus/ethereumjs": "^1.0.0",
@@ -32,6 +32,7 @@
32
32
  "devDependencies": {
33
33
  "@exodus/assets": "^11.0.0",
34
34
  "@exodus/assets-testing": "^1.0.0",
35
+ "@exodus/crypto": "^1.0.0-rc.13",
35
36
  "@exodus/models": "^12.0.1",
36
37
  "@exodus/web3-ethereum-utils": "^4.3.0",
37
38
  "delay": "^4.0.1"
@@ -44,5 +45,5 @@
44
45
  "type": "git",
45
46
  "url": "git+https://github.com/ExodusMovement/assets.git"
46
47
  },
47
- "gitHead": "eae3aef3f6ff20da6bc286217b40154e8a1c65a7"
48
+ "gitHead": "5513269ef920bfdd91701a8108fe73336d105866"
48
49
  }
package/src/index.js CHANGED
@@ -15,7 +15,7 @@ const createAsset = createAssetFactory({
15
15
  swapFee: '0.05 ETH',
16
16
  gasPriceMinimumRate: 0.5,
17
17
  enableFeeDelegation: false,
18
- tipGasPrice: '2 Gwei',
18
+ tipGasPrice: '0.5 Gwei',
19
19
  eip1559Enabled: true,
20
20
  rbfEnabled: true,
21
21
  },
@@ -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,