arbtrace_block
Retrieve detailed trace information for all transactions within a specific block on Arbitrum networks using trace API. Ideal for debugging, monitoring, and analyzing blockchain activity.
Instructions
Get trace information for all transactions in a block (requires trace API)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
blockNumOrHash | Yes | Block number or hash to trace | |
chainName | No | Chain name (e.g., 'Xai', 'Arbitrum One') - will auto-resolve to RPC URL | |
rpcUrl | No | The RPC URL of the Arbitrum node (optional if default is set) |
Input Schema (JSON Schema)
{
"properties": {
"blockNumOrHash": {
"description": "Block number or hash to trace",
"type": "string"
},
"chainName": {
"description": "Chain name (e.g., 'Xai', 'Arbitrum One') - will auto-resolve to RPC URL",
"type": "string"
},
"rpcUrl": {
"description": "The RPC URL of the Arbitrum node (optional if default is set)",
"type": "string"
}
},
"required": [
"blockNumOrHash"
],
"type": "object"
}