eth_getTransactionReceipt
Retrieve transaction receipt details including status, gas used, and logs to verify transaction execution and outcomes on EVM-compatible blockchains.
Instructions
Returns the receipt of a transaction 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"
}