get_stablecoin_dominance
Analyze stablecoin dominance by chain and identify the largest stablecoin within a specific blockchain network using chain slug inputs.
Instructions
GET /stablecoins/stablecoindominance/{chain}
Get stablecoin dominance per chain along with the info about the largest coin in a chain.
Parameters:
chain: chain slug (e.g., 'Ethereum')
stablecoin: stablecoin ID (optional)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
chain | Yes | ||
stablecoin | No |
Input Schema (JSON Schema)
{
"properties": {
"chain": {
"title": "Chain",
"type": "string"
},
"stablecoin": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Stablecoin"
}
},
"required": [
"chain"
],
"title": "get_stablecoin_dominanceArguments",
"type": "object"
}