Documentation Index
Fetch the complete documentation index at: https://docs.uniblock.dev/llms.txt
Use this file to discover all available pages before exploring further.
Parameters
chainId
string
default:"toncoin"
required
Unique identifier for a blockchain network.
Request identifier used to match responses.
jsonrpc
string
default:"2.0"
required
JSON-RPC version.
method
string
default:"tryLocateResultTx"
required
JSON-RPC method name.
TON result transaction location request.Parameters for tryLocateResultTx:params.source: Source TON address of the transaction.params.destination: Recipient TON address of the transaction.params.created_lt: Logical time when the transaction was created.
Returns
TON raw transaction.
Transaction Unix timestamp.
Serialized transaction data.
TON internal transaction identifier.
Transaction logical time.
Total transaction fee in nanotons.
TON raw message.
Message value in nanotons.
Forwarding fee in nanotons.
Instant hypercube routing fee.
Logical time when the message was created.
Decoded or raw message data.
Message data type marker.
Base64-encoded message body.
Base64-encoded message text.
Base64-encoded initial state, when present.
Decoded message text when available.
Outgoing messages emitted by the transaction.
TON raw message.
Message value in nanotons.
Forwarding fee in nanotons.
Instant hypercube routing fee.
Logical time when the message was created.
Decoded or raw message data.
Message data type marker.
Base64-encoded message body.
Base64-encoded message text.
Base64-encoded initial state, when present.
Decoded message text when available.
curl --request POST \
--url https://api.uniblock.dev/uni/v1/json-rpc?chainId=toncoin \
--header 'content-type: application/json' \
--data '{
"id": 1,
"jsonrpc": "2.0",
"method": "tryLocateResultTx",
"params": {}
}'
{
"jsonrpc": "2.0",
"id": 1,
"result": {}
}