> For the complete documentation index, see [llms.txt](https://docs.tryflox.xyz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.tryflox.xyz/concepts/supply-primitive.md).

# The supply primitive

Everything Flox measures on-chain comes from a single event: the ERC-20 `Transfer`. Three cases carry all the signal.

| Pattern       | Meaning                                                     |
| ------------- | ----------------------------------------------------------- |
| `from == 0x0` | **Issuance** — new supply created (a mint or bridge-in)     |
| `to == 0x0`   | **Redemption** — supply destroyed (a burn or bridge-out)    |
| `to ∈ venues` | **Venue inflow** — supply arriving somewhere it can be sold |

Net issuance is issuance minus redemption. Add venue inflows and forward-weighted unlocks, and you have supply pressure — the numerator of the SAR.

## Why this is enough

For a tokenized asset, minting and burning *are* the primary record of supply expanding and contracting. A bridge mint is new sellable supply arriving on the chain; a burn is supply leaving. There is no need to model intent or read off-chain data — the chain already records the moment supply becomes real.

The `venues` list is configuration: the addresses whose inbound transfers count as sell pressure (DEX pools, bridges, market-maker wallets). A transfer onto one of those is supply moving to where it can be dumped.

## What it cannot see

Supply that has not yet reached the chain is invisible. Flox sees supply when it lands, not before. Scheduled unlocks partly close this gap — see [How it decides](/concepts/how-it-decides.md) — but tokens sitting in an off-chain treasury are counted only once they move.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.tryflox.xyz/concepts/supply-primitive.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
