> ## 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.

# Supply Distribution Daily

> Daily Hyperliquid stablecoin supply breakdown — total, non-circulating, circulating.

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           | The blockchain network (`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                       | Source of the total-supply figure (`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

```sql theme={null}
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
```
