eth_uninstallFilter
与えられた ID のフィルタをアンインストールします。
監視が不要になったらコールする必要があります。
また、一定期間の間、フィルタが eth_getFilterChanges によってリクエストされなかった場合はタイムアウトします。
パラメータ
1. QUANTITY
フィルタ ID
戻り値
Boolean
正しくアンインストールできた際には true を返します。
それ以外の場合には false を返します。
サンプル
code:example.sh
// Request
curl -X POST --data '{"jsonrpc":"2.0","method":"eth_uninstallFilter","params":"0xb","id":73}'
// Result
{
"id":1,
"jsonrpc": "2.0",
"result": true
}
参考
https://github.com/ethereum/wiki/wiki/JSON-RPC#eth_uninstallfilter
#JSON_RPC_API
Ethereum JSON RPC API 日本語リファレンス