2021-02-04 19:15:23 +01:00
|
|
|
import EthQuery from 'ethjs-query';
|
|
|
|
import log from 'loglevel';
|
2021-04-16 17:05:13 +02:00
|
|
|
import { addHexPrefix } from 'ethereumjs-util';
|
2021-02-04 19:15:23 +01:00
|
|
|
import { cloneDeep } from 'lodash';
|
|
|
|
import { hexToBn, BnMultiplyByFraction, bnToHex } from '../../lib/util';
|
2018-09-18 05:04:10 +02:00
|
|
|
|
2020-05-01 02:44:51 +02:00
|
|
|
/**
|
|
|
|
* Result of gas analysis, including either a gas estimate for a successful analysis, or
|
|
|
|
* debug information for a failed analysis.
|
2022-01-07 16:57:33 +01:00
|
|
|
*
|
2022-07-27 15:28:05 +02:00
|
|
|
* @typedef {object} GasAnalysisResult
|
2020-05-01 02:44:51 +02:00
|
|
|
* @property {string} blockGasLimit - The gas limit of the block used for the analysis
|
2020-07-20 19:02:49 +02:00
|
|
|
* @property {string} estimatedGasHex - The estimated gas, in hexadecimal
|
2022-07-27 15:28:05 +02:00
|
|
|
* @property {object} simulationFails - Debug information about why an analysis failed
|
2020-05-01 02:44:51 +02:00
|
|
|
*/
|
|
|
|
|
2018-04-25 20:13:51 +02:00
|
|
|
/**
|
2022-01-07 16:57:33 +01:00
|
|
|
* tx-gas-utils are gas utility methods for Transaction manager
|
|
|
|
* its passed ethquery
|
|
|
|
* and used to do things like calculate gas of a tx.
|
|
|
|
*
|
2022-07-27 15:28:05 +02:00
|
|
|
* @param {object} provider - A network provider.
|
2022-01-07 16:57:33 +01:00
|
|
|
*/
|
2016-12-14 21:55:41 +01:00
|
|
|
|
2020-04-27 16:45:00 +02:00
|
|
|
export default class TxGasUtil {
|
2020-11-03 00:41:28 +01:00
|
|
|
constructor(provider) {
|
2021-02-04 19:15:23 +01:00
|
|
|
this.query = new EthQuery(provider);
|
2016-12-14 21:55:41 +01:00
|
|
|
}
|
2017-01-14 02:47:20 +01:00
|
|
|
|
2018-04-25 20:13:51 +02:00
|
|
|
/**
|
2022-07-27 15:28:05 +02:00
|
|
|
* @param {object} txMeta - the txMeta object
|
2022-01-07 16:57:33 +01:00
|
|
|
* @returns {GasAnalysisResult} The result of the gas analysis
|
|
|
|
*/
|
2020-11-03 00:41:28 +01:00
|
|
|
async analyzeGasUsage(txMeta) {
|
2021-02-04 19:15:23 +01:00
|
|
|
const block = await this.query.getBlockByNumber('latest', false);
|
2020-05-01 17:25:45 +02:00
|
|
|
|
|
|
|
// fallback to block gasLimit
|
2021-02-04 19:15:23 +01:00
|
|
|
const blockGasLimitBN = hexToBn(block.gasLimit);
|
|
|
|
const saferGasLimitBN = BnMultiplyByFraction(blockGasLimitBN, 19, 20);
|
|
|
|
let estimatedGasHex = bnToHex(saferGasLimitBN);
|
|
|
|
let simulationFails;
|
2017-08-09 08:34:18 +02:00
|
|
|
try {
|
2021-02-04 19:15:23 +01:00
|
|
|
estimatedGasHex = await this.estimateTxGas(txMeta);
|
2020-05-01 17:25:45 +02:00
|
|
|
} catch (error) {
|
2021-02-04 19:15:23 +01:00
|
|
|
log.warn(error);
|
2020-05-01 02:44:51 +02:00
|
|
|
simulationFails = {
|
2020-05-01 17:25:45 +02:00
|
|
|
reason: error.message,
|
|
|
|
errorKey: error.errorKey,
|
2018-11-29 19:07:05 +01:00
|
|
|
debug: { blockNumber: block.number, blockGasLimit: block.gasLimit },
|
2021-02-04 19:15:23 +01:00
|
|
|
};
|
2017-08-09 08:34:18 +02:00
|
|
|
}
|
2020-05-01 02:44:51 +02:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
return { blockGasLimit: block.gasLimit, estimatedGasHex, simulationFails };
|
2016-12-14 21:55:41 +01:00
|
|
|
}
|
|
|
|
|
2018-04-25 20:13:51 +02:00
|
|
|
/**
|
2022-01-07 16:57:33 +01:00
|
|
|
* Estimates the tx's gas usage
|
|
|
|
*
|
2022-07-27 15:28:05 +02:00
|
|
|
* @param {object} txMeta - the txMeta object
|
2022-01-07 16:57:33 +01:00
|
|
|
* @returns {string} the estimated gas limit as a hex string
|
|
|
|
*/
|
2020-11-03 00:41:28 +01:00
|
|
|
async estimateTxGas(txMeta) {
|
2021-02-04 19:15:23 +01:00
|
|
|
const txParams = cloneDeep(txMeta.txParams);
|
2020-12-03 18:25:42 +01:00
|
|
|
|
|
|
|
// `eth_estimateGas` can fail if the user has insufficient balance for the
|
|
|
|
// value being sent, or for the gas cost. We don't want to check their
|
|
|
|
// balance here, we just want the gas estimate. The gas price is removed
|
2021-06-28 17:33:19 +02:00
|
|
|
// to skip those balance checks. We check balance elsewhere. We also delete
|
|
|
|
// maxFeePerGas and maxPriorityFeePerGas to support EIP-1559 txs.
|
2021-02-04 19:15:23 +01:00
|
|
|
delete txParams.gasPrice;
|
2021-06-28 17:33:19 +02:00
|
|
|
delete txParams.maxFeePerGas;
|
|
|
|
delete txParams.maxPriorityFeePerGas;
|
2018-01-16 00:08:07 +01:00
|
|
|
|
2018-10-10 05:17:05 +02:00
|
|
|
// estimate tx gas requirements
|
2021-02-04 19:15:23 +01:00
|
|
|
return await this.query.estimateGas(txParams);
|
2016-12-14 21:55:41 +01:00
|
|
|
}
|
|
|
|
|
2018-04-25 20:13:51 +02:00
|
|
|
/**
|
2022-01-07 16:57:33 +01:00
|
|
|
* Adds a gas buffer with out exceeding the block gas limit
|
|
|
|
*
|
|
|
|
* @param {string} initialGasLimitHex - the initial gas limit to add the buffer too
|
|
|
|
* @param {string} blockGasLimitHex - the block gas limit
|
|
|
|
* @param multiplier
|
|
|
|
* @returns {string} the buffered gas limit as a hex string
|
|
|
|
*/
|
2020-11-03 00:41:28 +01:00
|
|
|
addGasBuffer(initialGasLimitHex, blockGasLimitHex, multiplier = 1.5) {
|
2021-02-04 19:15:23 +01:00
|
|
|
const initialGasLimitBn = hexToBn(initialGasLimitHex);
|
|
|
|
const blockGasLimitBn = hexToBn(blockGasLimitHex);
|
|
|
|
const upperGasLimitBn = blockGasLimitBn.muln(0.9);
|
|
|
|
const bufferedGasLimitBn = initialGasLimitBn.muln(multiplier);
|
2017-03-23 21:56:32 +01:00
|
|
|
|
2017-03-08 07:18:14 +01:00
|
|
|
// if initialGasLimit is above blockGasLimit, dont modify it
|
2019-11-20 01:03:20 +01:00
|
|
|
if (initialGasLimitBn.gt(upperGasLimitBn)) {
|
2021-02-04 19:15:23 +01:00
|
|
|
return bnToHex(initialGasLimitBn);
|
2019-11-20 01:03:20 +01:00
|
|
|
}
|
2017-03-08 07:18:14 +01:00
|
|
|
// if bufferedGasLimit is below blockGasLimit, use bufferedGasLimit
|
2019-11-20 01:03:20 +01:00
|
|
|
if (bufferedGasLimitBn.lt(upperGasLimitBn)) {
|
2021-02-04 19:15:23 +01:00
|
|
|
return bnToHex(bufferedGasLimitBn);
|
2019-11-20 01:03:20 +01:00
|
|
|
}
|
2017-03-08 07:18:14 +01:00
|
|
|
// otherwise use blockGasLimit
|
2021-02-04 19:15:23 +01:00
|
|
|
return bnToHex(upperGasLimitBn);
|
2016-12-14 21:55:41 +01:00
|
|
|
}
|
2020-10-06 20:28:38 +02:00
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
async getBufferedGasLimit(txMeta, multiplier) {
|
|
|
|
const {
|
|
|
|
blockGasLimit,
|
|
|
|
estimatedGasHex,
|
|
|
|
simulationFails,
|
2021-02-04 19:15:23 +01:00
|
|
|
} = await this.analyzeGasUsage(txMeta);
|
2020-10-06 20:28:38 +02:00
|
|
|
|
|
|
|
// add additional gas buffer to our estimation for safety
|
2020-11-03 00:41:28 +01:00
|
|
|
const gasLimit = this.addGasBuffer(
|
2021-04-16 17:05:13 +02:00
|
|
|
addHexPrefix(estimatedGasHex),
|
2020-11-03 00:41:28 +01:00
|
|
|
blockGasLimit,
|
|
|
|
multiplier,
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
|
|
|
return { gasLimit, simulationFails };
|
2020-10-06 20:28:38 +02:00
|
|
|
}
|
2018-04-10 23:53:40 +02:00
|
|
|
}
|