eth_getTransactionByHash
Retrieve detailed transaction information from EVM-compatible blockchains using a transaction hash to analyze transaction data, status, and blockchain activity.
Instructions
Returns the information about a transaction requested by transaction hash
Input Schema
Name | Required | Description | Default |
---|---|---|---|
txHash | Yes | Transaction hash |
Input Schema (JSON Schema)
{
"properties": {
"txHash": {
"description": "Transaction hash",
"type": "string"
}
},
"required": [
"txHash"
],
"type": "object"
}