Parameters
chainId
string
default: "42161"
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: "arbtrace_transaction"
required
JSON-RPC method name.
Array with a single element: the hash of the transaction. Positional parameters for arbtrace_transaction: params[]: The transaction hash (32-byte hex string).
Returns
Array of Parity trace objects for the specified transaction. Call type (e.g., call, delegatecall)
Transferred value in wei (hex)
Block hash where the tx was included
Gas used for the call (hex)
Return data from the call (hex)
Execution path hierarchy (list of integers). Type of the trace (e.g., call, create)
curl --request POST \
--url https://api.uniblock.dev/uni/v1/json-rpc?chainId= 42161 \
--header 'content-type: application/json' \
--data '{
"id": 1,
"jsonrpc": "2.0",
"method": "arbtrace_transaction",
"params": [
"0xa3a97b9d1de234efb2ca9374c5918f9a7fc2adff4102aff686df01b6a3dc74f7"
]
}'
{
"jsonrpc" : "2.0" ,
"id" : 1 ,
"result" : []
}