get_transaction_receipt
Retrieve transaction details by hash from Ethereum and 30+ compatible networks using the EVM MCP Server, enabling efficient blockchain data access for integrations.
Instructions
Get a transaction receipt by its hash
Input Schema
Name | Required | Description | Default |
---|---|---|---|
network | No | Network name or chain ID. Defaults to Ethereum mainnet. | |
txHash | Yes | The transaction hash to look up |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"network": {
"description": "Network name or chain ID. Defaults to Ethereum mainnet.",
"type": "string"
},
"txHash": {
"description": "The transaction hash to look up",
"type": "string"
}
},
"required": [
"txHash"
],
"type": "object"
}