@exodus/ethereum-lib 5.1.0 → 5.2.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.
Files changed (2) hide show
  1. package/package.json +5 -8
  2. package/src/constants.js +14 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/ethereum-lib",
3
- "version": "5.1.0",
3
+ "version": "5.2.0",
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": "4775523976cc6c0352c657d584847ebadd0ebc1d"
49
+ "gitHead": "90afbc608cbc88d2b713aa89b5633362be253aeb"
53
50
  }
package/src/constants.js CHANGED
@@ -125,6 +125,20 @@ const CHAIN_DATA = {
125
125
  monitorType: 'no-history',
126
126
  tokenType: 'MNT_20',
127
127
  },
128
+ mantlesepolia: {
129
+ chainId: 5003,
130
+ serverUrl: 'https://mantle-sepolia-qn.a.exodus.io',
131
+ confirmationsNumber: 30,
132
+ monitorType: 'no-history',
133
+ tokenType: 'SPMNT_20',
134
+ },
135
+ ethereumarbonesepolia: {
136
+ chainId: 421_614,
137
+ serverUrl: 'https://arbitrum-sepolia-qn.a.exodus.io',
138
+ confirmationsNumber: 3,
139
+ monitorType: 'no-history',
140
+ tokenType: 'ETHEREUM_ARBONE_SEPOLIA_ERC20',
141
+ },
128
142
  }
129
143
 
130
144
  export const DEFAULT_SERVER_URLS = mapValues(CHAIN_DATA, ({ serverUrl }) => serverUrl)