Blockscout MCP
get_transaction_logs
Get comprehensive transaction logs. Unlike standard eth_getLogs, this tool returns enriched logs, primarily focusing on decoded event parameters with their types and values (if event decoding is applicable). Essential for analyzing smart contract events, tracking token transfers, monitoring DeFi protocol interactions, debugging event emissions, and understanding complex multi-contract transaction flows. **SUPPORTS PAGINATION**: If response includes 'pagination' field, use the provided next_call to get additional pages.
Remote blockscout/mcp-server
Other tools also called get_transaction_logs?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"cursor": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Cursor",
"default": null,
"description": "The pagination cursor from a previous response to get the next page of results."
},
"chain_id": {
"type": "string",
"title": "Chain Id",
"description": "The ID of the blockchain"
},
"transaction_hash": {
"type": "string",
"title": "Transaction Hash",
"description": "Transaction hash"
}
}
}