eth_uninstallFilter
Uninstalls a filter with the specified filter ID
Request
Examples
curl --request POST \
--url https://rpc.xone.org \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--data '
{
"id": 1,
"jsonrpc": "2.0",
"params": [
"0x1"
],
"method": "eth_uninstallFilter"
}
'
Response
200 OK
{
"id": 1,
"jsonrpc": "2.0",
"result": true
}
Request params
Name | Type | Description |
---|---|---|
id | integer | Request identifier |
jsonrpc | string | JSON-RPC version |
method | string | API method name |
Parameters | array of strings | |
filterID | string | TThe ID of the filter to uninstall, |
Response
200
Returns true if the filter was successfully uninstalled, false otherwiseName | Type | Description |
---|---|---|
Parameters | object | |
id | integer | |
jsonrpc | string | |
result | boolean |