curl --request POST \
--url https://api.mainnet.abs.xyz/eth_uninstallFilter \
--header 'Content-Type: application/json' \
--data '{
"jsonrpc": "2.0",
"id": 1,
"method": "eth_uninstallFilter",
"params": [
"0xb415d4b0e6ca750802be8c84c99a68170deeb9ed09c4e2eb0dc5299ab715e978"
]
}'
{
"jsonrpc": "2.0",
"result": true,
"id": 1
}
Uninstalls a filter with the given ID
curl --request POST \
--url https://api.mainnet.abs.xyz/eth_uninstallFilter \
--header 'Content-Type: application/json' \
--data '{
"jsonrpc": "2.0",
"id": 1,
"method": "eth_uninstallFilter",
"params": [
"0xb415d4b0e6ca750802be8c84c99a68170deeb9ed09c4e2eb0dc5299ab715e978"
]
}'
{
"jsonrpc": "2.0",
"result": true,
"id": 1
}
Returns whether the filter was uninstalled
The response is of type object
.
Was this page helpful?