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

  1. Object - Filter object:
FieldTypeDescription
fromBlock`QUANTITYTAG`
toBlock`QUANTITYTAG`
fromAddressArray<DATA>Optional sender addresses.
toAddressArray<DATA>Optional receiver addresses.
afterQUANTITYOptional pagination offset.
countQUANTITYOptional 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}'

Try It