On-chain
Every number, live.
Supply and the burn read straight from Robinhood Chain; price and liquidity from the public market APIs, every call shown below.
Price · $IF / WETH
$0.00856
- Market cap
- $7.76M
- Liquidity
- $399.72K
- 24h volume
- $414.55K
- Holders
- 7.5K
Buys / Sells · 24H
—
Buys
—×
—
Sells
Who holds it
The top ten includes the burn address and the liquidity pool. Neither is a person.
- Top 10
- 11–30
- 31–50
- Everyone else
Buy and sell pressure
Hourly volume over the last day, trades of $500 and up. Buys up, sells down.
The last seven days
- Price
- -33.96%$0.01310 → $0.00865
- Burned
- 958.2Kacross 55 burns
Up to 2026‑09‑10. Refreshed daily, not live — the figures above it are.
Who holds it
The fifteen largest holdings, with everything we can identify named. The biggest is the burn address — those tokens are gone, not held.
| Address | What it is | Tokens | Share of supply |
|---|---|---|---|
| 0x000000…00dEaDopens in a new tabBurned | Burned | 94.3M | 9.43% |
| 0xE36B1A…66d05aopens in a new tab— | — | 31.2M | 3.12% |
| 0xb64325…2b2697opens in a new tabContract | Contract | 23.9M | 2.39% |
| 0x39A200…F21953opens in a new tabLiquidity pool | Liquidity pool | 21.8M | 2.18% |
| 0x1bF457…0Af6Bcopens in a new tabContract | Contract | 15.9M | 1.59% |
| 0x0042Bc…384C34opens in a new tab— | — | 15.6M | 1.56% |
| 0x71f2F1…E0969bopens in a new tab— | — | 14.5M | 1.45% |
| 0x2eB50B…c513D8opens in a new tab— | — | 13.8M | 1.38% |
| 0x918FCe…fE0735opens in a new tabContract | Contract | 12.6M | 1.26% |
| 0xcAF284…20497dopens in a new tab— | — | 12.5M | 1.25% |
| 0x7Ff8bb…61CCe5opens in a new tab— | — | 10.6M | 1.06% |
| 0x43F261…b7C195opens in a new tab— | — | 9.5M | 0.95% |
| 0x8EfC64…6d244eopens in a new tabContract | Contract | 9.1M | 0.91% |
| 0xA24509…653D8Copens in a new tab— | — | 9M | 0.90% |
| 0x5C7cE0…4a056bopens in a new tab— | — | 9M | 0.90% |
Read from the block explorer on 2026‑09‑08. Every row links to the address.
Every burn
Read from the chain. Each step is a transaction you can open.
The latest burns
- 41,677IFViewopens in a new tab
- 7,411IFViewopens in a new tab
- 11,231IFViewopens in a new tab
- 10,997IFViewopens in a new tab
- 31,787IFViewopens in a new tab
- 20,229IFViewopens in a new tab
- 36,672IFViewopens in a new tab
- 5,248IFViewopens in a new tab
- 991IFViewopens in a new tab
- 6,794IFViewopens in a new tab
Latest trades
The most recent trades on the IF/WETH pool.
- Reading the chain…
94,489,183
9.45% · burned and unrecoverable
Sent to 0x…dEaD, an address whose private key nobody knows and nobody can derive. Nobody can move these tokens — not the team, not you, not anyone.
1B
Total supply
—
Main pool
Checks anyone can run
- Listing verifiedopens in a new tab
- Honeypot checkopens in a new tab
- Fixed supply, no mint functionopens in a new tab
- Burn address has no private keyopens in a new tab
- Who can change the contractopens in a new tab
Two of these are attested by third parties, not by us; three are read from the contract by this page as it loads. Each links to where you can check it yourself, and a check that could not be read says so rather than showing a pass.
Check every number yourselfEvery figure on this page comes from a public, keyless, read-only call. Here is each one, exactly as we make it. Paste any of them into a terminal.
Price
curl -s 'https://api.dexscreener.com/latest/dex/pairs/robinhood/0x39a200271525e9641e799127bdab299daef21953'
The number is at pairs[0].priceUsd
Market cap
curl -s 'https://api.dexscreener.com/latest/dex/pairs/robinhood/0x39a200271525e9641e799127bdab299daef21953'
The number is at pairs[0].marketCap
Liquidity
curl -s 'https://api.dexscreener.com/latest/dex/pairs/robinhood/0x39a200271525e9641e799127bdab299daef21953'
The number is at pairs[0].liquidity.usd
24-hour volume
curl -s 'https://api.dexscreener.com/latest/dex/pairs/robinhood/0x39a200271525e9641e799127bdab299daef21953'
The number is at pairs[0].volume.h24
Holder count
curl -s 'https://api.geckoterminal.com/api/v2/networks/robinhood/tokens/0x232CDFc415D10b673845D83Dc02ba2eaBe7e30d1/info'
The number is at data.attributes.holders.count
Tokens burned
curl -s -X POST https://rpc.mainnet.chain.robinhood.com \ -H 'content-type: application/json' \ -d '{"jsonrpc":"2.0","id":1,"method":"eth_call","params":[{"to":"0x232CDFc415D10b673845D83Dc02ba2eaBe7e30d1", "data":"0x70a08231000000000000000000000000000000000000000000000000000000000000dead"},"latest"]}' # balanceOf(0x…dEaD) — hex wei, divide by 1e18The number is at result
Total supply
curl -s -X POST https://rpc.mainnet.chain.robinhood.com \ -H 'content-type: application/json' \ -d '{"jsonrpc":"2.0","id":1,"method":"eth_call","params":[{"to":"0x232CDFc415D10b673845D83Dc02ba2eaBe7e30d1", "data":"0x18160ddd"},"latest"]}' # totalSupply() — hex wei, divide by 1e18The number is at result
Who can change the contract
curl -s -X POST https://rpc.mainnet.chain.robinhood.com \ -H 'content-type: application/json' \ -d '{"jsonrpc":"2.0","id":1,"method":"eth_call","params":[{"to":"0x232CDFc415D10b673845D83Dc02ba2eaBe7e30d1", "data":"0x8da5cb5b"},"latest"]}' # owner() — this contract reverts, because it has noneThe number is at error.message
Recent trades
curl -s 'https://api.geckoterminal.com/api/v2/networks/robinhood/pools/0x39a200271525e9641e799127bdab299daef21953/trades'
The number is at data[].attributes
The largest holders
curl -s 'https://robinhoodchain.blockscout.com/api/v2/tokens/0x232CDFc415D10b673845D83Dc02ba2eaBe7e30d1/holders'
The number is at items[].address.hash
These are built from the same addresses and endpoints the page itself uses, so they cannot quietly stop matching. If one of them disagrees with what you see above, the page is wrong and we would like to know.
0x232CDFc415D10b673845D83Dc02ba2eaBe7e30d10x39A200271525E9641e799127bdAB299DAeF21953LivePrice, liquidity and volume come from DexScreener; holders and concentration from GeckoTerminal; the burn is read straight from the chain. Everything refreshes on its own while this tab is open.