listFeatures
Retrieve detailed chain information like supported features (read, write, token, validators) and native currency specifics (ticker, decimals, chain name) by providing a chainId as input.
Instructions
Get chain details including supported features (read, write, token, validators) and native currency information (ticker, decimals, chain name)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
chainId | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"chainId": {
"type": "string"
}
},
"required": [
"chainId"
],
"type": "object"
}