test-pkg-ngn
Version:
A library containing helper functions that facilitate scripting for keepers of the Keep3r Network
12 lines (11 loc) • 399 B
TypeScript
import { BigNumber } from 'ethers';
/**
* @notice The required gas parameters to include in a transaction of type 2.
*
* @param priorityFeeInGwei The priority fee to send with the transaction expressed in Gwei.
* @param maxFeePerGas The max fee per gas to send with the transaction.
*/
export interface GasType2Parameters {
priorityFeeInGwei: BigNumber;
maxFeePerGas: BigNumber;
}