chaingate
Version:
A complete TypeScript library for connecting to and making transactions on different blockchains
8 lines (7 loc) • 440 B
TypeScript
import { CurrencyAmount } from '../../CurrencyAmount';
import { CurrencyFee } from '../../CurrencyFee';
export declare class EvmFee extends CurrencyFee {
readonly maxFeePerGas: CurrencyAmount;
readonly maxPriorityFeePerGas: CurrencyAmount;
constructor(maxFeePerGas: CurrencyAmount, maxPriorityFeePerGas: CurrencyAmount, isApproximate: boolean, enoughFunds: boolean, confirmationTimeSecs?: number, feeAmount?: CurrencyAmount);
}