$y=bˣ / SOL
volume 24h
price
mcap

token-2022 · solana · program-claimed fee stream

y=bx

the exponential curve

the floor under this token is a ratchet.

a program intercepts the fee stream from every trade and puts it to work in two places — half stands as a bid beneath the market and burns what it fills, half sits in a reserve any holder can draw against, pro rata.

Your positionyour share, applied to the reserve
h
you hold
÷
S
in circulation
×
R
held in reserve
=
claim
redeemable by you
connect to see what your balance is worth against the reserve

the floor plotted against the order flow that builds it. the upper trace is the reserve leg of the fee take divided by circulating supply, accumulated bar by bar across live traded volume — it has no downward step because nothing in the arrangement removes from the numerator. underneath, flow separates by direction: buy-dominant bars above the baseline, sell-dominant below. quantities only the program can report sit in a loading state until it is live.

premise

Creator fees on a bonding curve are ordinarily a private revenue line. Here they are intercepted at the point of accrual by a program and never arrive at a wallet. Each claim divides on a ratio fixed at deployment — 50.00% into a bid that buys the token back and destroys it, 50.00% into a reserve that collateralizes redemption — and both halves are spent on the token rather than on anybody.

What falls out of that arrangement is a floor: reserve balance over circulating supply, denominated in SOL. It is arithmetic over two account balances, which means anyone can recompute it at any block without trusting a dashboard, this one included.

the split

Trading generates creator revenue in SOL. The program claims it and routes it, inside the same transaction, into two accounts. Neither leg pays a person, and the ratio is not a dial anyone turns afterwards.

Allocation of a claim c
  bid_leg     = c · 0.50
  reserve_leg = c · 0.50

  R  ← R + reserve_leg
  B  ← B + bid_leg
R = redemption reserve · B = undeployed bid allocation. The bid leg is held until the market satisfies the condition below; it is not spent on arrival.

Tokens issued against the curve land in every wallet in proportion to what that wallet already holds. The consequence is worth stating precisely, because it is the part most easily oversold: scaling every balance by the same factor leaves every share of supply exactly where it was, and therefore leaves every claim exactly where it was. Issuance distributes. It does not manufacture backing. Backing arrives through the reserve leg and improves through retirement.

the floor

Hold h tokens against a supply of S and you own h/S of a reserve holding R. Redemption pays out that fraction in SOL and destroys the tokens presented for it.

Floor
floor = R / S

claim(h) = (h / S) · R
R = reserve lamports · S = circulating supply · h = tokens held. Quoted in SOL throughout, never in dollars.

exiting takes nothing

The usual complaint about a redeemable claim is that whoever leaves first leaves carrying something that belonged to everyone. Not here. Burning k pays k·R/S and removes k from supply, shrinking numerator and denominator by an identical factor. The quotient does not move.

Floor-neutrality of redemption
redeem k:

  R' = R − kR/S
  S' = S − k

  R'/S' = (R − kR/S) / (S − k)
        = R(S − k)/S / (S − k)
        = R/S
Invariant under redemption. Nobody is paid out of anybody else's claim.

Withholding part of the payout turns invariance into growth. At f = 3.00%, the redeemer leaves with (1−f)·k·R/S and the difference stays behind in an account now divided among fewer tokens. Everyone who stays is strictly better off for someone else having gone.

Floor-increase with exit fee f
redeem k, withhold f:

  R' = R − (1−f)·kR/S
  S' = S − k

  R'/S' = (R/S) · (1 + f·k/(S − k))

  1 + f·k/(S − k) > 1     for 0 < f ≤ 1, 0 < k < S
The multiplier exceeds one for any non-zero fee, so the floor is non-decreasing under redemption.

the bid gate

The bid leg puts reserve-adjacent capital into the open market, which cuts both ways. Retiring ΔR/P tokens for ΔR of SOL moves the floor in a direction determined solely by where the fill price sits relative to the floor itself.

Buyback condition
spend ΔR at price P, burn ΔR/P tokens:

  floor' = (R − ΔR) / (S − ΔR/P)

  floor' > floor   ⟺   P < R/S

with u = ΔR/R and m = floor/P:

  floor'/floor = (1 − u) / (1 − u·m)
Accretive strictly below the floor, neutral at it, dilutive above. Buying above the floor pays more per token than the token is backed by — which is where most buyback programmes quietly leak.

Most buyback programmes never state that condition, which is exactly why they leak. Encoded as a precondition the program verifies rather than a judgement somebody exercises, it turns the allocation into a standing bid underneath the market: below the backing the program is a buyer and every fill tightens supply for everyone still holding; above it the program does nothing at all and the allocation waits. An idle bid balance is the expected state, not a fault.

state

Backing
Held in reserve
What redemption draws against
SOL
Per token
R ÷ S — the floor
SOL
In circulation
y=bˣ
Taken out of supply
Filled by the bid, plus tokens handed back for redemption
y=bˣ
Issued against the curve
Distributed by holding; every share of supply left unchanged
y=bˣ
Withheld on exit
Stays behind, divided among the tokens that remain
3.00%
Fee take
Intercepted so far
SOL
Set aside for the bid
50.00% of everything taken
SOL
Put to work
Fills the gate allowed through
SOL
Still waiting
Held back until price drops under the backing
SOL
Accounts
Mint
Program PDA