Block transactions by type statistics

BlockTxsbytype

interface BlockTxsbytype {
    total?: string | number;
    list?: {
        txsByType?: { legacy?: number; cip2930?: number; cip1559?: number };
        blockNumber?: number;
        timestamp?: string | number;
    }[];
}

Properties

Properties

total?: string | number

Total number of records

list?: {
    txsByType?: { legacy?: number; cip2930?: number; cip1559?: number };
    blockNumber?: number;
    timestamp?: string | number;
}[]

List of transaction type statistics

Type declaration

  • OptionaltxsByType?: { legacy?: number; cip2930?: number; cip1559?: number }

    Transaction counts by type

    • Optionallegacy?: number

      Legacy transaction count

    • Optionalcip2930?: number

      CIP2930 transaction count

    • Optionalcip1559?: number

      CIP1559 transaction count

  • OptionalblockNumber?: number

    Block number

  • Optionaltimestamp?: string | number

    Block timestamp (UTC)