eth_getFilterLogs

Returns all log objects that match the filter identified by the given ID.

Parameters

  1. QUANTITY - ID of the filter.

Example

Request

curl -X POST 'https://api.shasta.trongrid.io/jsonrpc' --data '{
    "jsonrpc": "2.0",
    "method": "eth_getFilterLogs",
    "params": [
        "0x1"
    ],
    "id": 71
}'

Response

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