eth_uninstallFilter - opBNB

Example code for the eth_uninstallFilter JSON-RPC method. Сomplete guide on how to use eth_uninstallFilter JSON-RPC in GetBlock.io Web3 documentation.

This method removes a previously-installed filter from the node. Filters also expire automatically if not polled for a period of time, but explicit cleanup is good practice.

Parameters

Parameter
Type
Required
Description

filterId

string

Yes

The filter ID to remove

Request Example

curl --location --request POST 'https://go.getblock.io/<ACCESS-TOKEN>/' \
--header 'Content-Type: application/json' \
--data-raw '{
    "jsonrpc": "2.0",
    "method": "eth_uninstallFilter",
    "params": [
        "0x16f1f5f5dc91c4a1d2e7e8b6c4d3f2e1"
    ],
    "id": "getblock.io"
}'

Response Example

{
    "jsonrpc": "2.0",
    "id": "getblock.io",
    "result": true
}

Response Parameters

Field
Type
Description

result

boolean

true if the filter was uninstalled successfully, false otherwise

Use Cases

  • Cleanup after a polling session ends

  • Freeing server-side resources in long-running services

Error Handling

Status Code
Error Message
Cause

403

Forbidden

Missing or invalid <ACCESS-TOKEN>

-32602

Invalid params

Request parameters are missing or malformed

-32601

Method not found

The method is not supported by this node

429

Too Many Requests

Rate limit exceeded for your plan

SDK Integration

Last updated

Was this helpful?