@exodus/ethereum-lib 3.3.23 → 3.3.25

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.
Files changed (2) hide show
  1. package/package.json +5 -4
  2. package/src/constants.js +7 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/ethereum-lib",
3
- "version": "3.3.23",
3
+ "version": "3.3.25",
4
4
  "description": "Ethereum Library",
5
5
  "main": "src/index.js",
6
6
  "files": [
@@ -21,6 +21,7 @@
21
21
  "@exodus/basic-utils": "^0.7.0",
22
22
  "@exodus/bip32": "^1.0.0",
23
23
  "@exodus/bsc-meta": "^1.0.14",
24
+ "@exodus/cronos-meta": "^1.0.1",
24
25
  "@exodus/ethereum-meta": "^1.0.30",
25
26
  "@exodus/ethereumarbnova-meta": "^1.0.2",
26
27
  "@exodus/ethereumarbone-meta": "^1.1.4",
@@ -34,13 +35,13 @@
34
35
  "@exodus/key-utils": "^1.0.0",
35
36
  "@exodus/matic-meta": "^1.0.9",
36
37
  "@exodus/models": "^8.10.4",
37
- "@exodus/optimism-meta": "^1.2.5",
38
- "@exodus/rootstock-meta": "^1.0.2",
38
+ "@exodus/optimism-meta": "^1.2.6",
39
+ "@exodus/rootstock-meta": "^1.0.4",
39
40
  "@exodus/solidity-contract": "^1.1.3",
40
41
  "base-x": "^3.0.2",
41
42
  "lodash": "^4.17.15",
42
43
  "ms": "^2.1.1",
43
44
  "reselect": "~3.0.1"
44
45
  },
45
- "gitHead": "ba8eb7eaadb5aca74046eb180eade30165e4c3cc"
46
+ "gitHead": "a56649d200dc1c153e4785416e9b5ead6d17248f"
46
47
  }
package/src/constants.js CHANGED
@@ -98,6 +98,13 @@ const CHAIN_DATA = {
98
98
  monitorType: 'no-history',
99
99
  tokenType: 'BASE_ERC20',
100
100
  },
101
+ cronos: {
102
+ chainId: 25,
103
+ serverUrl: 'https://cronos-clarity.a.exodus.io',
104
+ confirmationsNumber: 6,
105
+ monitorType: 'clarity',
106
+ tokenType: 'CRC20',
107
+ },
101
108
  }
102
109
 
103
110
  export const DEFAULT_SERVER_URLS = mapValues(CHAIN_DATA, ({ serverUrl }) => serverUrl)