eth_getBlockReceipts

Returns the receipt of a transaction by transaction hash.

Method: POST

https://lukso.nownodes.io

Example body (raw)

{
    "method": "eth_getBlockReceipts",
    "params": [
        "0x2B0E09"
    ],
    "id": 1,
    "jsonrpc": "2.0"
}

Example response: 200

{
    "jsonrpc": "2.0",
    "id": 1,
    "result": [
        {
            "blockHash": "0x79a445a680ab3ca3ad1ae234b7832d66fc3b24a484ad5e50d251d0fca70d9ff1",
            "blockNumber": "0x2b0e09",
            "contractAddress": null,
            "cumulativeGasUsed": "0x207f1",
            "effectiveGasPrice": "0x77359400",
            "from": "0xeff85d6f71a235ad4716d68ad1201573129c2a7a",
            "gasUsed": "0x207f1",
            "logs": [
                {
                    "address": "0xb4ed5937ca0dbe86ba42cb8f3fe26361ef816f7c",
                    "topics": [
                        "0xc0a62328f6bf5e3172bb1fcb2019f54b2c523b6a48e3513a2298fbf0150b781e",
                        "0x000000000000000000000000eff85d6f71a235ad4716d68ad1201573129c2a7a",
                        "0x0000000000000000000000000000000000000000000000000000000000000000",
                        "0x44c028fe00000000000000000000000000000000000000000000000000000000"
                    ],
                    "data": "0x",
                    "blockNumber": "0x2b0e09",
                    "transactionHash": "0x23644498b6487fdb16e6897bf8500ef087fd8d5cc06687ffecb0ef39b45e5260",
                    "transactionIndex": "0x0",
                    "blockHash": "0x79a445a680ab3ca3ad1ae234b7832d66fc3b24a484ad5e50d251d0fca70d9ff1",
                    "logIndex": "0x0",
                    "removed": false
                },
                {
                    "address": "0xbbde8294116abe5305d031f6300f6aa34a622205",
                    "topics": [
                        "0x4810874456b8e6487bd861375cf6abd8e1c8bb5858c8ce36a86a04dabfac199e",
                        "0x0000000000000000000000000000000000000000000000000000000000000000",
                        "0x00000000000000000000000016f371bc554c38e4bb8f5e6d2617c9ae3dd5dcbf",
                        "0x4dbf27cc00000000000000000000000000000000000000000000000000000000"
                    ],
                    "data": "0x0000000000000000000000000000000000000000000000000000000000000000",
                    "blockNumber": "0x2b0e09",
                    "transactionHash": "0x23644498b6487fdb16e6897bf8500ef087fd8d5cc06687ffecb0ef39b45e5260",
                    "transactionIndex": "0x0",
                    "blockHash": "0x79a445a680ab3ca3ad1ae234b7832d66fc3b24a484ad5e50d251d0fca70d9ff1",
                    "logIndex": "0x1",
                    "removed": false
                },
                {
                    "address": "0x16f371bc554c38e4bb8f5e6d2617c9ae3dd5dcbf",
                    "topics": [
                        "0x3997e418d2cef0b3b0e907b1e39605c3f7d32dbd061e82ea5b4a770d46a160a6",
                        "0x000000000000000000000000bbde8294116abe5305d031f6300f6aa34a622205",
                        "0x0000000000000000000000000000000000000000000000000000000000000000",
                        "0x0000000000000000000000003b38cdfa45fb8514bc148743a7f4b0f9a7717937"
                    ],
...

Last updated