BlockTransactionList
The BlockTransactionList object represents a paginated collection of BlockTransaction objects representing a transaction included within a specific block.
It is returned by the transactions field on the Blockobject.
Schema Definition
type BlockTransactionList {
numEntries: UInt64!
cursor: UInt64
entries: [BlockTransaction!]!
stats: TransactionStats
}
Fields
| Field | Type | Description |
|---|---|---|
numEntries | UInt64! non-null scalar | The total number of transaction entries matching the query criteria in the current page. |
cursor | UInt64 scalar | An optional pagination cursor pointing to the next page of results. Use this value with skip in subsequent queries to fetch the next page. |
entries | [BlockTransaction!]! non-null object | An array of BlockTransaction objects representing a transaction included within the block. |
stats | TransactionStats object | An object representing aggregate statistics for the transactions in the list. |
Member Of
Block object