Skip to content
OnchainQueries

OQ — D20 · Launchpads & Tokens

Creation, every trade along the curve, the completion event, and the pool the token migrates into. The whole lifecycle is decoded, so you can follow a mint from its first block to its last without changing data source.

Programs
9
Tables
253
Event tables
100
Instruction tables
153
OQ — D20·1Example

This is the engine's own example query, unmodified apart from the parameter.

graduations.sql
-- Hourly Pump.fun trade flowSELECT  date_trunc('hour', ts) AS hour,  count_if(is_buy) AS buys,  count_if(NOT is_buy) AS sells,  sum(sol_amount) AS sol_volumeFROM pump_fun_solana.pump_fun_evt_trade_eventWHERE ts >= {{start_time}}GROUP BY hourORDER BY hour;
Programs in this family
Boop · Dumpfun · Meteora Dynamic Bonding Curve · Moonshot · Pump Fees · Pump.fun · Raydium Launchpad · Vertigo · Virtuals
Instruction-only programs
1 of 9 declare no events in their IDL and expose call_ tables only.

Read the table naming rules, or create an account and query them.