Base API method 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 you own node endpoint today
Start 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.
none
— This method does not require any parameters.result
— the ID of the created filter. This ID is used to identify the filter in subsequent calls to methods like eth_getFilterChanges
or eth_getFilterLogs
to retrieve updates about new blocks.The eth_newBlockFilter
method is essential for:
The ID of the created block filter
The response is of type object
.
Base API method 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 you own node endpoint today
Start 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.
none
— This method does not require any parameters.result
— the ID of the created filter. This ID is used to identify the filter in subsequent calls to methods like eth_getFilterChanges
or eth_getFilterLogs
to retrieve updates about new blocks.The eth_newBlockFilter
method is essential for:
The ID of the created block filter
The response is of type object
.