declare interface IFeeData {
    gasPrice: number;
    maxFeePerGas?: number;
    maxPriorityFeePerGas?: number;
    baseFeePerGas?: number;
}
