eth_uninstallFilter - Arbitrum

eth_uninstallFilter. Removes an existing filter

eth_uninstallFilter - arbitrum [Value: 10CU]
Uninstalls a filter with the specified filter ID
Use cases

Use cases

  • Remove specific filter to stop tracking events
  • Free up resources by uninstalling unused filters
  • Clear active filters for new monitoring tasks
Constraints

Constraints

  • Requires valid filter ID for uninstallation
  • Node must support filter uninstallation method
  • Accurate filter ID essential for correct uninstallation
Get started
Unlock Access to 50+ chains
Boost your app's speed and reliability with dRPC - get your access API key

Language

Request
Examples
curl --request POST \
     --url https://arbitrum.drpc.org \
     --header 'accept: application/json' \
     --header 'content-type: application/json' \
     --data '
{
  "id": 1,
  "jsonrpc": "2.0",
  "params": [
    "0x1"
  ],
  "method": "eth_uninstallFilter"
}
'
Copy
Response
200
{
  "id": 1,
  "jsonrpc": "2.0",
  "result": true
}
Copy

Request params

idinteger
jsonrpcstring
methodstring
Parametersarray of strings
array of strings
filterIDstring
TThe ID of the filter to uninstall,

Response

200
Returns true if the filter was successfully uninstalled, false otherwise

Response params

object
idinteger
jsonrpcstring
resultboolean