> ## 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_getTransactionByHash | Hyperliquid EVM

> Returns transaction information by its hash.

<Info>
  This method is available on Chainstack. Not all Hyperliquid methods are available on Chainstack, as the open-source node implementation does not support them yet — see [Hyperliquid methods](/docs/hyperliquid-methods) for the full availability breakdown.
</Info>

Returns transaction information by its hash. Use this method to retrieve specific transaction details when you have the transaction hash.

<Check>
  **Get your own node endpoint today**

  [Start for free](https://console.chainstack.com/) and get your app to production levels immediately. No credit card required.

  You can sign up with your GitHub, X, Google, or Microsoft account.
</Check>

## Parameters

* `transactionHash` (string, required) — The 32-byte hash of the transaction

## Returns

Returns a transaction object, or `null` if the transaction is not found.

**Transaction object:**

* `hash` — Transaction hash
* `nonce` — Transaction nonce (hex string)
* `blockHash` — Hash of containing block (null if pending)
* `blockNumber` — Number of containing block (null if pending)
* `transactionIndex` — Index in block (null if pending)
* `from` — Sender address
* `to` — Receiver address (null for contract creation)
* `value` — Value transferred in wei (hex string)
* `gas` — Gas limit (hex string)
* `gasPrice` — Gas price in wei (hex string)
* `input` — Transaction data
* `v`, `r`, `s` — ECDSA signature components
* `type` — Transaction type (0x0 for legacy, 0x2 for EIP-1559)

<Note>
  On Hyperliquid, priority fees are always zero. EIP-1559 transactions use only the base fee.
</Note>

## Use cases

* **Transaction verification** — Confirm transaction details and status
* **Wallet applications** — Display transaction history to users
* **Payment confirmation** — Verify payment transactions
* **Block explorers** — Show detailed transaction information
* **DeFi protocols** — Track protocol interactions
* **Analytics** — Analyze transaction patterns and data


## OpenAPI

````yaml /openapi/hyperliquid_node_api/evm_eth_get_transaction_by_hash.json post /evm
openapi: 3.0.0
info:
  title: Hyperliquid EVM API - eth_getTransactionByHash
  version: 1.0.0
servers:
  - url: >-
      https://hyperliquid-mainnet.core.chainstack.com/4f8d8f4040bdacd1577bff8058438274
security: []
paths:
  /evm:
    post:
      summary: eth_getTransactionByHash
      description: Returns transaction information by its hash.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - jsonrpc
                - method
                - params
                - id
              properties:
                jsonrpc:
                  type: string
                  enum:
                    - '2.0'
                  default: '2.0'
                  description: JSON-RPC version
                method:
                  type: string
                  enum:
                    - eth_getTransactionByHash
                  default: eth_getTransactionByHash
                  description: The RPC method name
                params:
                  type: array
                  description: 'Parameters: [transactionHash]'
                  default:
                    - >-
                      0x33c3321b162edac1fdbb53af2962b2940c07e334a4f5ff758f1d5ef1235e55d0
                id:
                  type: integer
                  default: 1
                  description: Request identifier
            example:
              jsonrpc: '2.0'
              method: eth_getTransactionByHash
              params:
                - >-
                  0x33c3321b162edac1fdbb53af2962b2940c07e334a4f5ff758f1d5ef1235e55d0
              id: 1
      responses:
        '200':
          description: Successful response with transaction information
          content:
            application/json:
              schema:
                type: object
                properties:
                  jsonrpc:
                    type: string
                    description: JSON-RPC version
                  id:
                    type: integer
                    description: Request identifier
                  result:
                    type: object
                    properties:
                      hash:
                        type: string
                        description: Transaction hash
                      nonce:
                        type: string
                        description: Transaction nonce
                      blockHash:
                        type: string
                        description: Hash of the block containing the transaction
                      blockNumber:
                        type: string
                        description: Number of the block containing the transaction
                      transactionIndex:
                        type: string
                        description: Index of the transaction in the block
                      from:
                        type: string
                        description: Address of the sender
                      to:
                        type: string
                        description: Address of the receiver
                      value:
                        type: string
                        description: Value transferred in wei
                      gas:
                        type: string
                        description: Gas limit provided by the sender
                      gasPrice:
                        type: string
                        description: Gas price provided by the sender in wei
                      input:
                        type: string
                        description: Data sent along with the transaction
                      v:
                        type: string
                        description: ECDSA recovery id
                      r:
                        type: string
                        description: ECDSA signature r
                      s:
                        type: string
                        description: ECDSA signature s
                      type:
                        type: string
                        description: Transaction type
              example:
                jsonrpc: '2.0'
                id: 1
                result:
                  hash: >-
                    0x33c3321b162edac1fdbb53af2962b2940c07e334a4f5ff758f1d5ef1235e55d0
                  nonce: '0x1'
                  blockHash: >-
                    0xabcdef1234567890abcdef1234567890abcdef1234567890abcdef1234567890
                  blockNumber: '0x9d0c37'
                  transactionIndex: '0x0'
                  from: '0xFC1286EeddF81d6955eDAd5C8D99B8Aa32F3D2AA'
                  to: '0x5555555555555555555555555555555555555555'
                  value: '0xde0b6b3a7640000'
                  gas: '0x5208'
                  gasPrice: '0x3b9aca00'
                  input: 0x
                  v: '0x1c'
                  r: >-
                    0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef
                  s: >-
                    0xabcdef1234567890abcdef1234567890abcdef1234567890abcdef1234567890
                  type: '0x0'

````