Skip to main content

TransactionList

Paginated list of transactions with optional aggregate statistics.

Schema Definition

type TransactionList implements PaginatedList {
entries: [Transaction!]!
totalCount: Int!
pageInfo: PageInfo!
stats: TransactionStats
}

Fields

FieldTypeDescription
entries
[Transaction!]! non-null object
List of transactions in this page.
totalCount
Int! non-null scalar
Total number of transactions matching the query across all pages.
pageInfo
PageInfo! non-null object
Pagination metadata for navigating through results.
statsAggregate statistics for the transactions matching the query.

Interfaces

InterfaceDescription
PaginatedList interface
Base interface for paginated list responses. All list types in the schema implement this interface to provide consistent pagination.

Returned By

transactions query

Member Of

Address interface ● Contract object ● EOA object ● IContract interface ● NFTContract object ● Token object