Ponzinomics
Robinhood Chain · chain 4663 · Uniswap v4
Welcome, Guest. The house takes a cut and then sets it on fire.Ticker $Ponzi · supply fixed at 21,000,000
News: Entry toll 1% · Exit toll 5% · Both burned, neither collected@ponzinomicsrh
Ponzinomics — a Ponzi hook on Uniswap v4Started by nobody · 0 replies · 21,000,000 supply
the contract
Immutable · Ownerless
Posts: 21,000,000
Entry toll: 1%
Exit toll: 5%
Owner: none
Re: What does the exit toll actually buy?« on: block zero, forever »

It stands between you and your exit and it charges you for passing, which is the only thing it has in common with the thing it is named after. A Ponzi pays the toll to somebody. This one pays it to nobody at all — it buys the token back off the open market and destroys what it buys, inside the same transaction as your sale.

Token Statistics
ticker
$Ponzi
supply
21,000,000
buy toll
1%
exit toll
5%
01The oldest machine in finance

A Ponzi is a machine for moving money from the late to the early. Someone stands in the middle, takes deposits, and pays whoever arrived first with the money of whoever arrived last. It runs on flow. Cut the flow and it dies, because the flow was the only thing paying anyone.

Ponzinomics is assembled from the same three pieces — a middle, a flow, and a toll — wired the other way round.

the middle
A Uniswap v4 hook: a contract the exchange calls while it is settling your trade, not an account that sits on a balance. It cannot hold anything between transactions. Nothing accumulates in it, because there is no moment at which it is holding rather than spending. There are no keys pointed at it either, since there is nobody to hold them.
the flow
Every swap through one pool, the canonical ETH/Ponzi pair, with the toll coming off both sides. One percent to arrive, five percent to leave. The same rate for everyone, every block, with no list of exempt addresses — the rates are constants in bytecode, and there is no function that could change them if somebody wanted to.
the toll
It does not move from the late to the early. It moves out of existence. That is where the machine stops resembling its namesake, and it is the only difference that matters: a Ponzi pays the toll to somebody, and this one pays it to nobody at all.

Which leaves an interesting question. If the toll is destroyed rather than collected, what does the exit toll actually buy?

02What the exit toll buys

Burning a token requires the token. When somebody sells, the hook is holding five percent of their ETH, and ETH is the wrong shape — you cannot burn Ponzi with it.

So it goes shopping. Inside the same transaction, before the sale has settled, the hook turns around and spends that ETH buying Ponzi off the same order book the seller is selling into. Then it destroys everything it bought.

Code:
your exit → a bid → tokens → nothing
one transaction · no treasury · no keeper · no interval in which anyone holds it

A conventional buyback promises this and defers it. Fees accumulate in a treasury, and a keeper or a vote decides later whether to spend them, which is a person you have to trust. Here the buyback happens in the same transaction as the sale that paid for it. There is no interval in which anyone is holding the money, so there is nobody to trust with it.

entry · 1%
The output of a buy is already Ponzi, so there is nothing to trade. The hook withholds one percent of the tokens you would have received and destroys them. You get ninety-nine percent of the quote. One subtraction, no market interaction.
exit · 5%
The output of a sell is ETH, so the hook claims five percent and spends it on the buyback above. You keep ninety-five percent. The ETH nets flat inside the PoolManager, so the only thing that ever leaves is Ponzi, and it leaves straight into a burn.

Arriving is cheap. Leaving is five times dearer. The difference is not a policy anyone is choosing to run this quarter — it is two constants in a contract nobody owns.

mechanism simulator
modelled from the two on-chain constants
50% sells
the mix the protocol does not control
20 turns
one turn = all supply changes hands once
burned / turn
3.00%
supply after 20
11.42m
from sell buyback
83%
half-life
>20
Ponzi supplycounterfactual: buy-side burn onlyremoved by the sell-funded buyback
Drag the sliders. The two constants never move — only the volume and the mix do. At the current mix the sell-funded buyback does 83% of the work, supply falls 6.0× faster than it would without it, and after 20 turns 45.6% of the launch supply is gone. Note the direction of the dependency: a market that sells more burns more, which is the opposite of how a treasury-funded buyback behaves under the same pressure. Caveat, stated plainly — this ignores the price impact of the buyback itself, so in a thin pool it is an upper bound.
03The one honest similarity

A Ponzi dies when inflow stops, because inflow was the only thing paying the promised return. This dies quieter. When trading stops, the burn stops. No volume, no burn, and the supply curve simply flattens forever.

That is a real dependency on continued activity, and pretending otherwise would be the dishonest move. The difference is what is left standing when the music stops. A Ponzi that runs out of inflow owes money it does not have to people who were promised it. Ponzinomics that runs out of inflow owes nothing to anybody, because it never promised anything and never held anything. It becomes an ordinary ERC-20 with a smaller supply than it started with, and the last burn stays burned.

Most tokens are named to sound like infrastructure and behave like an exit. This one is named for the worst thing you could reasonably suspect it of, and then hands you the file that settles it.

04Why it has to be a hook

The old way to build this was a tax inside _transfer. That breaks AMM accounting, so serious venues exclude the token. It taxes the wrong event, since moving coins between your own wallets is not a trade. And it needs an exclusion list, which needs an owner, which is a lever — which is the thing you were worried about in the first place.

The other old way was to collect fees into a treasury and promise to buy back later. That reintroduces custody and a promise, ingredients one and two, and asks you to trust that whoever holds the fees will act, on time, in your interest rather than theirs.

A Uniswap v4 hook is a third option that did not exist until v4 shipped. The PoolManager calls the contract mid-settlement, and the swap does not close unless the burn closes with it. No custody is possible because there is no moment at which anything is held. No promise is needed because nothing is deferred. The mechanism is not enforced by a team. It is enforced by the exchange refusing to settle any other way.

Wallet-to-wallet transfers of Ponzi are completely untaxed. The token itself is an unmodified OpenZeppelin ERC-20 with the mint function removed. All of the behaviour lives one layer down, at the venue.

Continue reading/mechanism»