erigon_getBlockReceiptsByBlockHash

Example

Request

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

Response:

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

Last updated