Skip to main content

Parameters

chainId
string
default:"398"
required
Unique identifier for a blockchain network.
id
number
default:1
required
Request identifier used to match responses.
jsonrpc
string
default:"2.0"
required
JSON-RPC version.
method
string
default:"EXPERIMENTAL_tx_status"
required
JSON-RPC method name.
params
object
required
Checks status of a transaction by hash and includes all receipt outcomes and metadata.Parameters for EXPERIMENTAL_tx_status:
  • params.tx_hash: Base58-encoded transaction hash.
  • params.sender_account_id: Account ID of the sender. Used to determine which shard to search in.
  • params.wait_until: Optional execution level to wait for before responding. Use NONE for immediate response.

Returns

result
object
Complete transaction status, including all related receipts and outcomes.
curl --request POST \
  --url https://api.uniblock.dev/uni/v1/json-rpc?chainId=398 \
  --header 'content-type: application/json' \
  --data '{
    "id": 1,
    "jsonrpc": "2.0",
    "method": "EXPERIMENTAL_tx_status",
    "params": {}
  }'
{
  "jsonrpc": "2.0",
  "id": 1,
  "result": {}
}