API Reference

eth_uninstallFilter

'Uninstalls the filter with a given ID. You can call this method when a filter is no longer needed.'
'If a filter has not been requested by eth_getFilterChanges for a specific period of time, the filter times out and is automatically uninstalled.'

Request Parameters

  • FILTER ID: a hexadecimal string.

Response

The result of the filter uninstallation.

Result Fields

  • UNINSTALLED FLAG: returns true if the filter was successfully uninstalled. Otherwise, it returns false.

Examples

Example Responses
{
    "jsonrpc": "2.0",
    "id": 1,
    "result": true
}
Language
Click Try It! to start a request and see the response here!