eth_newBlockFilter
Endpoints
eth_newBlockFilter | Base
Base API method eth_newBlockFilter creates a new filter object that notifies subscribers when a new block is added to the blockchain.
POST
eth_newBlockFilter
Base API methodDocumentation Index
Fetch the complete documentation index at: https://docs.chainstack.com/llms.txt
Use this file to discover all available pages before exploring further.
eth_newBlockFilter creates a new filter object that notifies subscribers when a new block is added to the blockchain. This method is particularly useful for applications that need to stay updated with the latest blocks for processing or monitoring purposes.
Get your own node endpoint todayStart for free and get your app to production levels immediately. No credit card required.You can sign up with your GitHub, X, Google, or Microsoft account.
Parameters
none— This method does not require any parameters.
Response
result— the ID of the created filter. This ID is used to identify the filter in subsequent calls to methods likeeth_getFilterChangesoreth_getFilterLogsto retrieve updates about new blocks.
Use case
Theeth_newBlockFilter method is essential for:
- Applications that perform actions triggered by the addition of new blocks, such as updating a user interface with the latest transactions or block information.
- Services that monitor the blockchain for security or analytical purposes, needing real-time data on block additions.
- Wallets and exchanges that track new blocks to confirm transactions.
Last modified on May 18, 2026