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": [
    "0xb304000000000000c44eb17e0cf10538"
  ],
  "id": 1
}'

Sample Response

{
  "jsonrpc": "2.0",
  "id": 1,
  "result": []
}

Last updated