@exodus/ethereum-lib 1.1.0 → 1.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 +2 -2
  2. package/src/constants.js +4 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/ethereum-lib",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "Ethereum Library",
5
5
  "main": "src/index.js",
6
6
  "author": "Exodus Movement, Inc.",
@@ -20,5 +20,5 @@
20
20
  "peerDependencies": {
21
21
  "@exodus/assets": "8.0.x"
22
22
  },
23
- "gitHead": "1594f269e65cf8998a152917c5c7d7b519d71066"
23
+ "gitHead": "27d757e9b2e1e356c52f99854c64ef42e61b4865"
24
24
  }
package/src/constants.js CHANGED
@@ -1,3 +1,7 @@
1
1
  export const CHAIN_IDS = { ethereum: 1, ethereumclassic: 61 }
2
2
  export const MIN_GASPRICE = 1e9 // 1 gwei
3
3
  export const DEFAULT_FEE_MONITOR_INTERVAL = '1m'
4
+ export const CONFIRMATIONS_NUMBER = {
5
+ ethereum: 30,
6
+ ethereumclassic: 5000,
7
+ }