section 1 of 7
Six steps from an empty wallet to a compounding position, in the order you take them. Each one says what it costs you in signatures before it says anything else, so you know what you are agreeing to before you get there.
step 1 · bridge
Robinhood Chain is an Arbitrum Orbit rollup, so gas is plain ETH. The Arbitrum portal moves it over in a few minutes — bridge first, everything else follows. Send a little more than you plan to farm: every approval, deposit and harvest below is paid for in ETH on this side of the bridge.
you sign: one deposit on the L1 side, then wait
step 2 · swap
Swaps and liquidity live on Uniswap v4 on Robinhood Chain. Every GET button in the app deep-links there with the right token prefilled — ETH, USDG, CASHCAT, PONS, AI, sNET and QUOTRON — and once RAMEN launches, it trades there too.
you sign: one approval per token, then the swap
step 3 · liquidity
This is the one place the path splits. Farms want an LP receipt, so you deposit both sides of a pair and take on impermanent loss. Pools want one token and nothing else — no pairing, no IL, a calmer ceiling.
you sign: LP route: two approvals and an add. Pool route: nothing
step 4 · stake
One ERC-20 approval per stake token, then the deposit itself. The chef books your share of the pot; the deposit fee (never above 4%) is taken on arrival and routed to the fee address, so the amount that starts earning is slightly under what you sent.
you sign: one approval per token, then one deposit
step 5 · cook
RAMEN accrues on the card second by second, whether or not anyone is watching. Each pool sets a harvest lockup (14 days maximum, on-chain): the rewards keep counting the whole time, they simply cannot be claimed until the countdown on the Harvest button reaches zero.
you sign: nothing — this is the part where you wait
step 6 · compound
Harvest pays the pending RAMEN out to your wallet. On the RAMEN pool, Compound harvests and re-stakes in the same transaction with no deposit fee on the restake — that one button is the entire distance between the APR line and the APY line further down this page.
you sign: one harvest, or one compound
section 2 of 7
Nine pots, one chef, identical per-second maths. Farms take LP pairs and hand you impermanent loss along with the higher rate; pools take a single token and cannot, by construction. Every pot shows its own deposit fee and harvest lockup on its card.

section 3 of 7
APR is the raw rate: a year of this pot’s emissions, divided by what is staked in it. APY is what you end the year with once you harvest and re-stake along the way. Drag the sliders, change the cadence, and watch the two lines pull apart.
poolShare = allocPoint / totalAllocPoint rewardsPerYear = ramenPerSecond × 31,536,000 × poolShare APR = rewardsPerYear × price(RAMEN) / valueStaked × 100 APY = (1 + APR/n)^n − 1 // n harvests a year
section 4 of 7
RAMEN is PantherSwap-flavoured: a 5% transfer tax that burns and liquifies, an anti-whale cap, a 500M hard mint cap, and a mint function only the chef can call. Drag the emission rate to see how far that cap really is.
section 5 of 7
The nine that come up most, answered from the contracts rather than from the marketing.
section 6 of 7
Straight from the deployment config, so this table is never out of date with the app. Copy an address, or open it on the explorer.
Contract | Symbol | Address |
|---|---|---|
RAMEN token | RAMEN | not deployed yet |
RamenChef | MasterChef | not deployed yet |
Timelock | governance | not deployed yet |
Multicall3 | reads | |
RAMEN-ETH | RAMEN-ETH LP | not deployed yet |
RAMEN-USDG | RAMEN-USDG LP | not deployed yet |
ETH-USDG | ETH-USDG LP | not deployed yet |
section 7 of 7
What the contracts refuse to do, and what they do not protect you from. The first table is enforced by reverts, not by intention — every row of it is a line you can read in the source.
What it refuses | The limit | Reverts with |
|---|---|---|
Emission rate | ≤ 10 RAMEN / second | EmissionTooHigh |
Deposit fee | ≤ 4% of the deposit | DepositFeeTooHigh |
Harvest lockup | ≤ 14 days | HarvestIntervalTooLong |
Total supply | ≤ 500,000,000 RAMEN | MaxSupplyExceeded |
Transfer tax | ≤ 10% of the transfer | MAXIMUM_TRANSFER_TAX_RATE |
Single transfer | ≤ 0.5% of total supply | antiWhale |
Harvest before the countdown | refused | HarvestLocked |
The same stake token twice | refused | DuplicatePool |