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_filter"
required
JSON-RPC method name.
An array with a single object specifying filter criteria.Positional parameters for arbtrace_filter:
Returns
List of trace objects that match the filter.
Call type (call, delegatecall)
Error message if execution failed
Return value from the contract call
Nesting structure of the trace call stack
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_filter",
"params": [
{
"fromBlock": "0xa7816b",
"toBlock": "0xa7816c",
"fromAddress": [
"0x1c7d91ccbdbf378bac0f074678b09cb589184e4e"
]
}
]
}'
{
"jsonrpc": "2.0",
"id": 1,
"result": []
}