@exodus/ethereum-api 4.0.0 → 4.0.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exodus/ethereum-api",
3
- "version": "4.0.0",
3
+ "version": "4.0.1",
4
4
  "description": "Ethereum Api",
5
5
  "main": "src/index.js",
6
6
  "files": [
@@ -36,5 +36,5 @@
36
36
  "devDependencies": {
37
37
  "@exodus/models": "^8.10.4"
38
38
  },
39
- "gitHead": "df2b99d7026e8804622b8ac3410c7f009bd3adc8"
39
+ "gitHead": "729674ae988309eccf03feefbf891d8b43947577"
40
40
  }
@@ -64,7 +64,7 @@ export async function fetchGasLimit({
64
64
  txInput = ethUtil.bufferToHex(asset.contract.transfer.build(toAddress, amount.toBaseString()))
65
65
  amount = asset.baseAsset.currency.ZERO
66
66
  toAddress = asset.contract.address
67
- } else if (!isContract) {
67
+ } else if (!isContract && !['ethereumarbone', 'ethereumarbnova'].includes(asset.name)) {
68
68
  if (isContract === undefined)
69
69
  isContract = await isContractAddress({ asset, address: toAddress })
70
70
  if (!isContract) return defaultGasLimit()