eth_uninstallFilter
Last updated
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_getFilterChanges for a period of time.
DATA - The filter id.
Boolean - true if the filter was successfully uninstalled, otherwise false.
curl https://rpc.adiri.tel \
-X POST \
-H "Content-Type: application/json" \
--data '{"jsonrpc":"2.0","method":"eth_uninstallFilter","params":["0x26c221936b2025a44f60294273d7bbaa"],"id":73}'{
"jsonrpc": "2.0",
"result": true,
"id": 73
}Last updated