tryLocateResultTx
method attempts to locate the result transaction in the TON blockchain based on the source address, destination address, and the logical time of the original transaction. This method is useful for finding the outcome or response to a specific transaction.
source
(string, required) — The source address of the original transaction. Example: UQAX2d4C2d48JeA-0y2_peGabRVumnKY22xPvkuEayC3zTI1
.destination
(string, required) — The destination address of the original transaction. Example: UQBP4mzpDIywL1SV-Wp9ZuBBlzprR9eXQgSYGEXiUEHm73vA
.created_lt
(string, required) — The logical time when the original transaction was created. Example: 47597573000002
.block
(object) — Information about the block containing the result transaction:
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.transaction_id
(object) — The identifier of the result transaction:
lt
(string) — The logical time of the result transaction.hash
(string) — The hash of the result transaction.tryLocateResultTx
method in TON is for applications or services that need to track the outcomes of transactions. This method can be used to:
The source address of the original transaction
The destination address of the original transaction
The logical time when the original transaction was created
Information about the located result transaction
The response is of type object
.