Docs / Protocol
How a launch works
One transaction does everything — atomically. If any step failed, the whole launch would revert; there is no window where a token exists in a half-safe state.
1Deploy
ArrowPadFactory deploys the token with a fixed supply of 1,000,000,000. The contract has no owner, no mint function, no tax, no blacklist — zero privileged functions, so nobody (including us) can change it afterwards.
2Pool
The entire supply is seeded single-sided into a fresh Uniswap V3 pool (1% fee tier) at a fixed starting price — an initial market cap of roughly 3 ETH. Nothing is held back: no presale, no team allocation.
3Lock
The LP NFT goes straight into ArrowPadLocker, which has no withdrawal function. The liquidity can never be pulled — a rug isn't forbidden, it's structurally impossible.
4Optional first buy
The creator can attach an initial buy that executes inside the same transaction — their bag is bought before anyone else can trade, so it can't be front-run.
Fees — who earns what
Every trade pays the pool’s 1% fee, which accrues to the locked LP position. Anyone can trigger collection at any time (it’s permissionless), and the split is hard-coded in ArrowPadLocker:
80%
token creator
20%
protocol
Payouts always go to the creator and treasury addresses recorded at launch — whoever calls collect can’t redirect a single wei. Launch something people love to trade and you earn from every swap, forever.
FAQ
Is ArrowPad audited?
There is no third-party audit yet — and, more importantly, nothing an audit would need to protect you from an admin doing: the contracts have no owner, no upgrade path, and no privileged functions. Source is verified on the explorer; the strongest guarantee is reading it yourself.
Can the creator rug?
Not in the classic sense — the liquidity is locked forever, so it can never be pulled. A creator can still sell their own bag like any holder, which moves the price down. Check the Holders tab before buying: a creator holding a huge share is your risk signal.
Why does every token start at the same price?
Every launch seeds the same fixed supply at the same starting price (an initial market cap of roughly 3 ETH). Nobody gets a discount, there is no presale, and the only way to own a large share is to buy it on the open curve — including the creator.
What does ArrowPad charge?
A flat creation fee shown on the launch form (currently free), plus the protocol's 20% share of the 1% pool fee. Trading itself carries no extra platform fee — just the pool fee that every Uniswap V3 swap pays.
Which chains are supported?
Robinhood Chain (chain ID 4663) only, and that focus is deliberate — one chain, done properly.
Contracts
Everything is deployed on Robinhood Chain (chain ID 4663) with source verified on the explorer — read it yourself, trust nothing:
- ArrowPadFactory0x69225A43B20B824F4027B201731d9a21368Bf6Bc ↗
- ArrowPadLocker0xBa9C247041a7715591c7B48f20dFBa520a7d68E9 ↗
Tokens are standard ERC-20s (ArrowPadToken) on verified, identical bytecode. Pools and positions are stock Uniswap V3 — nothing custom sits between traders and their funds. Ready to build on it? See the Public API.