Block gas used statistics

BlockGasused

interface BlockGasused {
    total?: string | number;
    list?: {
        gasUsed?: string;
        blockNumber?: number;
        timestamp?: string | number;
    }[];
}

Properties

Properties

total?: string | number

Total number of records

list?: { gasUsed?: string; blockNumber?: number; timestamp?: string | number }[]

List of gas used statistics

Type declaration

  • OptionalgasUsed?: string

    Gas used amount

  • OptionalblockNumber?: number

    Block number

  • Optionaltimestamp?: string | number

    Block timestamp (UTC)