> ## 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.

# jsonrpc eth_getTransactionReceipt | TRON

> TRON API method that returns the receipt of a transaction by transaction hash. This method provides Ethereum-compatible interface for TRON blockchain.

TRON API method that returns the transaction receipt containing execution results and event logs, providing an Ethereum-compatible interface for accessing TRON blockchain data.

## Parameters

* `jsonrpc` — the JSON-RPC protocol version (always "2.0")
* `method` — the method name (always "eth\_getTransactionReceipt")
* `params` — array containing method parameters
  * `transactionHash` — the transaction hash as a hex string
* `id` — request identifier (number or string)

## Response

* `jsonrpc` — the JSON-RPC protocol version ("2.0")
* `id` — the request identifier that matches the request
* `result` — receipt object containing transaction execution results including status, gas used, logs, and contract address (if applicable)

## Use case

The `jsonrpc eth_getTransactionReceipt` method is used for:

* Confirming transaction execution status and retrieving execution results through Web3 interfaces
* Extracting event logs from smart contract interactions for dApp functionality
* Calculating actual gas costs and monitoring transaction efficiency
* Building transaction confirmation systems that verify successful execution


## OpenAPI

````yaml openapi/tron_node_api/jsonrpc_eth_getTransactionReceipt.json POST /95e61622bf6a8af293978377718e3b77/jsonrpc
openapi: 3.0.0
info:
  title: eth_getTransactionReceipt example
  version: 1.0.0
  description: >-
    This is an API example for eth_getTransactionReceipt, a method to get
    transaction receipt by transaction hash on the TRON network through
    Ethereum-compatible JSON-RPC interface.
servers:
  - url: https://tron-mainnet.core.chainstack.com
security: []
paths:
  /95e61622bf6a8af293978377718e3b77/jsonrpc:
    post:
      tags:
        - TRON JSON-RPC Operations
      summary: eth_getTransactionReceipt
      operationId: getTransactionReceipt
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - jsonrpc
                - method
                - id
                - params
              properties:
                jsonrpc:
                  type: string
                  default: '2.0'
                method:
                  type: string
                  default: eth_getTransactionReceipt
                id:
                  type: integer
                  default: 1
                params:
                  type: array
                  default:
                    - >-
                      0x88df016429689c079f3b2f6ad39fa052532c56795b733da78a91ebe6a713944b
                  items:
                    type: string
                    description: Transaction hash
      responses:
        '200':
          description: Transaction receipt including execution results and logs
          content:
            application/json:
              schema:
                type: object
                properties:
                  jsonrpc:
                    type: string
                  id:
                    type: integer
                  result:
                    type: object
                    description: Receipt object containing transaction execution results

````