Supply & Distribution
This section defines how value moves through a PURITY launch once market activity occurs. The Treasury is not a wallet, a custodian, or a governance-controlled fund — it is a deterministic value-router. Base asset enters it through explicitly defined pathways, and leaves it through exactly three: the distribution split executed at each liquidation, a holder-approved governance release, and pull-based claims at shutdown. There are no discretionary withdrawals and no manual treasury management, for anyone.
One denomination principle applies system-wide: internally, all value is WETH. Native ETH appears only when a payout leaves the system to a person — a team, supporter, or holder claim unwraps at the last step. Because every internal movement is a plain ERC-20 transfer, no recipient can revert, re-enter, or block another contract's accounting. (A stray native transfer sent directly to the Treasury is harmless: it simply becomes market-making capital.)
The distribution split
Every liquidation — launch-phase and steady-state alike — splits its proceeds in the same transaction that realises them. The shares are fixed at deployment and immutable for the life of the launch.
$PURE — three buckets:
| Bucket | Share |
|---|---|
| Market-Making Treasury | 7000 bps (70%) |
| Team Compensation | 2000 bps (20%) |
| Supporter Distributions | 1000 bps (10%) |
Third-party launches — four buckets. A fixed 500 bps (5%) ecosystem contribution comes off the top of every liquidation, hardcoded and non-configurable; the remaining 95% splits between the three configurable buckets (which sum to 9500 bps — default 6500 market-making / 2000 team / 1000 supporters):
| Bucket | Default share |
|---|---|
| Ecosystem (→ $PURE EcosystemReceiver) | 500 bps (5%) — fixed, off the top |
| Market-Making Treasury | 6500 bps (65%) |
| Team Compensation | 2000 bps (20%) |
| Supporter Distributions | 1000 bps (10%) |
Where the money actually goes
The defining structural fact of the value flow is that the Treasury does not hold the buckets. At the moment of each split, the team and supporter shares are forwarded out — deposited into TeamDistribution and SupporterDistribution, each of which is the sole home of its bucket — and the ecosystem share (third-party launches) is transferred to the $PURE EcosystemReceiver. The Treasury retains only the market-making share, as WETH.
This decomposition is what makes the accounting trustless in practice. Team compensation vests inside a contract that can only pay the team. Supporter value accrues inside a contract that can only pay supporters pro-rata. Market-making capital is never entangled with anyone's claim on it, and no bucket can drain, borrow from, or override another — they are separate contracts, not ledger entries.
The ecosystem hand-off deserves a precise note, because it crosses launch boundaries: it is a plain WETH transfer to the receiver. A plain ERC-20 transfer runs no code on the recipient, so it cannot be made to fail by anything on $PURE's side — a third-party launch's market-making can never be halted, delayed, or held hostage by the ecosystem it contributes to. Launch isolation survives the one flow that connects launches.
The ecosystem flow ($PURE side)
Contributions accumulate in the EcosystemReceiver as WETH — the receiver's balance is the pending amount. Anyone, at any time, may call processEcosystem(), which splits the accumulated balance on a fixed, immutable 50/50: half to the $PURE Treasury, where it becomes ordinary market-making capital, and half into $PURE's TeamDistribution, where it vests on the standard six-month schedule. There is no supporter leg in this split — supporters benefit through the market-making half's effect on $PURE's own liquidation performance — and there is no configurability: no setters exist.
What follows
The remaining pages in this section cover each flow in depth: the market-making bucket, supporter distributions and their claim mechanics, team compensation and its mandatory vesting, the shutdown resolution that unwinds everything, the one governed exception to autonomy, and the invariants that hold across all of it.