1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 20:05:27 +02:00
metamask-extension/app/scripts/lib/tx-utils.js

98 lines
3.3 KiB
JavaScript
Raw Normal View History

2017-08-04 19:55:00 +02:00
const EthQuery = require('ethjs-query')
const Transaction = require('ethereumjs-tx')
const normalize = require('eth-sig-util').normalize
2017-08-04 19:55:00 +02:00
const {
hexToBn,
BnMultiplyByFraction,
bnToHex,
} = require('./util')
2016-12-16 19:33:36 +01:00
/*
tx-utils are utility methods for Transaction manager
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
module.exports = class txProvideUtils {
2017-08-04 19:55:00 +02:00
constructor (provider) {
this.query = new EthQuery(provider)
2016-12-14 21:55:41 +01: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)
2017-08-02 17:35:35 +02:00
return txMeta
2016-12-14 21:55:41 +01:00
}
async estimateTxGas (txMeta, blockGasLimitHex) {
const txParams = txMeta.txParams
2016-12-14 21:55:41 +01:00
// check if gasLimit is already specified
txMeta.gasLimitSpecified = Boolean(txParams.gas)
2016-12-14 21:55:41 +01:00
// if not, fallback to block gasLimit
if (!txMeta.gasLimitSpecified) {
const blockGasLimitBN = hexToBn(blockGasLimitHex)
2017-06-01 21:53:16 +02:00
const saferGasLimitBN = BnMultiplyByFraction(blockGasLimitBN, 19, 20)
txParams.gas = bnToHex(saferGasLimitBN)
2016-12-14 21:55:41 +01:00
}
// run tx, see if it will OOG
2017-08-02 17:35:35 +02:00
return this.query.estimateGas(txParams)
2016-12-14 21:55:41 +01:00
}
setTxGas (txMeta, blockGasLimitHex, estimatedGasHex) {
txMeta.estimatedGas = estimatedGasHex
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
if (txMeta.gasLimitSpecified) {
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
const recommendedGasHex = this.addGasBuffer(txMeta.estimatedGas, blockGasLimitHex)
txParams.gas = recommendedGasHex
2016-12-14 21:55:41 +01:00
return
}
2017-03-08 07:18:14 +01:00
addGasBuffer (initialGasLimitHex, blockGasLimitHex) {
const initialGasLimitBn = hexToBn(initialGasLimitHex)
const blockGasLimitBn = hexToBn(blockGasLimitHex)
const upperGasLimitBn = blockGasLimitBn.muln(0.9)
2017-03-08 07:18:14 +01:00
const bufferedGasLimitBn = initialGasLimitBn.muln(1.5)
2017-03-08 07:18:14 +01:00
// if initialGasLimit is above blockGasLimit, dont modify it
if (initialGasLimitBn.gt(upperGasLimitBn)) return bnToHex(initialGasLimitBn)
2017-03-08 07:18:14 +01:00
// if bufferedGasLimit is below blockGasLimit, use bufferedGasLimit
if (bufferedGasLimitBn.lt(upperGasLimitBn)) return bnToHex(bufferedGasLimitBn)
2017-03-08 07:18:14 +01:00
// otherwise use blockGasLimit
return bnToHex(upperGasLimitBn)
2016-12-14 21:55:41 +01: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
}
2017-08-03 01:09:37 +02:00
async publishTransaction (rawTx) {
return await this.query.sendRawTransaction(rawTx)
}
async validateTxParams (txParams) {
if (('value' in txParams) && txParams.value.indexOf('-') === 0) {
throw new Error(`Invalid transaction value of ${txParams.value} not a positive number.`)
}
}
2017-08-04 19:55:00 +02:00
}