> ## Documentation Index
> Fetch the complete documentation index at: https://tokenterminal.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Supply changes

> Every stablecoin mint and burn.

<Info>
  **In progress.** This table is not served yet. The page documents it as it lands.
</Info>

Individual mint and burn events land here, so a day's supply movement resolves to the issuance events behind it. Daily totals are published as `mints_native` and `redemptions_native` on the [daily stablecoin tables](/docs/catalog/stablecoins/metrics). Until the fact table serves, the transfer table carries the events: creating a token is a transfer out of the zero address, and destroying one is a transfer into it.

## Sample queries

<Tabs>
  <Tab title="Mints from transfers">
    **Read one stablecoin's mints on a single day.** A transfer from the zero address is a mint; swap the filter to `to_address` for burns.

    ```sql theme={null}
    select
        transfers.block_timestamp,
        transfers.transaction_hash,
        transfers.to_address,
        cast(transfers.value_raw as bignumeric) / pow(10, tokens.decimals) as amount
    from `facts.token_transfers` as transfers
    join `dimensions.asset_tokens` as deployments
        using (token_id)
    join `dimensions.assets` as assets
        on assets.asset_id = deployments.asset_id
    join `dimensions.tokens` as tokens
        on tokens.token_id = transfers.token_id
    where assets.asset_id = 'usdc'
      and transfers.from_address = '0x0000000000000000000000000000000000000000'
      and transfers.block_timestamp >= timestamp('2026-08-01')
      and transfers.block_timestamp < timestamp('2026-08-02')
    order by amount desc
    ```
  </Tab>
</Tabs>
