@exodus/ethereum-lib 2.10.1 → 2.10.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.10.1",
3
+ "version": "2.10.2",
4
4
  "description": "Ethereum Library",
5
5
  "main": "src/index.js",
6
6
  "author": "Exodus Movement, Inc.",
@@ -24,5 +24,5 @@
24
24
  "peerDependencies": {
25
25
  "@exodus/assets": "8.0.x"
26
26
  },
27
- "gitHead": "d4013194fcf671424c87a455fb4c95e97b54f9a9"
27
+ "gitHead": "a352b5ebc98ee831c4c8c8a5d055d70e15801401"
28
28
  }
@@ -8,17 +8,16 @@ export default class EthereumLikeFeeMonitor extends FeeMonitor {
8
8
  assetName,
9
9
  getGasPrice,
10
10
  getBaseFee,
11
- eip1559Enabled = false,
12
11
  minGasPrice = 0,
13
12
  }) {
14
13
  super({ updateFee, interval, assetName })
15
14
  this.getGasPrice = getGasPrice
16
15
  this.minGasPrice = minGasPrice
17
16
  this.getBaseFee = getBaseFee
18
- this.eip1559Enabled = eip1559Enabled
17
+ this.eip1559Enabled = true
19
18
  }
20
19
 
21
- setEip1559Enabled(bool) {
20
+ setEip1559Enabled(bool = true) {
22
21
  // bool set by remote-config
23
22
  this.eip1559Enabled = bool
24
23
  }