Transaction Receipts

The details for a transaction confirmation will be available in the Transaction receipt. This End point captures this data precisely.

A blockchain receipt provides proof that some data existed at a specific time, and that the data was approved by the validators of the blockchain. The receipt contains all the information needed to prove an individual input was indeed part of an approved block.

Request

{
  transactionReceipts(
    transactionHash: "0x2a7ea461521c969060b8a7b456fe0639ddfde24f0aaa38374bcdb1926eaef136"
  ) {
    blockHash
    blockNumber
    cumulativeGasUsed
    from
    gasUsed
    status
    to
    transactionHash
    transactionIndex
    timestamp
    contractAddress
    blockNumberDecimal
  }
}

Response

{
  "data": {
    "transactionReceipts": [
      {
        "blockHash": "0xe2e80fdad5ad7763b6092134cbfcc95fde0ff72ac866584a9c1c493c7f960196",
        "blockNumber": "0xc6e6e0",
        "cumulativeGasUsed": "1396759",
        "from": "0xbbed1c61b6e68c397b021c1274080a2005042c08",
        "gasUsed": "87519",
        "status": "0x1",
        "to": "0xe9a09e0032d1ab5ce4bf09149ef746258252bd0b",
        "transactionHash": "0x2a7ea461521c969060b8a7b456fe0639ddfde24f0aaa38374bcdb1926eaef136",
        "transactionIndex": 20,
        "timestamp": 1629102832,
        "contractAddress": "",
        "blockNumberDecimal": 13035232
      }
    ]
  }
}

Last updated