getBlockTransactionsExt
method retrieves extended transaction information from a specific block in the TON blockchain. This method provides more detailed transaction data compared to the basic getBlockTransactions
method.
workchain
(integer, required) — The ID of the workchain. Example: -1
for the masterchain.shard
(string, required) — The ID of the shard. Example: "-9223372036854775808"
for the masterchain.seqno
(integer, required) — The sequence number of the block. Example: 39064874
.count
(integer, optional) — The maximum number of transactions to return. Default: 40
.id
(object) — The identifier of the block, containing:
workchain
(integer) — The workchain ID of the block.shard
(string) — The shard ID of the block.seqno
(integer) — The sequence number of the block.root_hash
(string) — The root hash of the block.file_hash
(string) — The file hash of the block.transactions
(array of objects) — An array of transaction objects, each containing:
account
(string) — The account address involved in the transaction.hash
(string) — The transaction hash.lt
(string) — The logical time of the transaction.transaction
(object) — Detailed transaction information.incomplete
(boolean) — Indicates if the returned list of transactions is incomplete.getBlockTransactionsExt
method in TON is for advanced blockchain explorers, analytical tools, or any application that needs comprehensive transaction data within specific blocks. This method can be used to:
The workchain ID
The shard ID
The sequence number of the block
The maximum number of transactions to return
Extended transaction information from the specified block
The response is of type object
.