@exodus/ethereum-lib 5.20.3 → 5.21.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 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
+ ## [5.21.0](https://github.com/ExodusMovement/assets/compare/@exodus/ethereum-lib@5.20.4...@exodus/ethereum-lib@5.21.0) (2026-01-14)
7
+
8
+
9
+ ### Features
10
+
11
+
12
+ * feat: EIP delegation status on all monitors (#7193)
13
+
14
+
15
+
16
+ ## [5.20.4](https://github.com/ExodusMovement/assets/compare/@exodus/ethereum-lib@5.20.3...@exodus/ethereum-lib@5.20.4) (2026-01-08)
17
+
18
+
19
+ ### Bug Fixes
20
+
21
+
22
+ * fix: BSC Fermi updates (#7130)
23
+
24
+
25
+
6
26
  ## [5.20.3](https://github.com/ExodusMovement/assets/compare/@exodus/ethereum-lib@5.20.2...@exodus/ethereum-lib@5.20.3) (2025-12-22)
7
27
 
8
28
  **Note:** Version bump only for package @exodus/ethereum-lib
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/ethereum-lib",
3
- "version": "5.20.3",
3
+ "version": "5.21.0",
4
4
  "description": "Ethereum utils, such as for cryptography, address encoding/decoding, transaction building, etc.",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
@@ -51,5 +51,5 @@
51
51
  "type": "git",
52
52
  "url": "git+https://github.com/ExodusMovement/assets.git"
53
53
  },
54
- "gitHead": "5c1f2c3c6c7562c8344fc816d88e44b8f4dd4e8d"
54
+ "gitHead": "11f40d9da07e1e70a4e07f94defa3042c6fb21cc"
55
55
  }
@@ -11,6 +11,7 @@ export default function createEthereumLikeAccountState({ asset, extraData = {},
11
11
  balance: asset.currency.ZERO,
12
12
  tokenBalances: {},
13
13
  index: 0,
14
+ eip7702Delegation: null,
14
15
  ...extraData,
15
16
  }
16
17
 
package/src/constants.js CHANGED
@@ -20,7 +20,7 @@ const CHAIN_DATA = {
20
20
  bsc: {
21
21
  chainId: 56,
22
22
  serverUrl: 'https://bsc-clarity.a.exodus.io/',
23
- confirmationsNumber: 15,
23
+ confirmationsNumber: 25, // at 0.75 second blocks this was 11.25 seconds. At 0.45 second blocks this is now 25 blocks = 11.25 seconds.
24
24
  monitorType: 'clarity',
25
25
  tokenType: 'BSC_BEP20',
26
26
  },