trace_filter
Counts as 5 requests. See Request Counting.
trace_filter returns trace entries that match a block range and optional address filters. It is a paid trace method, not available on Free, and can be expensive for broad historical ranges.
Parameters
Object- Filter object:
| Field | Type | Description |
|---|---|---|
fromBlock | `QUANTITY | TAG` |
toBlock | `QUANTITY | TAG` |
fromAddress | Array<DATA> | Optional sender addresses. |
toAddress | Array<DATA> | Optional receiver addresses. |
after | QUANTITY | Optional pagination offset. |
count | QUANTITY | Optional page size. |
Request
curl -X POST https://arbitrum-one-rpc.blockreq.com/v1/rpc/public \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","method":"trace_filter","params":[{"fromBlock":"0x1","toBlock":"0x10","count":"0x10"}],"id":1}'Code Examples
curl -X POST https://arbitrum-one-rpc.blockreq.com/v1/rpc/public \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","method":"trace_filter","params":[{"fromBlock":"0x1","toBlock":"0x10","count":"0x10"}],"id":1}'