arbtrace_get
Retrieve specific transaction trace data from Arbitrum chains by specifying a path and transaction hash. Works with Arbitrum Nitro nodes and supports natural language queries for monitoring and analysis.
Instructions
Get specific trace data at a given path within a transaction (requires trace API)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
chainName | No | Chain name (e.g., 'Xai', 'Arbitrum One') - will auto-resolve to RPC URL | |
path | No | Path to specific trace data | |
rpcUrl | No | The RPC URL of the Arbitrum node (optional if default is set) | |
txHash | Yes | Transaction hash |
Input Schema (JSON Schema)
{
"properties": {
"chainName": {
"description": "Chain name (e.g., 'Xai', 'Arbitrum One') - will auto-resolve to RPC URL",
"type": "string"
},
"path": {
"description": "Path to specific trace data",
"items": {
"type": "string"
},
"type": "array"
},
"rpcUrl": {
"description": "The RPC URL of the Arbitrum node (optional if default is set)",
"type": "string"
},
"txHash": {
"description": "Transaction hash",
"type": "string"
}
},
"required": [
"txHash"
],
"type": "object"
}