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
What you receive
Sample
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