Proof of work
Check it yourself.
Every claim on this site is either something the chain can confirm or something we say plainly it cannot. This page collects the checkable half: the deployed launcher, what it reports right now, the tests it passes, and the review of its code. The numbers below are read live from Robinhood Chain when you open the page, not typed in by hand.
01 The contract
Reading the chain…
| Launcher | 0x9C504EBB286560C5F2Ee1197950e806992487075 |
|---|---|
| Chain | Robinhood Chain, id 4663 |
| Deploy tx | 0x0ecf4cbc…5a6180a9 |
| Deployed bytecode | — |
| Pairs in registry | — |
| Launch fee | — |
| Launches | — |
| Owner | — |
| Source | — PairpopLauncher.sol, solc 0.8.26 |
| Options vault | 0x3678890CA79Ea7bfD31a030469a5C565fb429033 |
| Vault deploy tx | 0xe64982f1…04313623 |
| Vault bytecode | — |
| Option series written | — |
| Vault owner | None. No owner, no fee, no pause, no upgrade path. |
02 What the contract cannot do
These are not promises, they are absences in the code. There is no function to do any of them, so no key, including ours, can.
| Claim | Why it holds |
|---|---|
| A launched token cannot be inflated | PairpopToken sets totalSupply as immutable at construction and has no mint function and no owner. |
| Nobody can freeze or seize your tokens | No pause, no blacklist, no admin transfer path in the token. |
| An option cannot exist without collateral | The only ways to create a series in PairpopOptions escrow the underlying or the full ETH payout first. There is no path that mints an option token without taking custody. |
| Nobody can pull collateral out from under a holder | reclaim reverts before expiry, and only ever returns the portion still unexercised. There is no owner and no rescue function. |
| The site cannot fake a backed pair | stockBacked is set by an on-chain gas-capped staticcall to the stock token, not by anything the browser sends. |
| The launcher never holds your funds | The fee is forwarded and any excess refunded inside the same transaction. Balance between calls is zero. |
03 Stock tokens, probed live
Every ticker on the board resolves to a live ERC20 on chain 4663. This table calls each address right now and reports what came back.
| Ticker | Address | symbol() | Result |
|---|---|---|---|
| Probing… | |||
04 Test suite
Loading results…
Includes a fork test executed against live chain 4663, plus adversarial cases: a stock token that reverts, one that burns unbounded gas, an EOA passed as a stock address, a fee recipient that rejects ETH, underpaid fees, and out-of-range supply.
| Test | Suite | Result |
|---|
Every number on this page is read live from chain 4663 when the page loads. Nothing here is typed by hand, so a stale claim would show up as a failed read rather than as confident text.
05 Security review
The launcher and the token it deploys were reviewed line by line. No critical, high or medium findings. Two low notes: a fee change has no timelock, so a raised fee can revert a pending transaction without any loss of funds, and the fee transfer is reentrancy-safe because all state is written before the external call. Three informational notes cover unbounded view pagination, uncapped strings, and the deliberate absence of a rescue function.
Reviewed in full by the team that built the contracts, with every finding published rather than summarised. No external firm has signed it, and each claim is stated precisely enough to check against the deployed bytecode yourself.
06 What is still not proven
Options are physically settled only. A series pays out by delivering the asset escrowed for it, which is why no oracle is involved anywhere in the settlement path. Every ticker on the board resolves to a live ERC20 on this chain, so every pair has a real token to bind to and settle against.
The market is an order book of resting offers, not an automated market maker. A coin listed at launch is buyable at the price its creator set, and a fill still needs someone on the other side, so the premium is whatever a buyer and a seller agree on.
Robinhood Chain itself, its RPC, and the stock tokens on it are third-party infrastructure. Nothing here reviews them.