Documentation Index
Fetch the complete documentation index at: https://docs.allium.so/llms.txt
Use this file to discover all available pages before exploring further.
The hyperliquid.stablecoins.supply_distribution_daily table provides daily total, non-circulating, and circulating supply for Hyperliquid stablecoins. One row per (date, chain, token_address).
Table Columns
Identifiers
| Column Name | Description |
|---|
| date | Calendar date. |
| chain | Always ‘hyperliquid’. |
| token_address | Hyperliquid numeric token index (e.g. 0 for USDC). |
| product_id | Stablecoin product identifier (e.g. ‘usdc_hyperliquid’). |
| token_name | Full stablecoin name. |
| token_symbol | Stablecoin symbol. |
| token_decimals | Token decimal places. Always 0 in this model (balances already normalised). |
Supply
| Column Name | Description |
|---|
| total_supply_source | Always ‘snapshot’. |
| total_supply_raw | Total supply as VARCHAR. |
| total_supply | Total supply in decimal units. |
| non_circulating_supply | Non-circulating supply at the issuer-basis layer (premint reserves, issuer holdings). |
| non_circulating_supply_raw | Issuer-basis NCS as raw VARCHAR. |
| non_circulating_supply_details | JSON breakdown of NCS addresses by type (issuer_basis layer). |
| adjusted_non_circulating_supply | Non-circulating supply across all configured supply layers. |
| adjusted_non_circulating_supply_raw | Adjusted NCS as raw VARCHAR. |
| adjusted_non_circulating_supply_details | JSON breakdown of NCS addresses across all layers. |
| circulating_supply | Circulating supply at the issuer-basis layer. |
| adjusted_circulating_supply | Circulating supply across all configured supply layers. |
Lineage
| Column Name | Description |
|---|
| unique_id | Deterministic unique identifier per row. |
| _created_at | Row creation timestamp. |
| _updated_at | Row last update timestamp. |
Sample Query
SELECT
date,
token_symbol,
total_supply,
non_circulating_supply,
circulating_supply
FROM hyperliquid.stablecoins.supply_distribution_daily
WHERE date >= CURRENT_DATE - 30
ORDER BY date DESC, token_symbol