get_transaction_info
Retrieve detailed information about specific Ethereum blockchain transactions using transaction hash to analyze transaction data, status, and blockchain activity.
Instructions
Get detailed information about a specific transaction
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| transaction | Yes | The transaction hash to get info for |
Input Schema (JSON Schema)
{
"properties": {
"transaction": {
"description": "The transaction hash to get info for",
"type": "string"
}
},
"required": [
"transaction"
],
"type": "object"
}