nifty-wallet/app/scripts/lib/tx-utils.js

135 lines
4.0 KiB
JavaScript
Raw Normal View History

2016-12-14 12:55:41 -08:00
const async = require('async')
const ethUtil = require('ethereumjs-util')
const Transaction = require('ethereumjs-tx')
const normalize = require('eth-sig-util').normalize
2016-12-14 12:55:41 -08:00
const BN = ethUtil.BN
2016-12-16 10:33:36 -08:00
/*
tx-utils are utility methods for Transaction manager
its passed ethquery
2016-12-16 10:33:36 -08:00
and used to do things like calculate gas of a tx.
*/
2016-12-14 12:55:41 -08:00
module.exports = class txProviderUtils {
constructor (ethQuery) {
this.query = ethQuery
2016-12-14 12:55:41 -08:00
}
analyzeGasUsage (txMeta, cb) {
2016-12-14 12:55:41 -08:00
var self = this
this.query.getBlockByNumber('latest', true, (err, block) => {
if (err) return cb(err)
async.waterfall([
self.estimateTxGas.bind(self, txMeta, block.gasLimit),
self.setTxGas.bind(self, txMeta, block.gasLimit),
2016-12-14 12:55:41 -08:00
], cb)
})
}
estimateTxGas (txMeta, blockGasLimitHex, cb) {
const txParams = txMeta.txParams
2016-12-14 12:55:41 -08:00
// check if gasLimit is already specified
txMeta.gasLimitSpecified = Boolean(txParams.gas)
2016-12-14 12:55:41 -08:00
// if not, fallback to block gasLimit
if (!txMeta.gasLimitSpecified) {
2016-12-14 12:55:41 -08:00
txParams.gas = blockGasLimitHex
}
// run tx, see if it will OOG
this.query.estimateGas(txParams, cb)
}
setTxGas (txMeta, blockGasLimitHex, estimatedGasHex, cb) {
txMeta.estimatedGas = estimatedGasHex
const txParams = txMeta.txParams
2017-01-10 14:20:46 -08:00
2016-12-14 12:55:41 -08:00
// if gasLimit was specified and doesnt OOG,
// use original specified amount
if (txMeta.gasLimitSpecified) {
txMeta.estimatedGas = txParams.gas
2016-12-14 12:55:41 -08:00
cb()
return
}
// if gasLimit not originally specified,
// try adding an additional gas buffer to our estimation for safety
const recommendedGasHex = this.addGasBuffer(txMeta.estimatedGas, blockGasLimitHex)
txParams.gas = recommendedGasHex
2016-12-14 12:55:41 -08:00
cb()
return
}
2017-03-07 22:18:14 -08:00
addGasBuffer (initialGasLimitHex, blockGasLimitHex) {
const initialGasLimitBn = hexToBn(initialGasLimitHex)
const blockGasLimitBn = hexToBn(blockGasLimitHex)
const upperGasLimitBn = blockGasLimitBn.muln(0.9)
2017-03-07 22:18:14 -08:00
const bufferedGasLimitBn = initialGasLimitBn.muln(1.5)
2017-03-07 22:18:14 -08:00
// if initialGasLimit is above blockGasLimit, dont modify it
if (initialGasLimitBn.gt(upperGasLimitBn)) return bnToHex(initialGasLimitBn)
2017-03-07 22:18:14 -08:00
// if bufferedGasLimit is below blockGasLimit, use bufferedGasLimit
if (bufferedGasLimitBn.lt(upperGasLimitBn)) return bnToHex(bufferedGasLimitBn)
2017-03-07 22:18:14 -08:00
// otherwise use blockGasLimit
return bnToHex(upperGasLimitBn)
2016-12-14 12:55:41 -08:00
}
fillInTxParams (txParams, cb) {
2017-04-26 21:05:45 -07:00
const fromAddress = txParams.from
const 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)
2017-04-26 21:05:45 -07:00
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
buildEthTxFromParams (txParams) {
// normalize values
txParams.to = normalize(txParams.to)
txParams.from = normalize(txParams.from)
txParams.value = normalize(txParams.value)
txParams.data = normalize(txParams.data)
txParams.gas = normalize(txParams.gas || txParams.gasLimit)
txParams.gasPrice = normalize(txParams.gasPrice)
txParams.nonce = normalize(txParams.nonce)
// build ethTx
log.info(`Prepared tx for signing: ${JSON.stringify(txParams)}`)
const ethTx = new Transaction(txParams)
return ethTx
}
publishTransaction (rawTx, cb) {
this.query.sendRawTransaction(rawTx, cb)
}
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 12:55:41 -08:00
}
// util
2017-04-26 21:05:45 -07:00
function isUndef (value) {
return value === undefined
}
2017-04-26 21:05:45 -07:00
function bnToHex (inputBn) {
return ethUtil.addHexPrefix(inputBn.toString(16))
}
2017-04-26 21:05:45 -07:00
function hexToBn (inputHex) {
return new BN(ethUtil.stripHexPrefix(inputHex), 16)
}