Calculation

How Mint Rankings Are Calculated

Mint rankings are built from per-mint accumulators updated by CreateEvent, TradeEvent, completion and fee-related events.

Stored mint fields

FieldMeaning
buy_lamportsTotal observed buy-side SOL flow for the mint.
sell_lamportsTotal observed sell-side SOL flow for the mint.
total_lamportsbuy_lamports plus sell_lamports.
net_lamportssell_lamports minus buy_lamports.
virtual_sol_reservesLatest TradeEvent virtual SOL reserves in lamports, when present.
virtual_token_reservesLatest TradeEvent virtual token reserves in token base units, used with the virtual quote reserve for price calculations.
real_quote_reservesLatest TradeEvent real quote reserves in the quote mint's native base units, when present.
virtual_quote_reservesLatest TradeEvent virtual quote reserves in the quote mint's native base units, when present.
token_total_supplyLatest cached token supply in base units. CreateEvent initializes it, and each successful token-page RPC refresh replaces it with the current on-chain mint supply.
created_at_msFirst CreateEvent timestamp stored write-once for the mint.
quote_mintQuote mint stored write-once from CreateEvent, or from TradeEvent when creation data is absent.

Sort indexes

  • updated_at sorts by latest observed trade time.
  • created_at sorts by launch time.
  • buy_amount, sell_amount and total_amount sort by SOL flow.
  • buy_events, sell_events and total_events sort by transaction counts.
  • earned_cashback sorts by cashback earned; claimed_creator_fee is a legacy sort name currently backed by the per-mint TradeEvent creator_fee accumulator.

Flag filters

Mints can be filtered by one exact mint address, up to three creator addresses, cashback, creator fee, mayhem, tokenized agent, charity, graduated and not graduated buckets. Address and flag filters combine, and only mints with retained trade activity appear. Flags are monotonic: once observed, they stay true for that retention window.