transaction
Fetch comprehensive blockchain transaction details with decoded event logs. Requires chain name and transaction hash. Optionally include internal traces, state changes, or input data on eth-mainnet, or set quote currency.
Instructions
Commonly used to fetch and render a single transaction including its decoded log events. Required: chainName (blockchain network), txHash (transaction hash). Optional: quoteCurrency (currency to convert to, USD by default), noLogs (exclude event logs, true by default), withInternal (include internal transactions, false by default), withState (include state changes, false by default), withInputData (include input data, false by default). Tracing features (withInternal, withState, withInputData) supported on the following chains: eth-mainnet Returns comprehensive details about the specified transaction.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| chainName | Yes | The blockchain network to query (e.g., 'eth-mainnet', 'matic-mainnet', 'bsc-mainnet'). | |
| txHash | Yes | The transaction hash to get details for. Must be a valid transaction hash. | |
| quoteCurrency | No | Currency to quote transaction values in (e.g., 'USD', 'EUR'). If not specified, uses default quote currency. | |
| noLogs | No | Exclude event logs from the response for faster performance. Default is true. | |
| withInternal | No | Include internal transaction traces. Only supported on eth-mainnet. Default is false. | |
| withState | No | Include state changes in the response. Only supported on eth-mainnet. Default is false. | |
| withInputData | No | Include transaction input data in the response. Only supported on eth-mainnet. Default is false. |