erigon_getLogsByHash

Returns an array of arrays of logs produced by the block's transactions.

Example

Request

curl --location 'https://eth-mainnet.blastapi.io/<project_id>' \
--header 'Content-Type: application/json' \
--data '{
    "jsonrpc": "2.0",
    "method": "erigon_getLogsByHash",
    "params": [
        "0xe99e022112df268087ea7eafaf4790497fd21dbeeb6bd7a1721df161a6657a54"
    ],
    "id": 3
}'

Response:

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

Last updated