getChainById
Retrieve blockchain details by chain ID, including name, native currency, TVL, RPC endpoints, and explorers, returned in Markdown format for easy readability.
Instructions
Retrieve information about a blockchain by its chain ID, returned as Markdown.
**Parameters**:
- `chain_id` (integer): The unique identifier of the blockchain (e.g., 1 for Ethereum Mainnet).
**Returns**:
- A Markdown-formatted string containing the chain's details (Name, Chain ID, Native Currency, TVL, RPC Endpoints, Explorers) or an error message if no chain is found.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
chain_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"chain_id": {
"title": "Chain Id",
"type": "integer"
}
},
"required": [
"chain_id"
],
"title": "getChainByIdArguments",
"type": "object"
}