eth_getFilterChanges
JSON-RPC methods
jsonrpc eth_getFilterChanges | TRON
TRON API method that polls for filter changes and returns new logs or blocks. This method provides Ethereum-compatible interface for TRON blockchain.
POST
eth_getFilterChanges
TRON API method that polls for changes on a previously created filter and returns new logs or block hashes, providing an Ethereum-compatible interface for monitoring TRON blockchain data.
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
jsonrpc— the JSON-RPC protocol version (always “2.0”)method— the method name (always “eth_getFilterChanges”)params— array containing method parametersfilterId— the filter ID returned by eth_newFilter or eth_newBlockFilter
id— request identifier (number or string)
Response
jsonrpc— the JSON-RPC protocol version (“2.0”)id— the request identifier that matches the requestresult— array of log objects (for log filters) or block hashes (for block filters)
Use case
Thejsonrpc eth_getFilterChanges method is used for:
- Polling for new logs or blocks that match previously created filter criteria
- Building efficient event monitoring systems that check for updates periodically
- Implementing real-time dApp functionality through Web3 interfaces without constant re-filtering
- Creating blockchain monitoring applications that track specific events or block production
Body
application/json
Last modified on April 15, 2026