eth_uninstallFilter - Mantle
eth_uninstallFilter. Uninstall a filter and stop monitoring it
eth_uninstallFilter - mantle [Value: 10CU]
Uninstalls a filter with the specified filter ID
Use cases
- Remove specific filter to stop tracking events
- Free up resources by uninstalling unused filters
- Clear active filters for new monitoring tasks
Constraints
- Requires valid filter ID for uninstallation
- Node must support filter uninstallation method
- Accurate filter ID essential for correct uninstallation
Unlock Access to 50+ chains
Boost your app's speed and reliability with dRPC - get your access API key
Language
Request
Examples
curl --request POST \
--url https://mantle.drpc.org \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--data '
{
"id": 1,
"jsonrpc": "2.0",
"params": [
"0x1"
],
"method": "eth_uninstallFilter"
}
'
Response
200
{
"id": 1,
"jsonrpc": "2.0",
"result": true
}
Request params
idinteger
jsonrpcstring
methodstring
array of strings
filterIDstring
TThe ID of the filter to uninstall,
Response
200
Returns true if the filter was successfully uninstalled, false otherwiseResponse params
object
idinteger
jsonrpcstring
resultboolean