> ## 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 Non-Circulating Daily

> Daily non-circulating supply (NCS) balances for Hyperliquid stablecoins.

The `hyperliquid.stablecoins.supply_non_circulating_daily` view contains daily non-circulating supply (NCS) balances for Hyperliquid stablecoins. One row per (block\_date, address, token\_address, coin), with a row for every NCS holder on every calendar day.

## Table Columns

### Identifiers

| Column Name     | Description                                               |
| --------------- | --------------------------------------------------------- |
| chain           | The blockchain network (`hyperliquid`).                   |
| address         | NCS holder wallet address.                                |
| token\_address  | Hyperliquid numeric token index.                          |
| token\_name     | Full stablecoin name.                                     |
| token\_symbol   | Stablecoin symbol.                                        |
| token\_decimals | Token decimal places.                                     |
| product\_id     | Stablecoin product identifier (e.g. 'usdc\_hyperliquid'). |
| coin            | Hyperliquid coin symbol.                                  |

### NCS Classification

| Column Name         | Description                                      |
| ------------------- | ------------------------------------------------ |
| ncs\_address\_type  | NCS category (e.g. 'premint', 'issuer').         |
| ncs\_address\_label | Human-readable label for the NCS address.        |
| ncs\_supply\_layer  | Supply layer ('issuer\_basis' or 'all\_layers'). |

### Balances

| Column Name        | Description                                         |
| ------------------ | --------------------------------------------------- |
| balance            | NCS balance in decimal units.                       |
| balance\_str       | NCS balance as VARCHAR (full precision).            |
| raw\_balance       | NCS raw balance (equals `balance` for Hyperliquid). |
| raw\_balance\_str  | NCS raw balance as VARCHAR.                         |
| hold\_balance      | Held balance in decimal units.                      |
| hold\_balance\_str | Held balance as VARCHAR.                            |
| entry\_ntl         | Entry notional value.                               |
| entry\_ntl\_str    | Entry notional value as VARCHAR.                    |

### Block & Lineage

| Column Name      | Description                           |
| ---------------- | ------------------------------------- |
| block\_date      | Calendar date.                        |
| block\_timestamp | Timestamp of the underlying snapshot. |
| block\_number    | Block number of the snapshot.         |
| block\_hash      | Block hash of the snapshot.           |
| \_created\_at    | Row creation timestamp.               |
| \_updated\_at    | Row last update timestamp.            |

## Sample Query

```sql theme={null}
SELECT
  block_date,
  address,
  coin,
  balance,
  ncs_address_type,
  ncs_supply_layer
FROM hyperliquid.stablecoins.supply_non_circulating_daily
WHERE block_date >= CURRENT_DATE - 7
ORDER BY block_date DESC, balance DESC
LIMIT 100
```
