eth_uninstallFilter

Uninstalls a filter with given ID.

Parameters

Object NameRequiredTypeDetail
FILTER IDStringA hex code of an integer that represents the filter ID to uninstall.
"params": [
  "0x117457e105a31bb2ce26478234986e58"
]

Result

true if the filter was successfully uninstalled, otherwise false.

Example

Request

curl <your-endpoint> \
    -X POST \
    -H "Content-Type: application/json" \
    -d '{"jsonrpc":"2.0","method":"eth_uninstallFilter","params":["0x117457e105a31bb2ce26478234986e58"],"id":0}'

Return

{
    "jsonrpc":"2.0",
    "id":1,
    "result":true
}
Language
Click Try It! to start a request and see the response here!