Skip to main content

TransactionStats

The TransactionStats object represents aggregate statistics for the transactions included in a TransactionsList object.

Schema Definition

type TransactionStats {
totalCount: UInt64!
totalValue: UInt256!
averageGasPrice: UInt256!
averageGasUsed: UInt64!
uniqueAddresses: UInt64!
}

Fields

FieldTypeDescription
totalCountUInt64! non-null scalarThe total number of transactions included in the TransactionsList object.
totalValueUInt256! non-null scalarThe cumulative value of all transactions included in the TransactionsList object in wei.
averageGasPriceUInt256! non-null scalarThe average gas price across all transactions included in the TransactionsList object.
averageGasUsedUInt64! non-null scalarThe average amount of gas consumed per transaction included in the TransactionsList object.
uniqueAddressesUInt64! non-null scalarThe count of distinct addresses involved in the transactions included in the TransactionsList object.

Member Of

BlockTransactionList object ● TransactionList object