eth_getTransactionReceipt

Returns the receipt of transactions sent from a given address.

Parameters

Transaction Hash.

Sample Request

curl https://lb.nodies.app/v1/<INSERT URL> \
   -H "x-api-key: <API-KEY>" \
   -X POST \
   -H "Content-Type: application/json" \
   -d '{ 
  "id": 1,
  "jsonrpc": "2.0",
  "method": "eth_getTransactionReceipt",
  "params": [
    "0x986c7c3c9d963a5353e4cf5d82745d19117d89574ca2a9d380fb5fe687814c67"
  ]
}'

Sample Response

{
  "jsonrpc": "2.0",
  "id": 1,
  "result": {
    "blockHash": "0x9c202ef1aa0f28a315fc2eae613ee1bac158e722af9a4f34c76e466aa014536e",
    "blockNumber": "0x9582c5",
    "contractAddress": null,
    "cumulativeGasUsed": "0xb5f5",
    "from": "0x2f44ada9820b28ab076169a92594ea7d8540b32c",
    "gasUsed": "0xb5f5",
    "l1Fee": "0x0",
    "l1FeeScalar": "8",
    "l1GasPrice": "0x0",
    "l1GasUsed": "0x1582",
    "logs": [
      {
        "address": "0x967b7b265da1506645ea464980a86fea309454b4",
        "topics": [
          "0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925",
          "0x0000000000000000000000002f44ada9820b28ab076169a92594ea7d8540b32c",
          "0x0000000000000000000000001e876cce41b7b844fde09e38fa1cf00f213bff56"
        ],
        "data": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff",
        "blockNumber": "0x9582c5",
        "transactionHash": "0x986c7c3c9d963a5353e4cf5d82745d19117d89574ca2a9d380fb5fe687814c67",
        "transactionIndex": "0x0",
        "blockHash": "0x9c202ef1aa0f28a315fc2eae613ee1bac158e722af9a4f34c76e466aa014536e",
        "logIndex": "0x0",
        "removed": false
      }
    ],
    "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000001200000004000000000000000000000000000000000000000100000000000000400000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000100000000000000000000000000000000010000000000000000000000000000000000008000000000000000000000000",
    "status": "0x1",
    "to": "0x967b7b265da1506645ea464980a86fea309454b4",
    "transactionHash": "0x986c7c3c9d963a5353e4cf5d82745d19117d89574ca2a9d380fb5fe687814c67",
    "transactionIndex": "0x0"
  }
}

Last updated