10
10 Coin Lab
DEFI· 7 min read

How to Add Liquidity on Robinhood Chain

Published August 31, 2026 · Written by the 10 Coin Lab team from on-chain measurements

“How do I add liquidity on Robinhood Chain?” has two answers, and most guides only give one. If your token came from the launchpad, you never add liquidity at all. If you deployed a plain token, you build the pool yourself on Uniswap V3. We scanned the chain’s V3 factory and measured every WETH pool created in a 17-hour window — 267 of them — and the honest headline is this: adding liquidity is trivial, but adding liquidity that lasts is rare. Only 6 of those 267 pools hold more than one ETH.

Two things “add liquidity” can mean

On Robinhood Chain the phrase splits cleanly by how the token was created, and the two cases have nothing in common operationally.

Launchpad tokenStandard ERC-20
Do you add liquidity?No — it is automaticYes — you create the pool
Where liquidity livesBonding curve, then a locked poolA Uniswap V3 pool you fund
Who sets the priceThe curve formulaYou, via your deposit ratio
Can liquidity be pulled?No — it is permanently lockedYes — you control the position
When a market existsFrom the first blockOnly after you fund the pool

Behaviour read from the Pons V2 factory and the Robinhood Chain Uniswap V3 factory on 30 August 2026. If you have not launched yet, our guide to creating a token covers which path produces which asset.

The launchpad path: liquidity you never add

A launchpad token is born with its liquidity already inside it. The full one-billion supply seeds a bonding curve at launch, and the curve quotes a price algorithmically — every buy pushes it up, every sell pushes it down. There is no pool to fund, no ratio to choose and no position to manage.

When the curve accumulates 4.2 ETH of real reserves, the token graduates: the curve closes and its ETH and remaining tokens are deposited into a Uniswap V3 pool that is permanently locked. Nobody — not even the creator — can withdraw that liquidity afterwards. From that moment the token trades on the open market instead of the curve. That is the entire “add liquidity” story for a launchpad token, and you are not part of it.

The manual path: creating a Uniswap V3 pool

If you deployed a standard ERC-20, it has no market at all until you build one. Robinhood Chain runs a standard Uniswap V3 deployment, so the mechanics are exactly what a V3 user expects. The two addresses you need are fixed:

  • V3 factory: 0x1f7d7550B1b028f7571E69A784071F0205FD2EfA
  • WETH9: 0x0Bd7D308f8E1639FAb988df18A8011f41EAcAD73 — you pair against wrapped ETH, not native ETH

The flow to add liquidity to a fresh token is five steps:

  1. Wrap ETH. V3 pools hold WETH, so wrap the ETH you intend to deposit first. If you still need ETH on the chain, bridge it in — there is no faucet.
  2. Create the pool for your token and WETH at a chosen fee tier. If a pool for that exact pair and tier already exists, you skip creation and add to it instead.
  3. Set the initial price by initialising the pool’s starting tick. This is the ratio the first trade will meet.
  4. Choose a price range. V3 liquidity is concentrated — you deposit into a band, not the whole curve. More on this below.
  5. Deposit both sides (token and WETH) in the ratio your chosen range requires, and mint the position. You receive an NFT representing the LP position.

Choosing a fee tier

Robinhood Chain’s V3 factory enables the four standard Uniswap fee tiers. We read the tick spacing for each directly off the factory, and counted how many WETH-paired pools sat in each tier over our sample window:

Fee tierTick spacingIntended forWETH pools
0.01%1Stable / pegged pairs53
0.05%10High-volume, low-volatility pairs2
0.30%60Most ordinary token pairs11
1.00%200Volatile and meme tokens201

Tick spacing from feeAmountTickSpacing() on the V3 factory. Pool counts from PoolCreated logs over blocks 49,798,797–50,398,797 (roughly 17 hours, ending 30 August 2026), filtered to pairs containing WETH.

The distribution tells you what the chain is actually used for. Three in four WETH pools — 201 of 267 — sit in the 1% tier, which is where volatile meme tokens belong: the higher fee compensates liquidity providers for taking the other side of sharp moves. The 0.3% tier is the conventional default elsewhere but a minority here. Unless you have a specific reason, match the crowd: a meme token pairs at 1%.

WETH-paired V3 pools by fee tier (17-hour window)
1.00%2010.01%530.30%110.05%2

267 WETH-paired pools created in the sample window, grouped by fee tier. The 1% tier dominates because most launches are volatile meme tokens.

Concentrated liquidity and price ranges

The part that catches people coming from older AMMs is that V3 does not spread your deposit across every possible price. You pick a range, and your capital only works — and only earns fees — while the price sits inside it. Concentrating into a tight band around the current price makes your liquidity far deeper for the same money; the trade-off is that a move outside the band parks your position entirely on one side and it stops earning until price returns.

Full-range versus concentrated

  • Full range mimics the old constant-product behaviour: your liquidity is always active, you never fall out of range, and you never have to manage it. It is the right default for a brand-new meme token whose price could go anywhere.
  • Concentrated earns more fees per dollar while price stays put, but demands active management and exposes you to sharper impermanent loss. Reserve it for pairs with a view on where price will trade.

The reality: most pools sit empty

Creating a pool is cheap and easy, which is exactly why so many empty ones exist. We measured the live WETH balance of all 267 pools in our window. The result is a near-mirror of the launchpad’s graduation story: a small head of real markets and a very long tail of dust.

362
V3 pools created
17-hour window
267
WETH-paired pools
the tradable ones
62
Hold real liquidity
> 0.001 WETH
6
Hold ≥ 1 WETH
the genuine markets

Balances read via balanceOf on WETH9 for each pool address at block 50,398,797 (30 August 2026). “Real liquidity” is a threshold of 0.001 WETH to exclude dust and mis-priced pools.

What happens to WETH pools on Robinhood Chain
WETH-paired pools created267
17-hour window
Hold more than dust62 (23%)
> 0.001 WETH
Hold at least 1 WETH6 (2.2%)
real depth

Roughly 77% of pools created in the window held only dust when we measured them. The whole set held about 20.3 WETH combined; the single deepest pool held nearly a third of that.

The deepest pool we found paired WETH against a token called 暴富猫 and held roughly 6.5 WETH against 92.7 million tokens in the 1% tier — a real, two-sided market anyone can verify. Behind it, the second and third pools held about 5.8 and 2.7 WETH. After that the numbers fall off a cliff. The lesson for a liquidity provider is the same as for a launcher: depth is scarce, and a pool’s existence tells you nothing about whether it has any.

How to verify liquidity is real — and locked

Whether you are about to provide liquidity or about to buy a token that claims to have some, the checks are the same, and they take a minute on the block explorer.

  1. Read the pool’s WETH balance. Call balanceOf on WETH9 with the pool address. A pool with a fraction of an ETH is not a market you can trade in size — it is a listing, not liquidity.
  2. Check both sides. A real market holds meaningful amounts of both the token and WETH. All token and no WETH means there is nothing to sell into.
  3. Confirm the lock, for graduated tokens. A launchpad graduation deposits liquidity into a pool the creator cannot withdraw from. Trace where the LP position sits; if an ordinary wallet holds it, it is not locked and can be pulled.
  4. Watch the fee tier. Liquidity fragmented across several tiers for the same token is thinner than one number suggests — a trade only touches the tier it routes through.

Frequently asked questions

How do I add liquidity on Robinhood Chain?

It depends on the token. A launchpad token needs nothing from you — its bonding curve is the liquidity and it migrates into a permanently locked Uniswap V3 pool at 4.2 ETH of reserves. A standard ERC-20 needs you to create a V3 pool against WETH: wrap ETH, create or select the pool at a fee tier, set the opening price, choose a range and deposit both sides.

Do launchpad tokens need liquidity added?

No. The bonding curve provides liquidity from the first block, and graduation moves that liquidity into a locked pool automatically. You only add liquidity yourself if you deployed a plain token instead of using the launchpad.

Which fee tier should I use on Robinhood Chain?

For a volatile meme token, 1% — it is where 201 of the 267 WETH pools we measured sit, and the higher fee compensates you for the risk of providing liquidity to a sharp mover. The factory also enables 0.01%, 0.05% and 0.3% tiers for stabler pairs.

What are the Robinhood Chain Uniswap V3 addresses?

The V3 factory is 0x1f7d7550B1b028f7571E69A784071F0205FD2EfA and WETH9 is 0x0Bd7D308f8E1639FAb988df18A8011f41EAcAD73. Enabled fee tiers are 0.01%, 0.05%, 0.3% and 1%, with tick spacings 1, 10, 60 and 200 respectively.

Can the creator remove a graduated token’s liquidity?

No. Graduation liquidity is locked in the pool by the contract, so it cannot be withdrawn by anyone, including the creator. This is verifiable on-chain, which is why locked graduation liquidity is a genuine safety property rather than a marketing claim.

Why do so many pools show almost no liquidity?

Because creating a pool is cheap and creating a durable market is not. In our 17-hour sample, roughly 77% of WETH pools held only dust and just 6 held at least one ETH. A pool existing tells you nothing about its depth — always read the balance.

Keep reading