> For the complete documentation index, see [llms.txt](/llms.txt).

# eth_uninstallFilter

Uninstalls a filter with given id.

### Parameters

`Filter identifier`(string)

hex encoded unsigned integer

### Returns

A boolean value indicating whether the uninstallation was successful.

Example request

```
await provider.request({
  method: 'eth_uninstallFilter',
  params: ['0x01'],
})

```

Example response

```
{
  "id": 1,
  "jsonrpc": "2.0",
  "result": true
}

```
