merge master

This commit is contained in:
smart_ex 2022-06-24 18:30:20 +10:00
commit b2ccfb29d4
3 changed files with 2 additions and 3 deletions

View File

@ -1,6 +1,6 @@
{
"name": "tx-manager",
"version": "0.4.7",
"version": "0.4.8",
"description": "",
"main": "index.js",
"types": "index.d.ts",

View File

@ -463,7 +463,7 @@ class Transaction {
// Check network support for EIP-1559
if (this.manager.config.ENABLE_EIP1559 && block && block.baseFeePerGas) {
const maxPriorityFeePerGas = await this._estimatePriorityFee()
const maxPriorityFeePerGas = parseUnits(this.manager.config.DEFAULT_PRIORITY_FEE.toString(), 'gwei')
const maxFeePerGas = block.baseFeePerGas
.mul(100 + this.manager.config.BASE_FEE_RESERVE_PERCENTAGE)

View File

@ -18,7 +18,6 @@ const defaultConfig = {
ENABLE_EIP1559: true,
DEFAULT_PRIORITY_FEE: 3,
BASE_FEE_RESERVE_PERCENTAGE: 50,
PRIORITY_FEE_RESERVE_PERCENTAGE: 10,
}
class TxManager {