Parameters
chainId
string
default:"42170"
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_block"
required
JSON-RPC method name.
Array containing a single block number (as hex) or tag (e.g., “latest”).Positional parameters for arbtrace_block:params[]: The block number (hex) or tag (“latest”, “pending”).
Returns
List of trace objects for all transactions in the block.
Details of the call or contract creation.
Call type (call, delegatecall, etc.)
Error message if the trace failed
Result of the traced call
Output returned by the contract call
List representing call nesting path
Hash of the related transaction
Index of the transaction in the block
Trace type (call, create)
curl --request POST \
--url https://api.uniblock.dev/uni/v1/json-rpc?chainId=42170 \
--header 'content-type: application/json' \
--data '{
"id": 1,
"jsonrpc": "2.0",
"method": "arbtrace_block",
"params": [
"0xb48c3c"
]
}'
{
"jsonrpc": "2.0",
"id": 1,
"result": []
}