@exodus/ethereum-lib 5.20.2 → 5.20.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,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
+ ## [5.20.4](https://github.com/ExodusMovement/assets/compare/@exodus/ethereum-lib@5.20.3...@exodus/ethereum-lib@5.20.4) (2026-01-08)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+
12
+ * fix: BSC Fermi updates (#7130)
13
+
14
+
15
+
16
+ ## [5.20.3](https://github.com/ExodusMovement/assets/compare/@exodus/ethereum-lib@5.20.2...@exodus/ethereum-lib@5.20.3) (2025-12-22)
17
+
18
+ **Note:** Version bump only for package @exodus/ethereum-lib
19
+
20
+
21
+
22
+
23
+
6
24
  ## [5.20.2](https://github.com/ExodusMovement/assets/compare/@exodus/ethereum-lib@5.20.1...@exodus/ethereum-lib@5.20.2) (2025-12-17)
7
25
 
8
26
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/ethereum-lib",
3
- "version": "5.20.2",
3
+ "version": "5.20.4",
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": "8c3e94c96818b1ce8ce10cb75da29db2c9fe9ab9"
54
+ "gitHead": "b253e91da79e0250b3078593770da5a99104a673"
55
55
  }
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
  },
@@ -91,7 +91,7 @@ const CHAIN_DATA = {
91
91
  },
92
92
  cronos: {
93
93
  chainId: 25,
94
- serverUrl: 'https://cronos.a.exodus.io',
94
+ serverUrl: 'https://cronos-cs.a.exodus.io',
95
95
  confirmationsNumber: 6,
96
96
  monitorType: 'no-history',
97
97
  },