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

NameTypeDescription
idintegerRequest identifier
jsonrpcstringJSON-RPC version
methodstringAPI method name
Parametersarray of strings 
filterIDstringTThe ID of the filter to uninstall,

Response

200
Returns true if the filter was successfully uninstalled, false otherwise
NameTypeDescription
Parametersobject 
idinteger
jsonrpcstring
resultboolean