get_transaction_info
Retrieve detailed blockchain transaction data, including network and transaction hash, to analyze and verify on-chain activity using the MCP server.
Instructions
Gets detailed information about a specific transaction
Input Schema
Name | Required | Description | Default |
---|---|---|---|
network | Yes | The blockchain network (e.g., "ethereum", "polygon") | |
txHash | Yes | The transaction hash to fetch details for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"network": {
"description": "The blockchain network (e.g., \"ethereum\", \"polygon\")",
"type": "string"
},
"txHash": {
"description": "The transaction hash to fetch details for",
"type": "string"
}
},
"required": [
"network",
"txHash"
],
"type": "object"
}