Skip to main content

eth_uninstallFilter

Uninstalls a filter with given id.

Params

(1)

1. Filter identifier (required)

string
Match pattern:
^0x(0|[1-9a-f][0-9a-f]*)$

Result

(Success)
boolean

Example

Request

await window.ethereum.request({
"method": "eth_uninstallFilter",
"params": [
"0x01"
]
});

Result

true

Params

Filter identifier


Request

await window.ethereum.request({
"method": "eth_uninstallFilter",
"params": [
null
]
});