Not deployedTollpad has no contracts on Robinhood Chain yet, so there is nothing to read and nothing to launch. Everything below describes what the contracts in the repository do, not something that is live.
Deploy it with npm run deploy in contracts/, then set NEXT_PUBLIC_FACTORY_ADDRESS. How it works
Every swap pays a toll
Tollpad is a launchpad where the fee is the product. The supply goes into the pool, the pool is locked, and from the first trade onwards every swap pays 5% — 80% of it to whoever launched the token.
No presale, no allocation, no unlock schedule. There is nowhere to put one: the supply has exactly one destination and it is the pool.
- Toll
- 5%
- To the creator
- 80%
- Pool fee
- None
- Liquidity
- Locked
- Supply
- 1,000,000,000
- To launch
- Gas
You launch
One transaction mints a billion tokens straight to the locker, opens a Uniswap v4 pool against native ETH, and puts the entire supply in. It costs gas and nothing else.
The pool shuts behind it
The liquidity goes into a contract with no function that takes any out. Not for you, not for us, not by vote. A v4 position is a row in the pool manager rather than an NFT, so there is nothing to sell or approve away either.
Every swap pays the toll
5% of everything paid into the pool, in either direction. Buys pay it in ETH, sells pay it in the token. 80% of it is yours, for as long as anyone trades.
Locked liquidity means locked. Everything anyone pays to buy a token becomes liquidity and does not come back out — for the creator as much as for anyone else. The toll comes out; the liquidity does not. Those are two different promises and it is worth knowing which is which.
Nothing here is audited. The contracts are on Uniswap v4 on Robinhood Chain (4663), and every figure this site shows is read from the pool manager or the factory rather than from a database.