@exodus/ethereum-lib 5.0.1 → 5.1.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/package.json +2 -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
|
|
3
|
+
"version": "5.1.0",
|
|
4
4
|
"description": "Ethereum Library",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"files": [
|
|
@@ -49,5 +49,5 @@
|
|
|
49
49
|
"@exodus/ethereumclassic-meta": "^1.0.3",
|
|
50
50
|
"@exodus/fantommainnet-meta": "^1.1.2"
|
|
51
51
|
},
|
|
52
|
-
"gitHead": "
|
|
52
|
+
"gitHead": "4775523976cc6c0352c657d584847ebadd0ebc1d"
|
|
53
53
|
}
|
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)
|