Skip to main content

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

FieldTypeDescription
entries
[BlockTransaction!]! 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 in this list.

Interfaces

InterfaceDescription
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