interface EthereumGasEthgasstationResponse {
    baseFee: number;
    blockNumber: number;
    blockTime: number;
    gasPrice: {
        fast: number;
        instant: number;
        standard: number;
    };
    nextBaseFee: number;
    priorityFee: {
        fast: number;
        instant: number;
        standard: number;
    };
}

Properties

baseFee: number
blockNumber: number
blockTime: number
gasPrice: {
    fast: number;
    instant: number;
    standard: number;
}

Type declaration

  • fast: number
  • instant: number
  • standard: number
nextBaseFee: number
priorityFee: {
    fast: number;
    instant: number;
    standard: number;
}

Type declaration

  • fast: number
  • instant: number
  • standard: number

Generated using TypeDoc