Skip to main content

TransactionStats

Aggregate statistics for a set of transactions. Useful for analytics and summary views.

Schema Definition

type TransactionStats {
totalCount: Int!
totalValue: TokenAmount!
averageGasPrice: Wei!
averageGasUsed: BigInt!
uniqueAddresses: Int!
}

Fields

FieldTypeDescription
totalCount
Int! non-null scalar
Total number of transactions in the set.
totalValue
TokenAmount! non-null object
Sum of all native currency values transferred across all transactions.
averageGasPrice
Wei! non-null scalar
Average gas price paid across all transactions.
averageGasUsed
BigInt! non-null scalar
Average gas consumed across all transactions.
uniqueAddresses
Int! non-null scalar
Number of distinct addresses involved (as sender or recipient).

Member Of

BlockTransactionList object ● TransactionList object