arbtrace_replayTransaction
Replay and trace a transaction on Arbitrum chains using a transaction hash. Supports multiple trace types to analyze transaction details and state changes.
Instructions
Replay and trace a specific 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 | |
rpcUrl | No | The RPC URL of the Arbitrum node (optional if default is set) | |
traceTypes | No | Array of trace types (e.g., ['trace', 'stateDiff']) | |
txHash | Yes | Transaction hash to replay |
Input Schema (JSON Schema)
{
"properties": {
"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"
},
"traceTypes": {
"description": "Array of trace types (e.g., ['trace', 'stateDiff'])",
"items": {
"type": "string"
},
"type": "array"
},
"txHash": {
"description": "Transaction hash to replay",
"type": "string"
}
},
"required": [
"txHash"
],
"type": "object"
}