How to Take a Solana Token Holder Snapshot
How a Solana token holder snapshot works, what each output column means, top-N selection by use case, and the CEX and contract traps that ruin distributions.

You launched a Solana token, or you are planning something around one. The question is always the same: "Who actually holds this?" A snapshot is the answer to that question. A single frame in time showing every wallet and how much they hold.
This guide covers snapshots from scratch. What they are, when you need one, how to take one using j.tools. No technical depth, just the practical stuff.
What a snapshot is, in plain terms
Every Solana token has a list: which wallet holds how much. That list changes every second because transactions never stop. A snapshot is the act of saying "right now" and freezing that list into a file. The file is yours, and you do whatever you want with it.
For example, if you are airdropping tomorrow, take a snapshot today, save the list, send tokens to those addresses tomorrow. Without a snapshot, there is no way to know who to send to.
Where snapshots are used
The four most common use cases:
- Airdrop distribution. You want to thank existing holders or hand out a new token to people already on your token. Whoever is on the list gets a share.
- Holder analysis. What percent of supply do the top 10 wallets hold? Is the distribution healthy or is it a few whales? A snapshot answers this.
- Community segmentation. Holders with over 1000 tokens go into a premium tier, over 100 into a standard tier, and so on. Foundation work for marketing.
- Due diligence. Considering buying a token? Take a snapshot, see the distribution. If the top 10 wallets hold 80% of supply, pay attention.
How to take one with j.tools
Three steps. Open the Solana token snapshot tool and do this:
- Paste the token address. You need the mint address, the long string you would see on Solscan.
- Pick how many holders you want. Preset options: 100, 500, 1000, 5000, 10000. For most cases 1000 is plenty; for a large airdrop pick 5000.
- Run it. A few seconds later the list arrives as a downloadable file.
You can also toggle "include SOL balances" so each holder's wallet SOL balance lands in the file too. Useful for telling active wallets from dead ones at a glance.
What the output shows
In the file you downloaded, every row is a wallet. Each row has:
- Wallet address. The Solana address holding the token.
- Token amount. Total tokens in that wallet.
- Percentage. What share of total supply this wallet holds.
- Account count. One person can open multiple token accounts; the snapshot collapses them into one row. This column shows how many were merged behind the scenes.
- SOL balance. (Optional) SOL held in that wallet.
Rows arrive sorted largest to smallest: top holders at the top. You can drop the file in Excel, filter, or feed it into another tool.
Which preset to pick
Quick guide:
| Scenario | Recommended pick |
|---|---|
| Quick token health check | 100 (top whales only) |
| Standard airdrop prep | 1000 |
| Wide community airdrop | 5000 or 10000 |
| Due diligence (pre-buy) | 500 |
Three things to watch out for
Exchange wallets show up in the list. Binance, Coinbase, Kraken and other exchange hot wallets appear at the top of every token's holder list because all customer tokens sit in a single wallet. Airdrop to them and you donate to the exchange instead of reaching its users. Filter them out before distribution.
LP pools look like big holders. If there is liquidity on Raydium or another DEX, a chunk of the token sits there. The snapshot shows it as a single wallet, but it is the pool's program address, not a real user.
Don't announce a snapshot ahead of time. If you say "we are taking a snapshot tomorrow", last-minute transfers start and your list fills with wallets you did not want. Take it quietly, then announce "snapshot taken at X" after the fact.
What comes after
The list is in hand, the real work begins now. The Solana multi sender tool takes a CSV and runs a bulk distribution, finishing the airdrop. For very large lists, check the many-to-many transfer tool. For the full airdrop playbook, read the snapshot-based airdrop guide.
For more guides like this, the Solana guides category covers adjacent topics, and the Solana tagged posts page has the broader feed.
Five-minute job, really. Paste the token address, pick how many holders, run it. The list arrives. The rest is up to you.


