eth_uninstallFilter - Ethereum
Deletes the filter with the stated id. Call it out every time you don’t need the watch anymore. Filters can timeout if you don’t recall them via eth_getFilterChanges for a certain time
How to Use the eth_uninstallFilter Method
Parameters
QUANTITY - The filter id.
What you receive
Boolean - true in case of successful uninstalls, otherwise returns false.
Sample
Here is a typical appliance example.
Call
curl https://eth-mainnet.rpcfast.com/?api_key=<key> \
-X POST \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","method":"eth_uninstallFilter","params":["0xb"],"id":1}'
Outcome
{
"jsonrpc": "2.0",
"id": 1,
"result": true
}
Last updated