@exodus/ethereum-lib 2.7.0 → 2.7.2

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/ethereum-lib",
3
- "version": "2.7.0",
3
+ "version": "2.7.2",
4
4
  "description": "Ethereum Library",
5
5
  "main": "src/index.js",
6
6
  "author": "Exodus Movement, Inc.",
@@ -23,5 +23,5 @@
23
23
  "peerDependencies": {
24
24
  "@exodus/assets": "8.0.x"
25
25
  },
26
- "gitHead": "71d126e789b161f5877db4a651a641061f00c7af"
26
+ "gitHead": "cd08eeb37f107463a6285a9fb151a97e6e1cd2c7"
27
27
  }
@@ -5,6 +5,9 @@ export default new FeeData(
5
5
  gasPrice: '20 Gwei',
6
6
  max: '200 Gwei',
7
7
  min: '1 Gwei',
8
+ erc20FuelThreshold: '25000000 Gwei',
9
+ gasPriceEconomicalRate: 1,
10
+ gasPriceMinimumRate: 1,
8
11
  },
9
12
  'gasPrice',
10
13
  'bsc'
@@ -8,6 +8,7 @@ export default new FeeData(
8
8
  erc20FuelThreshold: '0.025 ETH',
9
9
  swapFee: '0.05 ETH',
10
10
  gasPriceEconomicalRate: 0.7,
11
+ gasPriceMinimumRate: 0.5,
11
12
  enableFeeDelegation: false,
12
13
  },
13
14
  'gasPrice',
@@ -2,6 +2,8 @@ import baseX from 'base-x'
2
2
  import * as ethUtil from 'ethereumjs-util'
3
3
  import assets from '@exodus/assets'
4
4
 
5
+ export { default as calculateExtraEth } from './calculate-extra-eth'
6
+
5
7
  const base10 = baseX('0123456789')
6
8
  const base16 = baseX('0123456789abcdef')
7
9