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

130 lines
4.1 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 txProvideUtils {
constructor (ethQuery) {
this.query = ethQuery
2016-12-14 12:55:41 -08:00
}
async analyzeGasUsage (txMeta) {
const block = await this.query.getBlockByNumber('latest', true)
const estimatedGasHex = await this.estimateTxGas(txMeta, block.gasLimit)
this.setTxGas(txMeta, block.gasLimit, estimatedGasHex)
2016-12-14 12:55:41 -08:00
}
async estimateTxGas (txMeta, blockGasLimitHex) {
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) {
const blockGasLimitBN = hexToBn(blockGasLimitHex)
2017-06-01 12:53:16 -07:00
const saferGasLimitBN = BnMultiplyByFraction(blockGasLimitBN, 19, 20)
txParams.gas = bnToHex(saferGasLimitBN)
2016-12-14 12:55:41 -08:00
}
// run tx, see if it will OOG
return await this.query.estimateGas(txParams)
2016-12-14 12:55:41 -08:00
}
setTxGas (txMeta, blockGasLimitHex, estimatedGasHex) {
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
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
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
}
// 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) {
return this.query.sendRawTransaction(rawTx)
}
validateTxParams (txParams) {
return new Promise ((resolve, reject) => {
if (('value' in txParams) && txParams.value.indexOf('-') === 0) {
reject(new Error(`Invalid transaction value of ${txParams.value} not a positive number.`))
} else {
resolve()
}
})
}
2017-07-11 12:52:56 -07:00
sufficientBalance (txParams, hexBalance) {
const balance = hexToBn(hexBalance)
2017-07-11 12:52:56 -07:00
const value = hexToBn(txParams.value)
const gasLimit = hexToBn(txParams.gas)
const gasPrice = hexToBn(txParams.gasPrice)
const maxCost = value.add(gasLimit.mul(gasPrice))
return balance.gte(maxCost)
}
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)
}
2017-06-01 12:53:16 -07:00
function BnMultiplyByFraction (targetBN, numerator, denominator) {
const numBN = new BN(numerator)
const denomBN = new BN(denominator)
return targetBN.mul(numBN).div(denomBN)
}