Uninstalls a filter with given id. Should always be called when watch is no longer needed. Additionally, Filters timeout when they aren’t requested with eth_getFilterChangesfor a period of time.
Uninstalls a filter with the given ID. Should always be called when a watch is no longer needed. Additionally, filters time out when they aren’t requested with eth_getFilterChanges
for a period of time.
PARAMETERS
Filter ID
- (required) The filter ID.
REQUEST
{
"jsonrpc": "2.0",
"method": "eth_uninstallFilter",
"params": [
"0x846c04df402c4c5cfbb639daaa5a331c"
],
"id": 0
}
RESPONSE
Result
- true
if the filter was successfully uninstalled, otherwise false
.
{
"jsonrpc": "2.0",
"id": 0,
"result": true
}