Measurement · 9 August 2026

We took the funder hop a reader suggested. It identifies almost nothing.

A Create transaction's fee payer is a stable identity, not a real one — fund a fresh signer per launch and every token reads FIRST_LAUNCH. The fix is to go one hop up the funding graph. We built it. Across 941 resolved deployers, 85.4% were funded straight from exchange or infrastructure addresses. Of the 14.6% funded by a private wallet, four funders have now funded more than one deployer — the largest has funded eight. That is the first structure this check has ever surfaced, and we still cannot tell you whether it means anything.

A negative result, published because it is the useful kind. Method and raw counts below.

Updated 9 August 2026, later the same day. This piece first published a few hours earlier with a sample of 15 deployers, of which 11 resolved and all 11 were infrastructure-funded — so it reported zero private funders. The index has since grown to 190 resolved deployers and the picture has refined: private funders do exist, at roughly 8%. We were wrong to imply they were absent.

The conclusion did not change — it got stronger. Private funders exist and still cluster nothing: every one of them has funded exactly one deployer. Meanwhile the largest infrastructure address has gone from 6 of 15 to 40 of 190.

The index fills automatically as tokens are scanned, so any figure here is a snapshot. The live count is on the deployer index.

Updated 11 August 2026 — the central claim above was overturned. At n=190 this piece said every private funder had funded exactly one deployer, and called that "the one case where a shared funder would be real evidence is the one case that has never occurred". At n=941 it has occurred. Four private funders have funded more than one deployer and one has funded eight. The sentence was true when written and is false now; we have removed it rather than softened it.

Everything moved in the same direction: private funders 8.4% → 14.6%, exchange/infrastructure 91.6% → 85.4%, and the largest single infrastructure address 21% → 16.0% of all resolutions. This is the second time these figures have shifted materially with sample size. Treat every number here as a snapshot with a date on it, not a rate.

What has not changed is the conclusion, and one new caveat makes it firmer: the hop runs only on deployers with no launch history, which is precisely the population we have no outcomes for. 58 of the 941 have any outcome sampling at all. So repeat private funding is a structure we can now see, and nothing in this dataset says it predicts a bad outcome.

Live — what the index says today (2026-08-11)

1,003 resolved deployers · 85.6% exchange/infrastructure · 14.4% private wallet · 5 private funders appearing more than once (largest funded 8) · biggest single funder holds 16.4% of all resolutions.

Only 62 of the 1,003 (6.2%) have any outcome sampling, because the hop runs on deployers with no launch history — so none of this says repeat funding predicts a bad outcome. The prose below is a dated snapshot and its figures will differ; that is deliberate, and the corrections are logged in it.

The critique

Last week we published a measurement showing that pump.fun's ownership transfer rewrites the on-chain creator field, so any tool reading it names the wallet that owns a coin today rather than the one that deployed it. Our fix was to resolve the deployer from the token's Create transaction instead, which is immutable.

Within an hour, a reader on r/solana pointed out the hole in that fix:

"accountKeys[0] on the Create tx is just whoever paid for it, and plenty of launches get signed by a fresh wallet funded from the same source minutes earlier, or by a launchpad relayer. So 'zero prior launches' is cheap to manufacture in that direction as well. What the Create tx gives you is a stable identity rather than a real one unless you go one hop up the funding graph and cluster on the funder."

That is correct, and it matters. A fee payer is an identifier, not an identity. Rotate the signing wallet per launch and every token you deploy presents as a first-time creator — which is the single most reassuring thing a rug checker can say. We said we would build the hop. This is what it found.

What we built

For any deployer wallet, walk its own transaction history back to the oldest signature, take the first inbound SOL transfer, and identify the sender. That sender is the funder — one level above the wallet that signs the launch, and the level a rotation strategy cannot hide behind.

Then classify the funder, because this is where the idea lives or dies:

What we measured

Deployers our scanner had classified as FIRST_LAUNCH — the case where the hop is the only possible signal, because there is no launch history to read. Figures below are as of 11 August 2026; the index grows continuously.

Funder resolved asnShareLinks anything?
Exchange / infrastructure80485.4%No
Private wallet13714.6%Four of them, now
Resolved total941

The overwhelming pattern is somebody withdrawing from an exchange and deploying a token — which links them to nobody except every other customer of that exchange.

The private funders are the interesting column, and as of this update they are no longer empty. There are 127 distinct private funders behind those 137 deployers. 123 of them funded exactly one deployer. Four funded more than one — three funded two each, and one funded eight.

That last one is the shape the critique predicted: one wallet, eight separate first-launch deployers, each of which would read as a first-time creator on its own. At n=190 we said this had never occurred and treated its absence as the finding. It occurs.

And we still cannot tell you it means anything. None of those eight deployers has outcome sampling — no dead-token rate, no peak market cap, nothing. Funding eight wallets is what a launch operation looks like; it is also what one person with eight projects looks like, and what a small team looks like. We are not naming the wallet, because a repeat funder with no measured outcome is a structure, not a verdict, and publishing an address on that basis would be an accusation wearing a measurement’s clothes.

The trap, which is the actual finding

One address has funded 151 of the 941 on its own — 16.0% of everything we have resolved. It has the throughput profile of an exchange hot wallet, though it was not on our list of known ones. The next two account for 42 and 30. Across all 941, 26 infrastructure addresses have funded more than one deployer, against four private ones.

If we had clustered naively on "shared funder", those forty unrelated deployers would have become one confident forty-wallet cabal. The finding would have looked exactly like a real one: same funder, many deployers, tight timing. It would have been entirely false — and it would have grown more convincing with every scan.

This is the failure mode that makes funder clustering dangerous rather than merely unhelpful. The hop does not fail by returning nothing — it fails by returning something that looks like evidence. Every wallet that ever withdrew from a large exchange shares a funder with thousands of strangers.

So the classifier is the feature, and the hop is the plumbing. We ship it deliberately silent: when the funder is an exchange or infrastructure, the tool says the check ran and links nothing, rather than manufacturing a cluster.

Why serial launchers never resolve

The walk returns "too deep" on essentially every deployer with a long history. Their wallets accumulate transactions from every launch, so reaching the first funding costs more pages than it is worth.

That sounds like a limitation and mostly is not. A wallet with 25 prior launches has already told you what you need; the funder adds nothing you did not know. The hop matters precisely where the existing signal is absent — first-launch deployers — and those wallets are shallow enough to walk. We only run it there, which also keeps the RPC cost near zero.

How to check it yourself

# 1. Walk the deployer wallet to its OLDEST signature
getSignaturesForAddress(deployer, before=...)   # paginate to the end

# 2. First inbound SOL transfer on that tx = the funder
getTransaction(oldest) -> find the account whose balance DECREASED

# 3. Classify before you cluster. This step is not optional.
known CEX list        -> no signal
program-owned account -> no signal
very high volume AND sustained high rate -> no signal (unlisted exchange or bot)
otherwise             -> private wallet, and only now is a shared funder meaningful

If you cannot reach the wallet's first transaction, return unknown. A truncated walk hands back whichever counterparty happened to sit at the page limit — a random trading partner, presented with the same confidence as a real funder. That failure is indistinguishable from a genuine finding, which makes it worse than no finding at all.

What this does and doesn't tell you

The practical takeaway

If you are building deployer reputation into a bot or a scanner: resolve the deployer from the Create transaction, and then stop before you cluster on the funder. The hop is worth taking, but the classifier in front of it is what stops it inventing cabals. Without that step you will generate confident false positives on the most ordinary behaviour on the chain.

And the reader who raised it was right about the underlying point, which is why we built it: a stable ID you can cluster on beats a mutable field you cannot. It just turns out that one hop up, almost everyone is standing in the same place.

See a deployer's real track record

Free, no signup. The deployer is resolved from the Create transaction, and the funding hop runs where there is no launch history to read.