eth_getFilterLogs
Returns an array of all logs matching filter with given id.
Parameters
Filter ID
- Generated after calling eth_newFilter
or eth_newPendingTransactionFilter.
Sample Request
curl https://lb.nodies.app/v1/<INSERT URL> \
-H "x-api-key: <API-KEY>" \
-X POST \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"method": "eth_getFilterLogs",
"params": [
"0xf0df48cf9c194d6477d6f52799a1b45f"
],
"id": 1
}'
Sample Response
{
"jsonrpc": "2.0",
"id": 1,
"result": []
}
Last updated