Skip to main content

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

FieldTypeDescription
numEntriesUInt64! non-null scalarThe total number of transaction entries matching the query criteria in the current page.
cursorUInt64 scalarAn 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 objectAn array of BlockTransaction objects representing a transaction included within the block.
statsTransactionStats objectAn object representing aggregate statistics for the transactions in the list.

Member Of

Block object