transaction_summary
Generate human-readable transaction summaries with natural language descriptions for transfers, swaps, NFT sales, and DeFi operations using the Blockscout MCP Server, enhancing rapid comprehension and dashboard displays.
Instructions
Get human-readable transaction summaries from Blockscout Transaction Interpreter.
Automatically classifies transactions into natural language descriptions (transfers, swaps, NFT sales, DeFi operations)
Essential for rapid transaction comprehension, dashboard displays, and initial analysis.
Note: Not all transactions can be summarized and accuracy is not guaranteed for complex patterns.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
chain_id | Yes | The ID of the blockchain | |
transaction_hash | Yes | Transaction hash |
Input Schema (JSON Schema)
{
"properties": {
"chain_id": {
"description": "The ID of the blockchain",
"title": "Chain Id",
"type": "string"
},
"transaction_hash": {
"description": "Transaction hash",
"title": "Transaction Hash",
"type": "string"
}
},
"required": [
"chain_id",
"transaction_hash"
],
"title": "transaction_summaryArguments",
"type": "object"
}