We're now supporting Polygon zkEVM!
Learn more here.

Contents

eth_uninstallFilter RPC Method

The API credit value for this method is 1 . To learn more about API credits and each method's value, visit the API Credits page.

Parameters:

  1. filter ID - string - The filter ID that needs to be uninstalled. It 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

Returns:

  1. result - It returns true if the filter was successfully uninstalled, otherwise false

Code Examples:

from web3 import Web3, HTTPProvider
provider = Web3.HTTPProvider("http://sample-endpoint-name.network.quiknode.pro/token-goes-here/")
result = provider.make_request('eth_uninstallFilter', ["0x10ff0bfba9472c87932c56632eef8f5cc70910e8e71d"])
print(result)
Ready to get started? Create a free account