Everything below is about Pons, the token factory on Robinhood Chain. Addresses, topics and selectors, so you can verify all of it yourself instead of believing a website. Chain facts below were checked on 14 September 2026 — they can change, and we would rather you re-checked than trusted us.
Public RPC, no key needed. They rate-limit, so use failover,
and send a browser User-Agent or you get a 403.
| what | value |
|---|---|
| Launchpad | ponsfamily.com |
| Pons factory | 0x7ed598bcef8bd9edd8c97a195c6d13f40801ec7e |
| Uniswap v4 meme hook | 0xe5e702641ea86f4ae6cc3cdaed2b886f976be044 |
| Router | 0xe33e9e479df8802cb0866d5d05258bec4cf62948 |
| Block time | ~0.1s — 36,000 blocks is about an hour |
| RPC | rpc.mainnet.chain.robinhood.com robinhood-rpc.publicnode.com rpc.arrowrpc.com rpc.ordofi.network |
Two topics are all you need. TokenLaunched
carries token, curve and deployer in the topics, and pair asset plus graduation threshold in the data.
// every token launched in a block range const TOKEN_LAUNCHED = '0x8d4aad4953d0ca700d468f3753aa14432d1b35b43ec6409f051fb6aa43a89607'; // curve completed / pool opened — topics[1] is the token const CURVE_DONE = '0xcdb72f157fd3666758a6ce201387ffb52038c7562e4fff352828da1096c4b6b4'; await fetch(RPC, { method: 'POST', headers: { 'Content-Type': 'application/json', 'User-Agent': 'Mozilla/5.0' }, body: JSON.stringify({ jsonrpc: '2.0', id: 1, method: 'eth_getLogs', params: [{ address: '0x7ed598bcef8bd9edd8c97a195c6d13f40801ec7e', topics: [TOKEN_LAUNCHED], fromBlock: '0x...', toBlock: '0x...' }]}) });
Names and tickers come from batched
eth_call: name() is
0x06fdde03, symbol() is
0x95d89b41. Around fifty tokens per JSON-RPC batch before they complain.
On Pons the pair asset can be any token, and this chain has around 190 tokenized stocks on it. So a meme's pool can be quoted in NVDA, or TSLA, or CRCL. When that happens the token's dollar price stops being a simple thing: it is a ratio against the stock, multiplied by the stock's own price. Buying the meme means handing over tokenized shares, which get locked in the LP.
The AI / NVDA pool has held around $6.9M in liquidity — deeper than NVDA's own pool against WETH. The HIMS / BONER pool has been deeper than HIMS against USDG. The meme can become the main market for the stock token.
Plenty of lanes are the other way round: the stock is the base and the meme is the quote. Screen only for "meme base, stock quote" and you will call the busiest lanes empty.
There is a story going around that this squeezes Wall Street. It does not, at this size, and we are not going to sell you that. Treat it as a pairing choice, not a plan.
For each tokenized stock, the deepest memecoin pool quoted against it, next to that stock’s own deepest pool. Hover a row. This is the most interesting thing happening on this chain — and, to be straight with you, NEIGH is not in it. We are paired against ETH.
A "graduated" curve means nothing until you know what it graduated against. Pair against a dead token and the milestone is decoration.
If the tokenized stock itself has four thousand dollars of liquidity, your exit is four thousand dollars wide, however good the meme is.
This chain carries pools quoting tens of millions in liquidity with about one cent of daily volume. Those are not depth. Check volume against liquidity before you believe a number — including any number we show you.
Same ticker, same picture, launched minutes after the original, is standard here. Around a third of the tickers in any given hour already existed in that same hour. The contract address is the only identity.
reading…
The live block above is a single relevance-capped search response from a third party, fetched once when you loaded the page. It is a sample, not an index. It can miss pools entirely. It can include spoofed ones. We do not filter it, because filtering it silently would be worse than showing it raw with this paragraph underneath.
The addresses above were correct on 14 September 2026 and are reproduced from our own notes. Verify them against the chain before you build anything that depends on them.