Type alias FeeValuesEIP1559<TQuantity>

FeeValuesEIP1559<TQuantity>: {
    gasPrice?: never;
    maxFeePerGas: TQuantity;
    maxPriorityFeePerGas: TQuantity;
}

Type Parameters

  • TQuantity = bigint

Type declaration

  • Optional gasPrice?: never

    Base fee per gas.

  • maxFeePerGas: TQuantity

    Total fee per gas in wei (gasPrice/baseFeePerGas + maxPriorityFeePerGas).

  • maxPriorityFeePerGas: TQuantity

    Max priority fee per gas (in wei).

Generated using TypeDoc