arb_latest_validated
Retrieve the latest validated global state from Arbitrum networks using an admin API. Specify the RPC URL or chain name to access real-time chain health and node data.
Instructions
Get the latest validated global state information (requires admin 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) |
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"
}
},
"required": [],
"type": "object"
}