@exodus/ethereum-lib 5.0.1 → 5.1.1

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 -8
  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": "5.0.1",
3
+ "version": "5.1.1",
4
4
  "description": "Ethereum Library",
5
5
  "main": "src/index.js",
6
6
  "files": [
@@ -21,16 +21,12 @@
21
21
  "dependencies": {
22
22
  "@exodus/asset-lib": "^4.1.0",
23
23
  "@exodus/basic-utils": "^0.7.0",
24
- "@exodus/bsc-meta": "^1.2.2",
25
- "@exodus/cronos-meta": "^1.0.7",
26
24
  "@exodus/currency": "^2.3.2",
27
25
  "@exodus/ethereum-meta": "^1.5.1",
28
26
  "@exodus/ethereumjs-common": "^2.4.0-exodus.6",
29
27
  "@exodus/ethereumjs-tx": "^3.3.0-exodus.7",
30
28
  "@exodus/ethereumjs-util": "^7.1.0-exodus.7",
31
- "@exodus/flare-meta": "^1.0.6",
32
29
  "@exodus/key-utils": "^3.1.0",
33
- "@exodus/matic-meta": "^1.3.0",
34
30
  "@exodus/models": "^11.0.0",
35
31
  "@exodus/solidity-contract": "^1.1.3",
36
32
  "@metamask/eth-sig-util": "^4.0.1",
@@ -44,10 +40,11 @@
44
40
  "devDependencies": {
45
41
  "@exodus/assets": "^9.1.1",
46
42
  "@exodus/bitcoin-meta": "^1.0.2",
47
- "@exodus/bnbmainnet-meta": "^1.0.0",
43
+ "@exodus/bsc-meta": "^1.2.2",
48
44
  "@exodus/elliptic": "^6.5.4-precomputed",
49
45
  "@exodus/ethereumclassic-meta": "^1.0.3",
50
- "@exodus/fantommainnet-meta": "^1.1.2"
46
+ "@exodus/fantommainnet-meta": "^1.1.2",
47
+ "@exodus/matic-meta": "^1.3.0"
51
48
  },
52
- "gitHead": "6c650d072cc04a4733f99e824a979530d1cd5302"
49
+ "gitHead": "89127959e3741665d3a40845a5b21c72053e76cb"
53
50
  }
package/src/constants.js CHANGED
@@ -118,6 +118,13 @@ const CHAIN_DATA = {
118
118
  monitorType: 'no-history',
119
119
  tokenType: 'CRC20',
120
120
  },
121
+ mantle: {
122
+ chainId: 5000,
123
+ serverUrl: 'https://mantle-qn.a.exodus.io',
124
+ confirmationsNumber: 30,
125
+ monitorType: 'no-history',
126
+ tokenType: 'MNT_20',
127
+ },
121
128
  }
122
129
 
123
130
  export const DEFAULT_SERVER_URLS = mapValues(CHAIN_DATA, ({ serverUrl }) => serverUrl)