Quickstart
From wallet to settled position in five steps.
Five steps, from an empty wallet to a settled position.
1. Get on Robinhood Chain
Add the network to your wallet. Gas is paid in ETH and blocks are about 100 ms.
| Chain ID | 4663 |
|---|---|
| RPC | https://rpc.mainnet.chain.robinhood.com |
| Explorer | https://robinhoodchain.blockscout.com |
| Currency | ETH |
2. Find a live auction
The auctions page lists every auction the Uniswap factory has created, with its raise, its threshold and how long it has left. You want one that is live and has not yet crossed its threshold — once it crosses, the answer is settled and no market can take a position.
3. Open the market
If nobody has opened a market on that auction yet, you can. It is permissionless, costs only gas, and can only be done once per auction.
FrogPond.open(address auction) → uint256 marketId4. Take a side
Stake ETH on graduate or fail. The minimum is 0.000001 ETH. Your stake is recorded along with a weight that depends on how early you are — see Time weighting.
FrogPond.bet{value: amount}(uint256 id, bool yes)5. Resolve, then claim
After the auction’s end block, anyone can call resolve. It forces a checkpoint on the auction, reads the outcome, and locks it in. Then the winning side claims.
FrogPond.resolve(uint256 id) // permissionless
FrogPond.claim(uint256 id) // pays your positionEvery one of these calls can be made directly against the verified contract on Blockscout. This site is a convenience, not a gatekeeper.