POST

/

id
jsonrpc
method
params
curl --request POST \
  --url https://rpc1.taurus.axiomesh.io/

Uninstalls a filter with given id. Should always be called when watch is no longer needed. Additionally Filters timeout when they aren’t requested with eth_getFilterChanges for a period of time.

Body

id
number

Serves as a unique identifier for the request

jsonrpc
string

Indicates the version of JSON-RPC being used

method
string

Represents the name of the remote procedure or method to be called

params
array

Contains the list of parameters passed to the remote method.

filterId
string

The filter id.

Response

id
number

Returns unique identifier for the request

jsonrpc
string

Returns the version of JSON-RPC being used.

success
boolean

True if the filter is successfully uninstalled, otherwise false.

curl   'https://example-rpc.axiomesh.io' \
--header 'Content-Type: application/json' \
--data '{
    "jsonrpc":"2.0",
    "method":"eth_uninstallFilter",
    "params":["0x16"],
    "id":74
}'
{
    "id":1,
    "jsonrpc":"2.0",
    "result":true
}