BlockTransactionList
Paginated list of transactions within a block, with optional aggregate statistics.
Schema Definition
type BlockTransactionList implements PaginatedList {
entries: [BlockTransaction!]!
totalCount: Int!
pageInfo: PageInfo!
stats: TransactionStats
}
Fields
| Field | Type | Description |
|---|---|---|
entries | List of transactions in this page. | |
totalCount | Total number of transactions matching the query across all pages. | |
pageInfo | Pagination metadata for navigating through results. | |
stats | TransactionStats object | Aggregate statistics for the transactions in this list. |
Interfaces
| Interface | Description |
|---|---|
PaginatedList interface | Base interface for paginated list responses. All list types in the schema implement this interface to provide consistent pagination. |
Member Of
Block object