ODOS_GET_CHAIN_ID
Retrieve the chain ID for a specified chain name using MCP-ODOS. Enables precise identification of blockchain networks for decentralized exchange interactions.
Instructions
Get the chain ID for a given chain name
Input Schema
Name | Required | Description | Default |
---|---|---|---|
chain | Yes | The chain name to get the ID for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"chain": {
"description": "The chain name to get the ID for",
"type": "string"
}
},
"required": [
"chain"
],
"type": "object"
}