Skip to content

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

1H6H24H
Market cap
$7.76M
Liquidity
$399.72K
24h volume
$414.55K
Holders
7.5K

Buys / Sells · 24H

Buys

×

Sells

The last seven days

Price
-33.96%$0.01310 → $0.00865
Burned
958.2Kacross 55 burns
Largest single burn
113.9K
Viewopens in a new tab

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.

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

  1. 41,677IFViewopens in a new tab
  2. 7,411IFViewopens in a new tab
  3. 11,231IFViewopens in a new tab
  4. 10,997IFViewopens in a new tab
  5. 31,787IFViewopens in a new tab
  6. 20,229IFViewopens in a new tab
  7. 36,672IFViewopens in a new tab
  8. 5,248IFViewopens in a new tab
  9. 991IFViewopens in a new tab
  10. 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

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 yourself

Every 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.

  1. Price

    curl -s 'https://api.dexscreener.com/latest/dex/pairs/robinhood/0x39a200271525e9641e799127bdab299daef21953'

    The number is at pairs[0].priceUsd

  2. Market cap

    curl -s 'https://api.dexscreener.com/latest/dex/pairs/robinhood/0x39a200271525e9641e799127bdab299daef21953'

    The number is at pairs[0].marketCap

  3. Liquidity

    curl -s 'https://api.dexscreener.com/latest/dex/pairs/robinhood/0x39a200271525e9641e799127bdab299daef21953'

    The number is at pairs[0].liquidity.usd

  4. 24-hour volume

    curl -s 'https://api.dexscreener.com/latest/dex/pairs/robinhood/0x39a200271525e9641e799127bdab299daef21953'

    The number is at pairs[0].volume.h24

  5. Holder count

    curl -s 'https://api.geckoterminal.com/api/v2/networks/robinhood/tokens/0x232CDFc415D10b673845D83Dc02ba2eaBe7e30d1/info'

    The number is at data.attributes.holders.count

  6. 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 1e18

    The number is at result

  7. 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 1e18

    The number is at result

  8. 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 none

    The number is at error.message

  9. Recent trades

    curl -s 'https://api.geckoterminal.com/api/v2/networks/robinhood/pools/0x39a200271525e9641e799127bdab299daef21953/trades'

    The number is at data[].attributes

  10. 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.

Contract address0x232CDFc415D10b673845D83Dc02ba2eaBe7e30d1
Main pool0x39A200271525E9641e799127bdAB299DAeF21953

Price, 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.