get_transaction_by_hash
Retrieve detailed transaction information by specifying its hash using the Cryo MCP Server. Query Ethereum blockchain data for precise insights into transaction details.
Instructions
Get detailed information about a transaction by its hash
Args:
tx_hash: The transaction hash to look up
Returns:
Detailed information about the transaction
Input Schema
Name | Required | Description | Default |
---|---|---|---|
tx_hash | Yes |
Input Schema (JSON Schema)
{
"properties": {
"tx_hash": {
"title": "Tx Hash",
"type": "string"
}
},
"required": [
"tx_hash"
],
"title": "get_transaction_by_hashArguments",
"type": "object"
}