2017-08-04 19:55:00 +02:00
|
|
|
const EthQuery = require('ethjs-query')
|
|
|
|
const {
|
|
|
|
hexToBn,
|
|
|
|
BnMultiplyByFraction,
|
|
|
|
bnToHex,
|
|
|
|
} = require('./util')
|
2018-03-13 23:39:33 +01:00
|
|
|
const { addHexPrefix, isValidAddress } = require('ethereumjs-util')
|
2018-01-16 00:08:07 +01:00
|
|
|
const SIMPLE_GAS_COST = '0x5208' // Hex for 21000, cost of a simple send.
|
2016-12-16 19:33:36 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
tx-utils are utility methods for Transaction manager
|
2017-05-18 23:54:02 +02:00
|
|
|
its passed ethquery
|
2016-12-16 19:33:36 +01:00
|
|
|
and used to do things like calculate gas of a tx.
|
|
|
|
*/
|
2016-12-14 21:55:41 +01:00
|
|
|
|
2018-01-18 05:09:13 +01:00
|
|
|
module.exports = class TxGasUtil {
|
2018-02-14 23:37:02 +01:00
|
|
|
|
2017-08-04 19:55:00 +02:00
|
|
|
constructor (provider) {
|
|
|
|
this.query = new EthQuery(provider)
|
2016-12-14 21:55:41 +01:00
|
|
|
}
|
2017-01-14 02:47:20 +01:00
|
|
|
|
2017-07-26 20:56:52 +02:00
|
|
|
async analyzeGasUsage (txMeta) {
|
|
|
|
const block = await this.query.getBlockByNumber('latest', true)
|
2017-08-09 08:34:18 +02:00
|
|
|
let estimatedGasHex
|
|
|
|
try {
|
|
|
|
estimatedGasHex = await this.estimateTxGas(txMeta, block.gasLimit)
|
|
|
|
} catch (err) {
|
2017-12-15 03:15:38 +01:00
|
|
|
const simulationFailed = (
|
|
|
|
err.message.includes('Transaction execution error.') ||
|
|
|
|
err.message.includes('gas required exceeds allowance or always failing transaction')
|
|
|
|
)
|
2017-12-28 02:27:48 +01:00
|
|
|
if (simulationFailed) {
|
2017-08-09 08:34:18 +02:00
|
|
|
txMeta.simulationFails = true
|
|
|
|
return txMeta
|
|
|
|
}
|
|
|
|
}
|
2017-07-26 20:56:52 +02:00
|
|
|
this.setTxGas(txMeta, block.gasLimit, estimatedGasHex)
|
2017-08-02 17:35:35 +02:00
|
|
|
return txMeta
|
2016-12-14 21:55:41 +01:00
|
|
|
}
|
|
|
|
|
2017-07-26 20:56:52 +02:00
|
|
|
async estimateTxGas (txMeta, blockGasLimitHex) {
|
2017-03-28 22:35:27 +02:00
|
|
|
const txParams = txMeta.txParams
|
2018-01-16 00:08:07 +01:00
|
|
|
|
2016-12-14 21:55:41 +01:00
|
|
|
// check if gasLimit is already specified
|
2017-03-28 22:35:27 +02:00
|
|
|
txMeta.gasLimitSpecified = Boolean(txParams.gas)
|
2018-01-16 00:08:07 +01:00
|
|
|
|
|
|
|
// if it is, use that value
|
|
|
|
if (txMeta.gasLimitSpecified) {
|
|
|
|
return txParams.gas
|
2016-12-14 21:55:41 +01:00
|
|
|
}
|
2018-01-16 00:08:07 +01:00
|
|
|
|
|
|
|
// if recipient has no code, gas is 21k max:
|
|
|
|
const recipient = txParams.to
|
|
|
|
const hasRecipient = Boolean(recipient)
|
|
|
|
const code = await this.query.getCode(recipient)
|
|
|
|
if (hasRecipient && (!code || code === '0x')) {
|
|
|
|
txParams.gas = SIMPLE_GAS_COST
|
2018-01-16 20:05:11 +01:00
|
|
|
txMeta.simpleSend = true // Prevents buffer addition
|
2018-01-16 00:08:07 +01:00
|
|
|
return SIMPLE_GAS_COST
|
|
|
|
}
|
|
|
|
|
|
|
|
// if not, fall back to block gasLimit
|
|
|
|
const blockGasLimitBN = hexToBn(blockGasLimitHex)
|
|
|
|
const saferGasLimitBN = BnMultiplyByFraction(blockGasLimitBN, 19, 20)
|
|
|
|
txParams.gas = bnToHex(saferGasLimitBN)
|
|
|
|
|
2017-08-09 08:34:18 +02:00
|
|
|
// run tx
|
|
|
|
return await this.query.estimateGas(txParams)
|
2016-12-14 21:55:41 +01:00
|
|
|
}
|
|
|
|
|
2017-07-26 20:56:52 +02:00
|
|
|
setTxGas (txMeta, blockGasLimitHex, estimatedGasHex) {
|
2018-02-14 23:37:02 +01:00
|
|
|
txMeta.estimatedGas = addHexPrefix(estimatedGasHex)
|
2017-03-28 22:35:27 +02:00
|
|
|
const txParams = txMeta.txParams
|
2017-01-10 23:20:46 +01:00
|
|
|
|
2016-12-14 21:55:41 +01:00
|
|
|
// if gasLimit was specified and doesnt OOG,
|
|
|
|
// use original specified amount
|
2018-01-16 20:05:11 +01:00
|
|
|
if (txMeta.gasLimitSpecified || txMeta.simpleSend) {
|
2017-03-28 22:35:27 +02:00
|
|
|
txMeta.estimatedGas = txParams.gas
|
2016-12-14 21:55:41 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
// if gasLimit not originally specified,
|
|
|
|
// try adding an additional gas buffer to our estimation for safety
|
2017-03-28 22:35:27 +02:00
|
|
|
const recommendedGasHex = this.addGasBuffer(txMeta.estimatedGas, blockGasLimitHex)
|
2017-03-08 07:47:35 +01:00
|
|
|
txParams.gas = recommendedGasHex
|
2016-12-14 21:55:41 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2017-03-08 07:18:14 +01:00
|
|
|
addGasBuffer (initialGasLimitHex, blockGasLimitHex) {
|
2017-03-08 07:47:35 +01:00
|
|
|
const initialGasLimitBn = hexToBn(initialGasLimitHex)
|
|
|
|
const blockGasLimitBn = hexToBn(blockGasLimitHex)
|
2017-03-30 08:21:31 +02:00
|
|
|
const upperGasLimitBn = blockGasLimitBn.muln(0.9)
|
2017-03-08 07:18:14 +01:00
|
|
|
const bufferedGasLimitBn = initialGasLimitBn.muln(1.5)
|
2017-03-23 21:56:32 +01:00
|
|
|
|
2017-03-08 07:18:14 +01:00
|
|
|
// if initialGasLimit is above blockGasLimit, dont modify it
|
2017-03-30 08:21:31 +02:00
|
|
|
if (initialGasLimitBn.gt(upperGasLimitBn)) return bnToHex(initialGasLimitBn)
|
2017-03-08 07:18:14 +01:00
|
|
|
// if bufferedGasLimit is below blockGasLimit, use bufferedGasLimit
|
2017-03-30 08:21:31 +02:00
|
|
|
if (bufferedGasLimitBn.lt(upperGasLimitBn)) return bnToHex(bufferedGasLimitBn)
|
2017-03-08 07:18:14 +01:00
|
|
|
// otherwise use blockGasLimit
|
2017-03-30 08:21:31 +02:00
|
|
|
return bnToHex(upperGasLimitBn)
|
2016-12-14 21:55:41 +01:00
|
|
|
}
|
2017-01-13 11:00:11 +01:00
|
|
|
|
2017-08-03 00:58:05 +02:00
|
|
|
async validateTxParams (txParams) {
|
2018-01-08 12:16:20 +01:00
|
|
|
this.validateRecipient(txParams)
|
2017-12-19 23:28:02 +01:00
|
|
|
if ('value' in txParams) {
|
|
|
|
const value = txParams.value.toString()
|
2018-01-02 23:22:44 +01:00
|
|
|
if (value.includes('-')) {
|
2017-12-19 23:28:02 +01:00
|
|
|
throw new Error(`Invalid transaction value of ${txParams.value} not a positive number.`)
|
|
|
|
}
|
|
|
|
|
2018-01-02 23:22:44 +01:00
|
|
|
if (value.includes('.')) {
|
2017-12-19 23:28:02 +01:00
|
|
|
throw new Error(`Invalid transaction value of ${txParams.value} number must be in wei`)
|
|
|
|
}
|
2017-08-03 00:58:05 +02:00
|
|
|
}
|
2017-01-14 02:47:20 +01:00
|
|
|
}
|
2018-01-08 12:16:20 +01:00
|
|
|
validateRecipient (txParams) {
|
2018-03-13 23:32:03 +01:00
|
|
|
if (txParams.to === '0x' || txParams.to === null ) {
|
2018-01-08 12:16:20 +01:00
|
|
|
if (txParams.data) {
|
|
|
|
delete txParams.to
|
|
|
|
} else {
|
|
|
|
throw new Error('Invalid recipient address')
|
|
|
|
}
|
2018-03-13 23:32:03 +01:00
|
|
|
} else if ( txParams.to !== undefined && !isValidAddress(txParams.to) ) {
|
|
|
|
throw new Error('Invalid recipient address')
|
2018-01-08 12:16:20 +01:00
|
|
|
}
|
|
|
|
return txParams
|
|
|
|
}
|
2017-10-21 21:06:39 +02:00
|
|
|
}
|