post https://api.infstones.com/bsc/mainnet/
Uninstalls a filter with given ID.
Parameters
Object Name | Required | Type | Detail |
---|---|---|---|
FILTER ID | ✅ | String | A hex code of an integer that represents the filter ID to uninstall. |
"params": [
"0x117457e105a31bb2ce26478234986e58"
]
Result
true
if the filter was successfully uninstalled, otherwise false
.
Example
Request
curl <your-endpoint> \
-X POST \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","method":"eth_uninstallFilter","params":["0x117457e105a31bb2ce26478234986e58"],"id":0}'
Return
{
"jsonrpc":"2.0",
"id":1,
"result":true
}