interface EthereumGasEthersResponse {
    gasPrice: null | number;
    maxFeePerGas: null | number;
    maxPriorityFeePerGas: null | number;
    timestamp: number;
}

Properties

gasPrice: null | number

The gasPrice to use for legacy transactions or networks which do not support EIP-1559.

maxFeePerGas: null | number

The maxFeePerGas to use for a transaction. This is based on the most recent block's baseFee.

maxPriorityFeePerGas: null | number

The maxPriorityFeePerGas to use for a transaction. This accounts for the uncle risk and for the majority of current MEV risk

timestamp: number

Generated using TypeDoc