Skip to main content

eth_newFilter RPC Method

Creates a filter object, based on filter options, to notify when the state changes (logs). To check if the state has changed, call eth_getFilterChanges.

Updated on
Nov 2, 2023

eth_newFilter RPC Method

Please note that this RPC method have a block range limit of 10,000 blocks to ensure reliability, so it's best to break down queries into smaller chunks for faster responses and better error handling. For more information about the block range limit and how to avoid it, refer to this FAQ To use the eth_newFilter method on the Avalanche C-Chain, ensure that the end of your URL includes ext/bc/C/rpc.

Parameters

object
array
The transaction response object which contains the following filter information:
fromBlock
string
The block number as a string in hexadecimal format or tags. The supported tag values include earliest for the earliest/genesis block, latest for the latest mined block, pending for the pending state/transactions, safe for the most recent secure block, and finalized for the most recent secure block accepted by more than 2/3 of validators. safe and finalized are only supported on Ethereum, Gnosis, Arbitrum, Arbitrum Nova, and Avalanche C-chain
toBlock
string
The block number as a string in hexadecimal format or tags. The supported tag values include earliest for the earliest/genesis block, latest for the latest mined block, pending for the pending state/transactions, safe for the most recent secure block, and finalized for the most recent secure block accepted by more than 2/3 of validators. safe and finalized are only supported on Ethereum, Gnosis, Arbitrum, Arbitrum Nova, and Avalanche C-chain
address
string
The contract address or a list of addresses from which logs should originate
topics
string
An array of DATA topics and also, the topics are order-dependent. Visit here to learn more about topics

Returns

result
It returns a filter id to be used when calling eth_getFilterChanges
Request
1
curl https://docs-demo.avalanche-mainnet.quiknode.pro/ext/bc/C/rpc/ext/bc/C/rpc \
2
-X POST \
3
-H "Content-Type: application/json" \
4
--data '{"jsonrpc":"2.0","method":"eth_newFilter","params":[{"fromBlock": "0xe20360", "toBlock": "0xe20411", "address": "0x6b175474e89094c44da98b954eedeac495271d0f","topics": []}],"id":1}'
Don't have an account yet?
Create your QuickNode endpoint in seconds and start building
Get started for free