Skip to main content

eth_uninstallFilter

Uninstalls a filter on Moonbase Alpha. Should be called when no longer needed.

Parameters#

ParameterTypeRequiredDescription
filterIdQUANTITYYesFilter ID to uninstall

Request#

{
"jsonrpc": "2.0",
"method": "eth_uninstallFilter",
"params": ["0x1"],
"id": 1
}

Returns#

TypeDescription
Booleantrue if filter was found and uninstalled

Code Examples#

curl -X POST https://api-moonbase-alpha.n.dwellir.com/YOUR_API_KEY \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"method": "eth_uninstallFilter",
"params": ["0x1"],
"id": 1
}'