post https://api.infstones.com/polygon/mainnet/
Parameters
Object Name | Required | Type | Detail |
---|---|---|---|
FILTER ID | ✅ | String | A hex code of an integer that represents the filter ID to uninstall. |
"params": [
"0xadfbd231737840ccb840af15661023"
]
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":["0xadfbd231737840ccb840af15661023"],"id":0}'
Return
{
"id": 0,
"jsonrpc": "2.0",
"result": true
}