BLOG · 4 Sept 2026 · 6 MIN
The pons snipe tax window is three seconds, not five
Every pons launch opens with a tax on buying that starts at 99% and decays exponentially to nothing. The published documentation puts that window at five seconds. Reading snipeTaxSeconds off the factory returns three. If you are timing anything against it, that gap is the whole game.
What the tax is for
A bot watching for new curves can buy the opening before anyone else knows the launch exists, then sell into the people who arrive a minute later. The tax makes being first unprofitable: at 99% almost nothing of the spend reaches the curve, and by the time the rate has decayed to something reasonable, ordinary buyers have arrived.
It applies to buying only. Selling is never taxed by it, at any point in the window.
How steep the decay is
The curve is exponential, so it falls fastest at the start. Roughly a quarter of the spend is still taken one second in, around three percent at two seconds, and nothing by the end of the window.
What that means in practice: an entry two seconds late is nearly free of tax, and an entry at eighteen blocks — which is what happens when code waits for a receipt before signing — is completely outside it. In one of our own early runs the rate had already fallen to nineteen basis points by the time the buys landed. The protection was doing nothing for anyone, including the people it exists to stop.
Read it off the contract
Two values matter and both are readable: snipeTaxStartBps returns 9900, and snipeTaxSeconds returns 3. Each launch takes its own copy of the terms at creation, so a curve already trading keeps what it launched under and cannot have the window changed underneath it.
For quoting a specific trade, currentSnipeTaxBps is keyed on the recipient of the tokens rather than the sender. A router asking on behalf of a wallet has to ask about that wallet, not about itself.
The collected tax is not burned
Whatever the tax takes joins the launch's trading fee and is distributed the same way. Value a would-be sniper gives up flows back into the launch rather than out of it — which is a more elegant design than simply blocking the transaction.
The longer version, with the numbers this article refers to.
Keep reading
5 min read
The exemption list: 32 addresses, fixed at creation
pons lets a creator name up to 32 addresses that the opening tax does not apply to. The list is fixed when the token is created and can never be extended.
6 min read
A first-come sequencer changes what speed means
Robinhood Chain orders transactions by arrival, not by fee. What that rewrites for anyone who learned to trade on Ethereum, and what optimisation looks like instead.
8 min read
How the pons bonding curve prices a launch
A pons token mints entirely onto a bonding curve. How the price is set, what the phantom reserve does, and why the last buy before graduation behaves differently.