> ## Documentation Index
> Fetch the complete documentation index at: https://docs.chainstack.com/llms.txt
> Use this file to discover all available pages before exploring further.

# eth_getTransactionReceipt | Ronin

> Ronin API method that returns the receipt of a transaction by its hash. Reference for eth_getTransactionReceipt on Ronin via Chainstack.

Ronin API method that returns the receipt of a transaction by its hash. The transaction receipt includes details such as the status of the transaction (success or failure), the gas used, the contract address created (if the transaction was a contract creation), and any logs generated by the transaction.

## Parameters

* `transactionHash` — the hash of the transaction for which to retrieve the receipt.

## Response

* `result` — an object containing the transaction receipt information, including fields like `transactionHash`, `transactionIndex`, `blockHash`, `blockNumber`, `from`, `to`, `cumulativeGasUsed`, `gasUsed`, `contractAddress`, `logs`, and `status`.

## Use case

The `eth_getTransactionReceipt` method is crucial for verifying the outcome of a transaction, especially for applications that execute transactions and need to confirm their success or failure. It is also used to obtain detailed execution results, such as event logs, which are essential for DApps to interpret the effects of transactions.


## OpenAPI

````yaml openapi/ronin_node_api/eth_getTransactionReceipt.json POST /3997273fc956a67dc6982384500e669e
openapi: 3.0.0
info:
  title: eth_getTransactionReceipt
  version: 1.0.0
  description: Returns the receipt of a transaction by transaction hash.
servers:
  - url: https://ronin-mainnet.core.chainstack.com
security: []
paths:
  /3997273fc956a67dc6982384500e669e:
    post:
      tags:
        - blockchain
      summary: Get transaction receipt by hash
      operationId: getTransactionReceipt
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                id:
                  type: integer
                  default: 1
                jsonrpc:
                  type: string
                  default: '2.0'
                method:
                  type: string
                  default: eth_getTransactionReceipt
                params:
                  type: array
                  items:
                    type: string
                  default:
                    - >-
                      0x1e196c5fa958d3752b92a3178dd71e8050a0b4a72f528a72c3c12b09b5fc523a
      responses:
        '200':
          description: Receipt of the requested transaction
          content:
            application/json:
              schema:
                type: object
                properties:
                  jsonrpc:
                    type: string
                  id:
                    type: integer
                  result:
                    type: object

````