2016-12-14 21:55:41 +01:00
|
|
|
const async = require('async')
|
|
|
|
const EthQuery = require('eth-query')
|
|
|
|
const ethUtil = require('ethereumjs-util')
|
2017-01-13 11:00:11 +01:00
|
|
|
const Transaction = require('ethereumjs-tx')
|
2017-02-21 23:25:47 +01:00
|
|
|
const normalize = require('eth-sig-util').normalize
|
2016-12-14 21:55:41 +01:00
|
|
|
const BN = ethUtil.BN
|
2016-12-16 19:33:36 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
tx-utils are utility methods for Transaction manager
|
|
|
|
its passed a provider and that is passed to ethquery
|
|
|
|
and used to do things like calculate gas of a tx.
|
|
|
|
*/
|
2016-12-14 21:55:41 +01:00
|
|
|
|
|
|
|
module.exports = class txProviderUtils {
|
|
|
|
constructor (provider) {
|
|
|
|
this.provider = provider
|
|
|
|
this.query = new EthQuery(provider)
|
|
|
|
}
|
2017-01-14 02:47:20 +01:00
|
|
|
|
2016-12-14 21:55:41 +01:00
|
|
|
analyzeGasUsage (txData, cb) {
|
|
|
|
var self = this
|
|
|
|
this.query.getBlockByNumber('latest', true, (err, block) => {
|
|
|
|
if (err) return cb(err)
|
|
|
|
async.waterfall([
|
|
|
|
self.estimateTxGas.bind(self, txData, block.gasLimit),
|
|
|
|
self.setTxGas.bind(self, txData, block.gasLimit),
|
|
|
|
], cb)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
estimateTxGas (txData, blockGasLimitHex, cb) {
|
|
|
|
const txParams = txData.txParams
|
|
|
|
// check if gasLimit is already specified
|
|
|
|
txData.gasLimitSpecified = Boolean(txParams.gas)
|
|
|
|
// if not, fallback to block gasLimit
|
|
|
|
if (!txData.gasLimitSpecified) {
|
|
|
|
txParams.gas = blockGasLimitHex
|
|
|
|
}
|
|
|
|
// run tx, see if it will OOG
|
|
|
|
this.query.estimateGas(txParams, cb)
|
|
|
|
}
|
|
|
|
|
2017-01-10 23:20:46 +01:00
|
|
|
setTxGas (txData, blockGasLimitHex, estimatedGasHex, cb) {
|
2016-12-14 21:55:41 +01:00
|
|
|
txData.estimatedGas = estimatedGasHex
|
|
|
|
const txParams = txData.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
|
|
|
|
if (txData.gasLimitSpecified) {
|
|
|
|
txData.estimatedGas = txParams.gas
|
|
|
|
cb()
|
|
|
|
return
|
|
|
|
}
|
|
|
|
// if gasLimit not originally specified,
|
|
|
|
// try adding an additional gas buffer to our estimation for safety
|
2017-03-08 07:47:35 +01:00
|
|
|
const recommendedGasHex = this.addGasBuffer(txData.estimatedGas, blockGasLimitHex)
|
|
|
|
txParams.gas = recommendedGasHex
|
2016-12-14 21:55:41 +01:00
|
|
|
cb()
|
|
|
|
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-08 07:18:14 +01:00
|
|
|
const bufferedGasLimitBn = initialGasLimitBn.muln(1.5)
|
|
|
|
|
|
|
|
// if initialGasLimit is above blockGasLimit, dont modify it
|
2017-03-08 07:47:35 +01:00
|
|
|
if (initialGasLimitBn.gt(blockGasLimitBn)) return bnToHex(initialGasLimitBn)
|
2017-03-08 07:18:14 +01:00
|
|
|
// if bufferedGasLimit is below blockGasLimit, use bufferedGasLimit
|
2017-03-08 07:47:35 +01:00
|
|
|
if (bufferedGasLimitBn.lt(blockGasLimitBn)) return bnToHex(bufferedGasLimitBn)
|
2017-03-08 07:18:14 +01:00
|
|
|
// otherwise use blockGasLimit
|
2017-03-08 07:47:35 +01:00
|
|
|
return bnToHex(blockGasLimitBn)
|
2016-12-14 21:55:41 +01:00
|
|
|
}
|
2017-01-13 11:00:11 +01:00
|
|
|
|
|
|
|
fillInTxParams (txParams, cb) {
|
|
|
|
let fromAddress = txParams.from
|
|
|
|
let reqs = {}
|
|
|
|
|
|
|
|
if (isUndef(txParams.gas)) reqs.gas = (cb) => this.query.estimateGas(txParams, cb)
|
|
|
|
if (isUndef(txParams.gasPrice)) reqs.gasPrice = (cb) => this.query.gasPrice(cb)
|
|
|
|
if (isUndef(txParams.nonce)) reqs.nonce = (cb) => this.query.getTransactionCount(fromAddress, 'pending', cb)
|
|
|
|
|
|
|
|
async.parallel(reqs, function(err, result) {
|
|
|
|
if (err) return cb(err)
|
|
|
|
// write results to txParams obj
|
|
|
|
Object.assign(txParams, result)
|
|
|
|
cb()
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
// builds ethTx from txParams object
|
2017-02-28 23:08:00 +01:00
|
|
|
buildEthTxFromParams (txParams) {
|
2017-01-13 11:00:11 +01:00
|
|
|
// apply gas multiplyer
|
2017-03-08 07:51:39 +01:00
|
|
|
let gasPrice = hexToBn(txParams.gasPrice)
|
2017-01-13 11:00:11 +01:00
|
|
|
// multiply and divide by 100 so as to add percision to integer mul
|
|
|
|
txParams.gasPrice = ethUtil.intToHex(gasPrice.toNumber())
|
|
|
|
// normalize values
|
|
|
|
txParams.to = normalize(txParams.to)
|
|
|
|
txParams.from = normalize(txParams.from)
|
|
|
|
txParams.value = normalize(txParams.value)
|
|
|
|
txParams.data = normalize(txParams.data)
|
|
|
|
txParams.gasLimit = normalize(txParams.gasLimit || txParams.gas)
|
|
|
|
txParams.nonce = normalize(txParams.nonce)
|
|
|
|
// build ethTx
|
2017-02-28 21:00:07 +01:00
|
|
|
log.info(`Prepared tx for signing: ${JSON.stringify(txParams)}`)
|
2017-01-13 11:00:11 +01:00
|
|
|
const ethTx = new Transaction(txParams)
|
|
|
|
return ethTx
|
|
|
|
}
|
|
|
|
|
|
|
|
publishTransaction (rawTx, cb) {
|
|
|
|
this.query.sendRawTransaction(rawTx, cb)
|
|
|
|
}
|
2017-01-14 02:47:20 +01:00
|
|
|
|
|
|
|
validateTxParams (txParams, cb) {
|
|
|
|
if (('value' in txParams) && txParams.value.indexOf('-') === 0) {
|
|
|
|
cb(new Error(`Invalid transaction value of ${txParams.value} not a positive number.`))
|
|
|
|
} else {
|
|
|
|
cb()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-12-14 21:55:41 +01:00
|
|
|
}
|
2017-01-13 11:00:11 +01:00
|
|
|
|
|
|
|
// util
|
|
|
|
|
|
|
|
function isUndef(value) {
|
|
|
|
return value === undefined
|
2017-01-14 02:47:20 +01:00
|
|
|
}
|
2017-03-08 07:47:35 +01:00
|
|
|
|
|
|
|
function bnToHex(inputBn) {
|
|
|
|
return ethUtil.addHexPrefix(inputBn.toString(16))
|
|
|
|
}
|
|
|
|
|
|
|
|
function hexToBn(inputHex) {
|
|
|
|
return new BN(ethUtil.stripHexPrefix(inputHex), 16)
|
|
|
|
}
|