The 10 most-invoked Solana programs, per ProgramWatch
ProgramWatch ranks programs by instruction invocations over 24 hours — and the leaderboard is a portrait of Solana in 2026: token plumbing on top, the Pump.fun machine claiming three of ten slots (~100M invocations/day), Token-2022 arriving, Phoenix Perps out-calling Jupiter while looking anonymous on every explorer, and a metadata lesson: on-chain registration systematically under-reports how open these programs actually are.
devrels.xyz/a/142short linkTVL rankings tell you where capital parks. ProgramWatch's top-programs leaderboard tells you what Solana actually executes: programs ranked by instruction invocations — including CPIs — over the last 24 hours, with Vote and ComputeBudget noise excluded (data via Dune, refreshed daily). We pulled the snapshot from ProgramWatch's free API on July 9 and annotated the top ten. It's a strikingly honest portrait of the chain in 2026.

The list
- SPL Token Program — 346,058,670 invocations/24h
Tokenkeg… - System Program — 147,269,875 invocations/24h
11111111… - Associated Token Account — 62,616,949 invocations/24h
ATokenGP… - PumpSwap (Pump.fun AMM) — 52,735,883 invocations/24h
pAMMBay6… - SPL Token-2022 — 39,299,566 invocations/24h
TokenzQd… - Phoenix Perps — 37,745,326 invocations/24h
EtrnLzgb… - Pump Fees Program — 29,090,129 invocations/24h
pfeeUxB6… - Meteora DAMM v2 — 22,890,250 invocations/24h
cpamdpZC… - Jupiter Aggregator v6 — 19,238,554 invocations/24h
JUP6LkbZ… - Pump.fun (bonding curve) — 17,828,379 invocations/24h
6EF8rrec…
Ranks 1–3: the plumbing tax
Nothing surprising on the podium, and that's the point. Every token transfer touches the SPL Token Program; every account creation and lamport move touches the System Program; nearly every token interaction derives or creates an Associated Token Account. Because this ranking counts CPIs, these three compound: one swap can invoke SPL Token half a dozen times through nested calls. 346 million daily invocations of the token program is less a leaderboard win than a utility bill — the cost of everything else on the list existing.
The Pump.fun machine: three of the top ten
Add up ranks 4, 7, and 10 and the memecoin factory clears ~100 million invocations a day:
- PumpSwap (#4, 52.7M) — the AMM where graduated tokens trade.
- Pump Fees (#7, 29.1M) — the fee program CPI'd by PumpSwap to apply market-cap-tiered fees — a program that ranks #7 on the entire chain purely by riding along on #4's swaps.
- Pump.fun (#10, 17.8M) — the original bonding curve where tokens launch.
Whatever you think of memecoins, the engineering read is unambiguous: a single product's pipeline — launch, graduate, trade, collect fees — is one of the heaviest workloads on the network, and its fee logic alone out-executes almost every DeFi protocol on Solana.
Rank 5: Token-2022 is no longer "coming"
The Token-2022 program at 39.3M daily invocations — over a tenth of classic SPL Token's volume — is the quiet headline. Extensions (transfer fees, confidential transfers, metadata pointers) were long dismissed as a standard waiting for adoption. Stablecoin issuers, tokenized stocks, and newer AMMs that support Token-2022 mints (Meteora DAMM v2, below) have ended that conversation.
Rank 6: the "mystery" that wasn't — Phoenix Perps
EtrnLzgb… carries no name in ProgramWatch's database, no on-chain IDL, and no label on the major explorers — 37.7 million daily invocations of apparently anonymous bytecode. Dig one layer deeper and it resolves: Solana Compass's program registry lists it as Phoenix Perps — the perpetual-futures extension of Phoenix's crankless order book. The call volume makes sense immediately: Phoenix settles matches atomically inside taker transactions, and the perps layer adds funding and mark-price flow on top, so market-maker quote churn alone rings the program tens of millions of times a day.
The instructive part is how easy it was to misread. A top-six program from a protocol this site has covered still looks like anonymous bot infrastructure on every major explorer, because nobody registered its name, IDL, or verified build where tooling looks for them. That's the strongest evidence in this whole article for the metadata-lag thesis below — and a free tip for the Phoenix team.
Ranks 8–9: Meteora out-calls Jupiter
Meteora's DAMM v2 (cpam… — an open-source, audited constant-product AMM with Token-2022 support, position NFTs, and single-sided fee collection) beats Jupiter v6 on raw invocations, 22.9M to 19.2M — with DLMM sitting just outside the ten at #11. Two caveats before drawing conclusions: Jupiter is a router whose swaps largely execute as CPIs into venues like Meteora (inflating the venue, not the router), and launchpad flow parks heavily in Meteora pools. Jupiter's own distinction: it's the only program of the ten with an on-chain Anchor IDL, decodable by any explorer or indexer with zero off-chain lookups.
What the metadata column actually says
Here's where a lazy read goes wrong — and where we initially went wrong ourselves. The bulk API's verified: false / hasIdl: false flags make the top ten look like a trust wasteland. Check each program against the actual sources of truth and the picture inverts:
- SPL Token is a verified build — the OtterSec registry matches its on-chain hash to the public repo. Token-2022's repo is registered there too.
- Pump.fun publishes IDLs for all three of its programs —
pump.json,pump_amm.json, andpump_fees.jsonlive in pump-public-docs. They're just not posted to on-chain IDL accounts. - Meteora DAMM v2 is fully open source and audited — program source, IDL, and SDKs all public.
So the honest finding isn't "nothing is trustworthy" — it's that on-chain registration lags off-chain reality. Teams ship source, audits, and IDLs in their repos, but few register verified builds or post IDLs on-chain, so explorer flags systematically under-report. If you're doing integration due diligence, treat the flags as a starting point, not a verdict — and if you ship one of these programs, registering the verified build is an afternoon's work that makes every explorer tell your story correctly.
Methodology, honestly
Invocations are not users and not value. CPIs multiply (one transaction can ring the token program six times), bots dwarf humans in call counts, and a fee program can hit #7 without a single user ever addressing it directly. Rankings by active wallets or volume would reshuffle everything below rank 3. What invocation counts uniquely measure is execution reality — which bytecode the validators actually spend their cycles running. By that measure, Solana in July 2026 is: token plumbing, one memecoin conglomerate, an arriving token standard, two AMMs, a router — and a perps engine so under-registered it passes for a stranger.
Pulling the data yourself
Everything above came from ProgramWatch's API — free, no auth, no keys, CORS-open, with an llms.txt for agents:
# top 100 by 24h invocations
curl https://programwatch.dev/api/top-programs
# metadata for any program (authority, deploy, IDL, verification)
curl https://programwatch.dev/api/program/JUP6LkbZbjS1jKKwapdHNy74zcZ3tLUZoi5QNyVTaV4
# live on-chain check
curl "https://programwatch.dev/api/check?address=JUP6LkbZbjS1jKKwapdHNy74zcZ3tLUZoi5QNyVTaV4"Resources
- programwatch.dev/top — the live leaderboard · API docs
- github.com/MeteoraAg/damm-v2 — the cp-amm at #8
- PumpSwap program docs — the Pump.fun AMM and fee program relationship
- Our related coverage: ProgramWatch: the program explorer · Jupiter · Meteora · SPL Token vs Token-2022 · verified program builds
Keep reading
A dog airdrop after FTX became Solana's loudest cultural brand — then shipped swaps, rewards, bot volume, launchpads, and regulated wrappers. Here is the stack, the fee flywheel, and why "just a meme" is lazy ecosystem analysis.
Smart contracts are just programs that a network of computers agrees to run the same way. On Solana they're called programs. Here's the mental model, why IDLs matter, and a feature comparison of three tools that make programs inspectable: ProgramWatch, the official IDL History Explorer, and Orquestra.
A technical field guide to the six Solana program classes that absorb almost every serious transaction: System for accounts and SOL, Token for balances, ATA for deterministic addresses, Token-2022 for extensions, market programs for price discovery, and conditional escrow for vaults, lending, perps, and multisigs.
Get new articles in your inbox
Technical deep-dives on Solana tooling, infrastructure, and ecosystem. No noise.
