eth_newPendingTransactionFilter
Cronos node API
eth_newPendingTransactionFilter | Cronos
Cronos API method that creates a filter that listens for new pending transactions on the blockchain. Use it on Cronos via Chainstack.
POST
eth_newPendingTransactionFilter
Cronos API method that creates a filter that listens for new pending transactions on the blockchain. It returns a filter ID, which can be used to retrieve the results using theDocumentation 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_getFilterChanges method. The eth_newBlockFilter method is useful for developers who must be notified of new blocks on the blockchain in real-time.
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
Response
result— a hexadecimal string representing the ID of the newly created filter
Code examples
eth_newPendingTransactionFilter code examples
Note that the
web3.eth.filter methods have been deprecated and replaced with the web3.eth.subscribe in web3.js. See web3.js subscriptions.Use case
One way to use theeth_newPendingTransactionFilter method is to listen for new pending transactions at predefined intervals and extract specific data from them. For instance, a decentralized application might check for pending transactions every second and identify those that transfer a value greater than a certain amount of the CRO token. This could be useful for real-time monitoring high-value transactions or detecting potential fraud or security threats.Last modified on May 18, 2026