eth_getTransactionReceipt

Returns the receipt of a transaction by transaction hash.

Method: POST

https://lukso.nownodes.io

Example body (raw)

{
    "method": "eth_getTransactionReceipt",
    "params": [
        "0xc07632164a1e662811b4453815a116843bfefaa8d4e90cd0fde634fbb5d999b9"
    ],
    "id": 1,
    "jsonrpc": "2.0"
}

Example response: 200

{
    "jsonrpc": "2.0",
    "id": 1,
    "result": {
        "blockHash": "0x79a445a680ab3ca3ad1ae234b7832d66fc3b24a484ad5e50d251d0fca70d9ff1",
        "blockNumber": "0x2b0e09",
        "contractAddress": null,
        "cumulativeGasUsed": "0x25ba496",
        "effectiveGasPrice": "0x3229dfd6",
        "from": "0x76487fddf0e5aff021d258d42d98ddd0cec89498",
        "gasUsed": "0x2599ca5",
        "logs": [],
        "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
        "status": "0x1",
        "to": "0x3983151e0442906000dab83c8b1cf3f2d2535f82",
        "transactionHash": "0xc07632164a1e662811b4453815a116843bfefaa8d4e90cd0fde634fbb5d999b9",
        "transactionIndex": "0x1",
        "type": "0x2"
    }
}

Last updated