Solana Learning.
A high-level course on the chain that powers $PIGEON — how Solana works, how its markets move, why meme coins live here, and how the flock can stop trading blind. No grift. No paywalls. No "secret sauce" course-seller routine. Just the playbook, written plain.
Welcome to Solana.
Before charts and meme coins, you need the chain. This module zooms out: what Solana is, who built it, why it exists, and what makes it different from the other forty-plus L1s out there.
What Solana actually is
Solana is a Layer 1 blockchain — a base-layer settlement network like Bitcoin or Ethereum, not built on top of another chain. It launched its mainnet beta in March 2020. Its design goal was unusual at the time: prioritize raw throughput and low fees over the modular "scale through L2s" strategy Ethereum chose.
Practically that means transactions on Solana settle in roughly 400 milliseconds, fees are typically a small fraction of a cent, and the chain can process tens of thousands of transactions per second under load. For traders, this matters because it changes what's possible — high-frequency strategies, cheap arbitrage, and meme coin launches at scale all live here because they couldn't anywhere else.
The founders and the company behind it
Solana was created by Anatoly Yakovenko, a former Qualcomm engineer who spent over a decade designing distributed systems for telecom networks. The whitepaper that became Solana started as a 2017 paper on Proof of History — a clever way to give a blockchain a verifiable clock without every node having to trust each other's timestamps.
He co-founded the Solana Foundation and Solana Labs with Raj Gokal and a small team out of San Francisco. The Foundation handles ecosystem grants and stewardship. Solana Labs builds the reference validator client (agave, formerly the Anza fork of the original Solana Labs client). A second client, Firedancer, is being built by Jump Crypto from scratch in C++ for performance and resilience.
Multi-client diversity matters. If a single client has a bug, the chain can stall. Firedancer's existence is a major step toward the kind of resilience Ethereum achieves with its 5+ client ecosystem.
Why Solana exists — the design bet
Most chains scale by adding layers — sidechains, rollups, app-chains. Solana made a different bet: scale the base layer itself by attacking every bottleneck in a traditional blockchain pipeline at once. The promise: one chain, one mempool, one global state, all moving fast enough that you don't need to fragment liquidity across L2s.
That bet has trade-offs. Solana validators run on high-performance hardware (32+ core CPUs, 256+ GB RAM, 1 Gbps+ bandwidth). That's more demanding than Ethereum's sub-$1,000 home-node requirement. Critics call this centralization risk. Supporters call it the price of a chain that actually works for high-throughput apps. You can decide where you stand once you've seen what gets built here.
Solana vs Ethereum — quick comparison
| Property | Solana | Ethereum (L1) |
|---|---|---|
| Block time | ~400 ms | ~12 s |
| Avg fee | $0.00025 – $0.01 | $0.50 – $30+ |
| Consensus | PoH + Tower BFT (PoS) | PoS (Casper FFG + LMD GHOST) |
| Smart contract language | Rust (also C, C++) | Solidity, Vyper |
| VM | SVM (parallel execution) | EVM (sequential) |
| Validator hardware | High-spec server | Mid-spec home machine |
| Scaling philosophy | Monolithic L1 | L2-centric (rollups) |
Don't pick a "team" — pick a use case. Use Solana for fast trading, meme coins, and high-frequency apps. Use Ethereum for trust-minimized infrastructure and the deepest stablecoin liquidity. Most pros use both.
- Solana is a Layer 1 chain optimized for throughput, with sub-second finality and sub-cent fees.
- Anatoly Yakovenko's Proof of History innovation is the core of Solana's design.
- Multi-client validator diversity (Firedancer) is improving the network's resilience.
- The trade-off is higher hardware requirements for validators — a deliberate design choice, not an accident.
How Solana works under the hood.
You don't need to write Rust to trade well, but understanding the eight innovations that make Solana fast will sharpen everything from your slippage settings to your priority-fee strategy.
Proof of History — the verifiable clock
Most blockchains have a "what time is it?" problem. Validators are scattered across the world; their clocks drift; trusting any one node's timestamp creates an attack vector. Bitcoin "solves" it by having every node wait long intervals. Solana solves it differently.
Proof of History (PoH) is a continuous SHA-256 hash chain — each hash is the input to the next, like a runner counting steps. You can't fake the count without redoing every previous hash. The network then uses this provable sequence as a global clock. Validators don't have to gossip "what time is it"; they look at the PoH stream and know the order of events.
This sounds esoteric, but it's the foundation that enables every other Solana innovation — because once you have an agreed-upon sequence, you can pipeline, parallelize, and forward transactions without waiting for explicit consensus on ordering.
Tower BFT — consensus on top of PoH
PoH gives you a clock; Tower BFT gives you finality. It's a Byzantine Fault Tolerant variant of PBFT optimized for the PoH timeline. Validators vote on the canonical fork, and votes are doubled in weight (a "lockout") each time they're confirmed — meaning the longer a fork stands, the more economically painful it becomes to switch off it.
In practice this means transactions reach "confirmed" status in roughly half a second and "finalized" (super-majority committed) in 12-19 seconds.
Sealevel — parallel transaction execution
The EVM processes transactions one at a time, like a single checkout lane at a grocery store. Solana's Sealevel runtime opens dozens of lanes. The trick: Solana transactions must declare upfront which accounts they read from and write to. The runtime can then look at a batch of transactions, identify which ones touch overlapping state, and run all the non-overlapping ones in parallel.
Why you care as a trader: this is why Solana doesn't grind to a halt during a popular meme coin launch the way Ethereum does during a hot NFT mint. Two unrelated trades on two unrelated tokens never block each other.
Gulf Stream & Turbine — moving transactions and blocks
- Gulf Stream is Solana's mempool-less transaction forwarding. Validators forward transactions directly to the next leader before the leader's slot starts. There's no global mempool sitting around waiting — which reduces confirmation time and limits one type of MEV.
- Turbine is the block-propagation protocol. Instead of broadcasting every block to every validator (which would saturate bandwidth), the leader breaks the block into small packets and shares them through a tree-shaped network. Each validator only needs to talk to a small number of neighbors.
The leader schedule and slot timing
Solana doesn't pick block producers randomly per block. At the start of each epoch (~2 days, 432,000 slots), the leader schedule is calculated for the entire epoch in advance. Each slot is 400ms. Every validator knows exactly who's producing every slot — which is why Gulf Stream can forward transactions ahead of time.
This determinism is also why priority fees work the way they do on Solana: when blocks are full, the leader of that slot picks the highest-paying transactions first. If you're trading during a hot launch, paying a higher priority fee literally changes which block your transaction lands in.
Most wallets default to a flat 0.0001 SOL priority fee. During a meme coin frenzy, that's not enough — your tx will sit. Set your wallet to "Dynamic" or "High" priority during launches, and use a tool like Helius to check the current floor.
- Proof of History is a verifiable hash sequence that gives the network a global clock.
- Tower BFT layers consensus on top of PoH and produces sub-second confirmations.
- Sealevel runs non-overlapping transactions in parallel — Solana's headline scaling trick.
- Gulf Stream and Turbine move data efficiently through a known-leader schedule.
- Priority fees matter more on Solana than most people realize, especially during launches.
SOL the asset — tokenomics & staking.
Before you trade anything else on the chain, you should understand the chain's native token. SOL pays fees, secures the network, and indirectly drives most of the ecosystem's economic activity.
Supply, inflation, and burns
SOL launched with an initial supply allocated across the team, foundation, investors, and community. New SOL is created via inflation, which started at 8% per year and decreases by 15% each year until it reaches a floor of 1.5% per year. That inflation pays validators for staking.
Counter-balancing the inflation: 50% of every transaction fee is burned. The other 50% goes to the validator who produced that block. So when the chain is busy (lots of fees), the burn rate climbs and net inflation drops.
Solana also has a "minimum economic value" model where staked SOL earns yield. If you hold SOL long-term and don't stake, you're being diluted by everyone who does.
How staking works
You stake SOL by delegating it to a validator. You don't give up custody — your SOL stays in your wallet, but it gets locked behind a stake account that earns yield (typically 6-8% APY). The validator collects the yield from inflation, takes a small commission (usually 5-10%), and forwards the rest to you.
Stake operates on epochs:
- Activating — you delegate; the stake becomes active at the start of the next epoch (~2 days max).
- Active — you earn yield at the end of each epoch.
- Deactivating — you request to undelegate; takes one epoch to fully unwind before SOL becomes liquid.
If you want yield and liquidity, the answer is liquid staking (covered in Module 7).
Validator economics & MEV
Validators earn money three ways:
- Inflation rewards — paid by the protocol per epoch.
- Priority fees — half of every priority fee on transactions in their block.
- MEV — value extracted from re-ordering, including or excluding transactions. On Solana this mostly flows through Jito, an MEV-aware validator client and tip distribution layer.
Jito introduced "bundles" — atomic groups of transactions where searchers (bots) tip the leader to include their bundle ahead of others. If you've ever seen "Jito tip" in a transaction, that's an MEV searcher paying for priority placement.
SOL as a market asset
SOL trades 24/7 on every major exchange. Its price tends to correlate with two things: BTC's broader trend, and activity on the Solana chain (specifically meme coin volume, which drives priority fees and validator revenue).
Watch REV (Real Economic Value) — total fees + tips paid on Solana per day. When REV climbs, SOL usually follows within days or weeks. When REV craters, SOL is on borrowed time. Tools like Blockworks Research and DefiLlama track this.
- SOL inflation starts at 8% and decays to 1.5% over time; 50% of fees are burned.
- Stake your SOL or be diluted — base staking yield is 6-8% APY.
- Validator income includes priority fees and MEV (largely via Jito).
- Watch REV (chain fee revenue) as a leading indicator for SOL price.
Wallets & self-custody.
If you don't control your keys, you don't own your coins. This module covers picking a wallet, securing your seed, understanding token accounts, and the differences in approval flows between Solana and Ethereum.
Picking a wallet
| Wallet | Best for | Form factor |
|---|---|---|
| Phantom | Daily driver. Best UX, deep integrations. | Browser, mobile, hardware |
| Solflare | Power users; native staking dashboard. | Browser, mobile, hardware |
| Backpack | Trader-focused; xNFT support. | Browser, mobile |
| Ledger / Trezor | Cold storage of long-term bags. | Hardware |
| Squads | Multisig for treasuries & teams. | Web |
Use two wallets: a "hot" wallet for daily trading (small balance only) and a "cold" wallet on a Ledger for long-term holdings. Never sign a meme coin transaction from your cold wallet.
Seed phrases — your real password
When you create a wallet, you'll be shown a 12 or 24-word seed phrase. That phrase is the master key. Anyone with it can drain everything, on every device, forever. Anyone who loses it loses access permanently.
- Write it down on paper or stamp it into metal. Never take a photo, never type it into your computer outside the wallet's recovery flow.
- Store two copies in two physical locations. One at home, one with someone you trust or in a safe deposit box.
- Never share it with anyone. Ever. No support agent, no airdrop site, no "wallet verifier." Anyone asking is stealing.
Token accounts — a Solana quirk
On Ethereum, your wallet just "has" any ERC-20 token; the balance is stored on the token contract. On Solana, every token you own lives in its own token account — a separate on-chain account, owned by your wallet, that costs about 0.00204 SOL in rent to create.
Two practical implications:
- Receiving a brand-new token costs you a tiny amount of SOL (your wallet creates the account).
- Once you sell out completely, you can close the token account to reclaim that 0.00204 SOL. Phantom and Solflare both have one-click "burn dust" tools that close all your zero-balance accounts.
Approvals, drainers, and hygiene
Solana approvals are different from Ethereum. There's no "infinite approval" exploit pattern — each token transfer requires you to sign that specific transfer. But you can still get drained by:
- Phishing sites that mimic real DEXs and trick you into signing a transaction that drains your wallet.
- Malicious dApps that bury a "transfer all SOL to attacker" instruction inside a normal-looking transaction.
- Compromised browser extensions — never install random Chrome extensions while you're trading.
Always check the simulation that Phantom shows before signing. If a transaction is going to send your SOL somewhere, the wallet will tell you. If anything looks off, reject. There is no "undo" on the chain.
- Phantom is the default daily driver; Backpack and Solflare are strong alternatives.
- Use two wallets — hot for trading, cold (hardware) for storage.
- Your seed phrase is everything. Paper or metal. Never digital.
- Solana uses per-token accounts; you can reclaim ~0.002 SOL each by closing dust accounts.
- Read transaction simulations before signing. Always.
Programs, tokens & the SPL standard.
Solana doesn't call them "smart contracts" — it calls them "programs." The naming difference reflects a deeper architectural difference. Understanding it changes how you read suspicious tokens.
Programs vs accounts
On Ethereum, smart contracts are stateful — code and data live together. On Solana, code (a program) and data (an account) are separate. Programs are stateless executables; they read from and write to accounts they're given as input.
This separation is what enables Sealevel parallel execution: the runtime can see exactly which accounts a transaction will touch and schedule it accordingly.
The SPL Token program
Almost every fungible token on Solana — USDC, $PIGEON, BONK, every meme coin — is created by a single program: the SPL Token Program. It's like one universal ERC-20 contract that every token shares. When you create a new token, you're not deploying a new contract; you're calling the SPL Token program with a "mint" instruction and getting back a unique mint address.
This is why Solana token launches are so fast and cheap: there's no contract deployment step. You just create a new mint, optionally fund liquidity, and you're trading.
Token-2022 and authorities
Every SPL token has up to two important authorities:
- Mint authority — the address that can create more of the token. If this is still active, the supply can be inflated infinitely. Renouncing (setting it to null) is mandatory for any serious project.
- Freeze authority — the address that can freeze any holder's tokens. Used legitimately by USDC (so it can comply with sanctions). Used as a rug vector by every scam token that wants to lock you out of selling.
Token-2022 (also called Token Extensions) is a newer SPL token program that adds optional features like transfer hooks, transfer fees, confidential transfers, and metadata pointers. Powerful, but also a new surface area for sneaky tokenomics. Always check.
PDAs and why they matter
A Program Derived Address (PDA) is an account whose address is deterministically derived from a program's ID and a "seed." PDAs have no private key — only the program that derives them can sign transactions on their behalf.
In practice: when a DEX pool stores its liquidity in an "escrow" account, that account is a PDA owned by the DEX program. The user can't drain it; only the program logic can. This is the building block for trustless on-chain mechanics — escrows, vesting contracts, lending protocols, AMM pools.
- Programs (code) and accounts (data) are separated on Solana.
- Almost every token is minted by the shared SPL Token program — fast, cheap, standardized.
- Mint and freeze authority are the two most important fields to check on any new token.
- Token-2022 adds powerful new features but also new ways for tokens to behave weirdly.
- PDAs let programs control accounts trustlessly — they're the foundation of Solana DeFi.
The DEX layer — Jupiter, Raydium, Orca.
If meme coins are the headline, DEXs are the venue. This module covers the four DEX archetypes you'll trade against and the aggregator that ties them all together.
Jupiter — the aggregator that runs the chain
Jupiter isn't a DEX itself; it's a routing aggregator that splits your trade across every other DEX to find the best price. When you click "Swap" in Phantom, it's almost certainly using Jupiter under the hood. Jupiter has become so dominant that other Solana DEXs measure their relevance by their share of Jupiter's routed volume.
Beyond aggregation, Jupiter offers limit orders, DCA (dollar-cost-average), perpetuals (Jupiter Perps), and a launchpad. For most traders, jup.ag is the front door to the chain.
Raydium — the AMM with a CLMM
Raydium is the original Solana AMM. It runs both classic constant-product pools (x*y=k, like Uniswap V2) and concentrated liquidity pools (CLMM, like Uniswap V3). Most meme coins that "graduate" from a launchpad migrate their liquidity to a Raydium pool — making it the dominant venue for meme coin trading.
Raydium's CPMM pools are the standard graduation target for Pump.fun launches. Its CLMM pools are where active LPs tighten ranges to capture more fee per dollar.
Orca and Meteora — concentrated liquidity, done differently
Orca pioneered the Whirlpools CLMM design on Solana — fee-tier pools where LPs choose price ranges. Clean UX, deep stablecoin pools.
Meteora built DLMM (Dynamic Liquidity Market Maker) — bin-based concentrated liquidity that adapts to volatility. It's become the preferred venue for sophisticated meme coin LPs because the bin structure gives finer control over inventory.
How a swap actually executes
When you submit a swap on Jupiter, here's what happens:
- Your wallet builds a transaction with a route — usually 1 to 4 hops across different pools.
- The transaction is sent to an RPC node (your wallet's connection to the chain).
- The RPC forwards it to the next leader (Gulf Stream).
- The leader includes it in a block; Sealevel executes it.
- If the price moved beyond your slippage tolerance while the tx was in flight, the swap reverts and you lose only the fee.
Default slippage of 0.5% is fine for stablecoins. For meme coins on launch day, you may need 5-10%+ just to land a swap. Higher slippage = higher chance of getting sandwiched. Use Jupiter's "MEV protection" toggle when it's available.
- Jupiter is the routing layer; it's how most swaps actually execute.
- Raydium is the dominant AMM; meme coins graduate here from launchpads.
- Orca's Whirlpools and Meteora's DLMM are the leading concentrated-liquidity venues.
- Slippage tolerance is the most important setting most traders never touch.
DeFi beyond DEXs — lending, perps, LSTs.
DEXs are where you swap. The rest of DeFi is where you earn yield, take leverage, hedge, and manage risk. This module covers the four pillars beyond spot trading.
Lending markets — Kamino, MarginFi, Solend
Lending markets let you deposit assets to earn interest, or borrow against your collateral to free up capital. The major Solana venues:
- Kamino — the largest, with vaults that auto-compound and one-click leverage strategies.
- MarginFi — pure isolated lending; clean and simple.
- Solend — original Solana lending protocol; permissionless pools.
- Drift — combines spot lending with on-chain perps.
Each operates with collateralization ratios — you can typically borrow 50-80% of your deposit's value, depending on the asset. Drop below the maintenance threshold and you get liquidated (your collateral is sold to repay the loan, with a penalty).
Perpetuals — Drift, Jupiter Perps, Zeta
Perpetuals ("perps") are leveraged derivatives with no expiration. You can long or short an asset with up to 50x leverage. The funding rate (a small fee paid between longs and shorts) keeps the perp price tethered to the spot price.
- Jupiter Perps — pool-based; you trade against a liquidity pool of SOL/ETH/BTC/USDC.
- Drift — order book + AMM hybrid; deeper market for SOL and altcoins.
- Zeta — the closest thing on Solana to a centralized derivatives exchange UX.
Leverage is a tool, not a strategy. The most common way to lose money on Solana isn't a rug pull — it's a 20x long that gets liquidated on a 5% wick. Treat perps with respect.
Liquid staking — Marinade, Jito, BlazeStake
Liquid Staking Tokens (LSTs) let you stake SOL and receive a tradable token in return that represents your staked position plus accumulated yield. You earn the staking yield without losing the ability to use your capital in DeFi.
- JitoSOL — captures MEV rewards on top of base staking yield. Highest liquid yield on Solana.
- mSOL (Marinade) — original liquid staking token; deepest DeFi integration.
- bSOL (BlazeStake) — community-owned, governance via BLZE token.
- INF (Sanctum) — meta-LST; a basket of underlying LSTs.
Oracles & stablecoins
Every lending market and perp exchange needs a price feed. Solana's two big oracle networks are Pyth (built on Solana, pull-based) and Switchboard (push and pull). When you see a "price feed paused" notice, it's usually one of these.
Stablecoin landscape:
- USDC — the dominant stable, native on Solana, issued by Circle.
- USDT — bridged + native; used heavily for cross-chain flows.
- PYUSD — PayPal's stablecoin; Solana-native.
- USDS (Sky/MakerDAO) — decentralized; pulled into Solana via bridges.
- Lending markets let you earn yield or borrow against collateral; mind your liquidation threshold.
- Perps offer leverage but reward discipline — most leverage failures are 5% moves, not crashes.
- Liquid staking gives you SOL yield without locking your capital.
- Oracle outages and stablecoin de-pegs are systemic risks; understand the assumption stack.
Reading the chain — block explorers & analytics.
If you can't read the chain, you're trading blind. This module gives you the four tools that turn opaque addresses into actionable signals.
Block explorers — Solscan, SolanaFM, XRAY
Solscan is the default. Paste any address (wallet, token, transaction) and you'll get full history, holder distribution, transfer activity, and program interactions. SolanaFM presents the same data with a different UI and better account labeling. XRAY (Helius) is the easiest to read for beginners — it translates raw program calls into plain English.
Market data — Dexscreener & Birdeye
Dexscreener aggregates DEX prices, liquidity, and volume across every pool for every token. The default chart view for most traders. The "Trending" tab is where new meme coins appear before mainstream X notices.
Birdeye goes deeper — top traders, copy-trading, holder transfers, security checks. If Dexscreener tells you "this token exists and is moving," Birdeye tells you "here's who's moving it."
Holder analysis — Bubblemaps, Cabal
Bubblemaps visualizes holder relationships. If 30 wallets each hold 1% of supply but they all funded each other from a single source, Bubblemaps will show them clustered in a single bubble. That's a sniper team. Pretend you didn't see the chart and you'll buy their exit liquidity.
Cabal and similar tools provide holder distribution scoring — how concentrated the supply is, how recently top wallets got in, whether the dev wallet is still holding.
The 30-second pre-buy check: open Dexscreener for the chart, Birdeye for the top traders, and Bubblemaps for the holder graph. If anything looks like a coordinated sniper cluster — pass. There are 200 new tokens every hour.
- Solscan and SolanaFM are your block explorers; XRAY makes raw transactions human-readable.
- Dexscreener is the chart; Birdeye is the X-ray of who's trading what.
- Bubblemaps visualizes wallet relationships — your best defense against sniper exits.
The meme coin era — why Solana.
Meme coins didn't choose Solana by accident. The chain's economics — fast, cheap, parallel — make it the only L1 where launching a token to a global audience in 90 seconds is a real product, not a thought experiment.
Why meme coins live on Solana
Three reasons:
- Fees. Launching a token on Ethereum costs $50-$500 in gas. On Solana it's pennies. That difference enables a long tail of throwaway launches that simply can't exist on Ethereum.
- Speed. Sub-second confirmations make sniper bots, KOL plays, and rapid liquidity rotations possible.
- The launchpad layer. Pump.fun, Moonshot, Letsbonk and others built one-click token creation, complete with bonding curves and migration to Raydium. No other chain has this density of launchpad infrastructure.
Pump.fun and the bonding curve
Pump.fun is the dominant launchpad. Anyone can create a token in 30 seconds for a few cents. The token starts on a bonding curve — a deterministic formula that sets price based on supply purchased. As more people buy, the price rises along the curve.
When the bonding curve fills (typically around $69k–$100k market cap), the token "graduates" — its remaining supply and liquidity migrate to a Raydium pool, the LP gets burned, and the token enters the open market. About 1-2% of Pump.fun launches graduate.
The launchpad landscape
| Launchpad | Mechanism | Notes |
|---|---|---|
| Pump.fun | Bonding curve → Raydium | Dominant volume; the default. |
| Moonshot | Bonding curve, mobile-first | Built into the Moonshot app for fiat onboarding. |
| Letsbonk | Curve → Raydium | BONK ecosystem launchpad. |
| Believe | Tokenize-from-tweet | Niche; creator-tied tokens. |
| Daos.fun | Investment DAO model | Time-boxed fundraises; shared treasury. |
What "the meme coin economy" actually does
Meme coins on Solana aren't just shitposts — collectively they generate most of the chain's fee revenue, drive the bulk of new wallet creation, and pay for validator infrastructure through priority fees and Jito tips. When meme coin volume drops, Solana's REV drops, validator income drops, and SOL price tends to soften.
Understanding this loop helps you read the chain like an analyst, not a tourist: meme volume isn't separate from "real" Solana activity — it largely is Solana activity right now.
- Meme coins live on Solana because of low fees, sub-second speed, and a deep launchpad layer.
- Pump.fun's bonding curve plus auto-graduation made one-click launches a real product.
- About 1-2% of Pump.fun launches graduate; the rest are noise.
- Meme coin activity drives most of Solana's REV — they're not separate from the chain's fundamentals.
How meme coins actually trade.
Meme coin price action looks random. It isn't. There are predictable patterns at launch, at migration, during KOL plays, and around community catalysts. This module decodes them.
The first five minutes
The opening moments of a meme coin's life are dominated by sniper bots — automated buyers that grab the first 50-1000 transactions on any new token. They're not retail, they're not "lucky degens" — they're well-capitalized operations with co-located RPCs and signed pre-built transactions.
You will not beat them. What you can do: wait 30-90 seconds, then check Bubblemaps. If the early holders are clustered, snipers are positioning to dump on retail. If holders are diverse, the launch is "clean" — at least mechanically.
The migration window
When a Pump.fun token graduates to Raydium, its LP is burned and price discovery shifts. Two patterns dominate the next 5-30 minutes:
- Send — the token rips because the bonding curve's auto-sell pressure is gone, and migration removes the last "wall" of LP. Bullish if the chart was climbing into migration.
- Dump — early bonding curve buyers used migration as an exit ramp; price collapses. Bearish if the chart had already topped pre-migration.
The clue to which is which: volume into the migration. Steady accumulation usually means send. Distribution wicks pre-migration usually mean dump.
KOL plays and community catalysts
A "KOL" (Key Opinion Leader) is an X account with significant reach. KOL plays come in two flavors:
- Paid shills — KOL gets a wallet allocation in exchange for a tweet. Easy to spot: thinly substantive post, suspicious replies, dev wallet sends to KOL wallet right before the post.
- Organic calls — KOL actually likes the project, posts about it, the flock follows. These move price too, but the followthrough lasts longer because the audience is aligned.
Community catalysts include CEX listings, partnership announcements, technical milestones, and viral memes. The pattern: pump on the news, retrace, and either build new highs (real catalyst) or fade entirely (rumor).
The 24-hour and 7-day cycles
Most meme coins follow a recognizable cycle:
- Hour 0-1 — launch. Sniper accumulation, retail FOMO.
- Hour 1-24 — chart-following. KOL calls, viral spread, peak attention.
- Day 1-3 — distribution from early holders, cooling volume.
- Day 3-7 — survival check. Either a community forms or the chart bleeds.
- Day 7+ — surviving meme coins build a base, get CEX listings, attract LP commitments. Most don't make it this far.
The 7-day mark is the real survival test. A meme coin still alive after a week with the same community talking has a real shot. Most rugs and abandons happen on day 2-4.
- Sniper bots dominate the first 5 minutes — don't try to beat them.
- Volume into a migration tells you whether the chart will send or dump.
- KOL plays come in paid and organic flavors; check who funded the KOL wallet.
- The 7-day survival mark separates real community plays from rugs and abandons.
Spotting a rug before it happens.
Most rugs telegraph themselves before they fire. This module walks the five-point check that filters out 80% of obvious scams in under a minute.
The 5-point pre-buy check
- 1. Mint authority renounced. If the team can mint more, it's not a fixed supply. Unrenounced = pass.
- 2. Freeze authority renounced (or not present). If they can freeze your wallet, they can lock you out of selling.
- 3. LP locked or burned. If the team controls the liquidity pool, they can pull it. Look for a Streamflow lock, a Team.Finance lock, or an outright LP burn.
- 4. Top 10 holders < 25% of supply (excluding LP). Higher concentration = exit risk.
- 5. No bubble cluster on Bubblemaps. If 20 wallets all funded from the same source hold 30% of supply, it's a sniper team.
Pass any of these and you're already filtering 80% of the obvious scams. None of this protects you from a slow-bleed soft rug, but it eliminates the hard rugs that drain in 60 seconds.
Common rug patterns
- Hard rug — dev pulls liquidity. Token goes to zero in one transaction. Avoidable with the LP-lock check.
- Soft rug — dev sells their allocation slowly while pretending to "build." The chart bleeds for days. Avoidable by checking dev wallet activity on Solscan.
- Honeypot — token can be bought but not sold (freeze authority active). Avoidable with the freeze-authority check.
- Mint exploit — dev (or a hacker) mints trillions of new tokens and dumps. Avoidable with the mint-authority check.
- Sniper exit — coordinated team holds 50% of supply, dumps in unison. Avoidable with Bubblemaps.
Sandwich attacks and MEV
A sandwich attack is when an MEV searcher sees your buy in the mempool, front-runs it (buying just before you), lets your buy push the price up, then dumps just after. You pay an artificially worse price; the attacker keeps the difference.
Mitigations:
- Use Jupiter's MEV protection mode when available (routes through private RPC).
- Lower your slippage tolerance — sandwich profits scale with slippage.
- Use a Jito bundle-aware aggregator for large trades.
- Split big orders into smaller chunks to reduce per-trade impact.
The slow rug — when "real" projects fade
Not every loss is a scam. A meme coin can have everything check out — locked LP, burned mint, clean holders — and still go to zero because the community died. No new buyers, no new memes, no narrative refresh, slow distribution from early holders. The chart bleeds for weeks.
Spot the slow rug:
- Holder count flat or declining for >7 days.
- Volume trending down session over session.
- X engagement dropping (replies, RTs, raid activity).
- Dev posting less, or posting only when price moves.
The cure is sometimes a CEX listing, sometimes a viral catalyst, sometimes nothing. When the chart starts bleeding consistently and the community has gone quiet, get out — survivor bias is more expensive than humility.
- Mint renounced, freeze renounced, LP locked, top holders <25%, no bubble cluster — that's the filter.
- Hard rugs are mostly avoidable; soft rugs and slow rugs require ongoing monitoring.
- Sandwich attacks scale with slippage and trade size — manage both.
- Community death is a real failure mode for tokens that "checked out" technically.
Trading tools, bots & terminals.
Phantom is fine for casual swaps. For active trading, you need a terminal — purpose-built software with limit orders, copy-trading, multi-wallet support, and one-tap execution.
The trading terminal landscape
| Terminal | Form factor | Strength |
|---|---|---|
| Photon | Web | Speed; trader-favorite UI; multi-wallet. |
| BullX | Web + bot | Aggressive sniper features; cross-chain. |
| Axiom | Web | Clean charts; embedded order book. |
| Trojan | Telegram bot | Mobile-first; fast launch sniping. |
| Bonkbot | Telegram bot | Most popular TG bot; simple flow. |
| Maestro | Telegram bot | Cross-chain (incl. Solana); copy trade. |
Limit orders, DCA, and stop losses
Solana doesn't have a native order book like a CEX. Limit orders are implemented at the application layer:
- Jupiter Limit Orders — set a target price; Jupiter watches the chain and executes when the price is hit. Free, fully on-chain.
- Jupiter DCA — buy/sell a fixed amount over a chosen time window. Good for accumulating a position without market impact.
- Stop losses — most terminals (Photon, Axiom, BullX) implement off-chain stops by watching prices and submitting market sells when triggered. Not bulletproof — if the chain congests, your stop may not fire in time.
Copy trading & portfolio tracking
Copy trading lets you mirror another wallet's trades automatically. Birdeye, Photon, and several Telegram bots support this. Use case: identify a wallet that's consistently profitable on launches, mirror them with a small allocation, evaluate their edge over a few weeks.
Portfolio tracking — Step Finance, Sonar, and Phantom's portfolio tab give you a unified PnL view across all your tokens. Essential for tax season; useful for sanity checks ("is this 10x actually offsetting my five 50%-down bags?").
- Pick a terminal that matches your style — web for screen-based traders, Telegram bots for mobile snipers.
- Use Jupiter's limit orders and DCA for less reactive position-building.
- Copy-trade with small size to evaluate before committing real capital.
Risk management for degens.
The flock that wins isn't the one that catches the biggest pump. It's the one that's still here next cycle. Position sizing and exit discipline are the only edge most traders have.
Position sizing
Pick a portfolio percentage you can lose entirely on any single meme coin trade. For most people that's 1-3%. If you find yourself sizing up because "this one is different," you've already lost discipline.
Sizing rules of thumb:
- Tier 1 (blue chips like SOL, JUP, BONK) — up to 25% per position.
- Tier 2 (established meme coins, 6+ months old) — up to 5% per position.
- Tier 3 (new meme coins, <1 week) — 1-2% per position max. Many of these will go to zero.
Exit strategy — taking profit you'll actually take
The most common failure mode in meme coin trading isn't entry — it's exit. Have a plan before you buy:
- 2x — sell 25-50% of position. Recover initial. From here, you're playing with house money.
- 5x — sell another 25%. The remainder is your moonshot.
- 10x and beyond — trail with a stop or scale out further. Don't let a 10x become a 1x.
"If I don't sell, my unrealized gains can't be taken away" is a meme. The chart can erase a 10x in a single hour. Lock in steps.
Tax tracking
Every swap on Solana is a taxable event in most jurisdictions. The chain doesn't track this for you. Tools that do:
- Koinly — broad multi-chain support, generates IRS-ready forms.
- CoinTracker — clean UI, integrates with TurboTax.
- Cropper — Solana-native, very competitive on fees.
Wire up your wallets at the start of the year. Trying to reconstruct 800 trades in April is a special form of suffering.
The mental game
The best meme coin traders aren't the ones with the best models. They're the ones who can sit out a hot launch when it doesn't fit their criteria. Three rules:
- FOMO is information. If you're feeling it strongly, the move is probably already half over.
- One trade per day, max, when you're starting. Quality over quantity.
- Journal every trade — entry reason, exit reason, lesson. Without a journal, you'll repeat your mistakes forever.
- Position size by tier: bluechip 25%, established meme 5%, new meme 1-2%.
- Pre-define exits in tranches — recover initial early, ride the rest.
- Track taxes from day one. Koinly, CoinTracker, or Cropper.
- The mental game beats the technical game. Journal everything.
The $PIGEON lens — case study.
Theory is theory. Here's how to read a real Solana meme coin using everything from the previous modules — applied to $PIGEON.
The unauthorized launch
In February 2026, a random Pump.fun dev launched a token in @level941's name without permission. The dev controlled supply and dangled six figures in creator fees to coerce a hero-pump tweet from him. He refused.
Instead of cashing out the bribe or letting holders get drained, @level941 took the project over by principle — providing proper sell-side liquidity himself, absorbing the extraction, and stabilizing the token.
What "infrastructure-first" looks like
From the security checklist in Module 11, here's what was done — and shipped publicly:
- Mint authority renounced. No new tokens can ever be minted.
- Freeze authority renounced. No wallet can be locked.
- LP locked permanently. No rug vector.
- Atomic Sell-to-Burn Router — 3,777 lines of Rust, written by hand, that takes a portion of every sell and burns the proceeds. Increases scarcity over time, with on-chain verification.
- HashEx audit shipped publicly.
- Community-owned audit multisig funded — so future audits aren't paid for by the team alone.
What to take from it
Whether you hold $PIGEON or not, the playbook is the lesson:
- You can read every authority on-chain in 60 seconds. Do it before you buy anything.
- Locked LP and renounced authorities are the floor, not the ceiling. The next question is: does this project actually have community and infrastructure?
- The flock is the project. Tokenomics matter, audits matter — but the long-term winners are the tokens with people who keep showing up.
Treat every meme coin like a startup with a free, public cap table. The blockchain shows you everything. If you skip the homework, you're paying for an MBA in slow motion.
Glossary & tools.
Quick definitions for everything you'll encounter on Solana — and the tools the flock actually uses.
- AMM
- Automated Market Maker — a DEX that prices via formula instead of an order book. Raydium, Orca, Meteora.
- Anchor
- The dominant Rust framework for building Solana programs. Reduces boilerplate vastly.
- Bonding Curve
- A pricing formula that sets token price as a function of supply purchased. Used by Pump.fun.
- CLMM
- Concentrated Liquidity Market Maker — LPs can specify a price range. Capital-efficient but riskier for LPs.
- CPMM
- Constant-Product Market Maker — classic x*y=k. Raydium's standard pool type.
- DLMM
- Dynamic Liquidity Market Maker — Meteora's bin-based concentrated liquidity design.
- Epoch
- A ~2-day cycle on Solana. Stake activations and rewards are paid per epoch.
- Freeze Authority
- A privilege on an SPL token that can lock any holder's tokens. Should be renounced for trustless meme coins.
- Gulf Stream
- Solana's mempool-less transaction forwarding. Validators forward txs to upcoming leaders.
- Honeypot
- A token you can buy but can't sell. Usually because freeze authority is active or sell logic is blocked.
- Jito
- An MEV-aware Solana validator client and tip distribution layer. Bundles + tips.
- KOL
- Key Opinion Leader — an influencer with enough reach to move price.
- Leader
- The validator producing blocks for the current slot. Schedule is set per-epoch.
- LP
- Liquidity Provider — anyone who deposits tokens into a DEX pool to earn fees.
- LST
- Liquid Staking Token — a token representing your staked SOL. Stays liquid while earning yield.
- MEV
- Maximal Extractable Value — value captured by reordering, including, or excluding transactions.
- Mint Authority
- The address that can create more of an SPL token. Should be renounced for fixed-supply tokens.
- PDA
- Program Derived Address — an account whose private key doesn't exist; only the program can sign for it.
- PoH
- Proof of History — Solana's cryptographic clock built from a continuous SHA-256 hash chain.
- Priority Fee
- An extra fee paid to the leader for faster inclusion in a block. Critical during high congestion.
- REV
- Real Economic Value — total fees + tips paid on a chain. A leading indicator of network health.
- RPC
- Remote Procedure Call — your wallet's connection point to the chain. Public RPCs are slow; paid RPCs (Helius, Triton) are fast.
- Sealevel
- Solana's parallel transaction execution runtime. The headline scaling trick.
- Slippage
- The difference between the expected price and the executed price. Set higher during volatility.
- Slot
- A 400ms window in which a single leader produces a block.
- SPL
- Solana Program Library — the standard set of programs, including the SPL Token program every fungible token uses.
- SVM
- Solana Virtual Machine — the runtime that executes Solana programs. Now being adopted by other chains too.
- Token-2022
- Newer SPL token program with extensions like transfer fees, hooks, and confidential transfers.
- Tower BFT
- Solana's consensus algorithm. Layered on top of Proof of History.
- Turbine
- Solana's tree-based block propagation protocol. Reduces bandwidth load on the leader.
Tools the flock uses.
Bookmark these. Most of what we covered in this course assumes you have them open.
Jupiter →
The default front door for swapping anything on Solana.
ChartsDexscreener →
Multi-DEX charts, volume, and the trending tab.
AnalyticsBirdeye →
Top traders, holder transfers, deeper market data.
Holder analysisBubblemaps →
Visualize wallet relationships. Sniper detection.
Block ExplorerSolscan →
Read any wallet, token, or transaction on the chain.
Block ExplorerXRAY by Helius →
Human-readable transaction explainer.
WalletPhantom →
The default daily-driver wallet for Solana.
WalletBackpack →
Trader-focused wallet with built-in exchange.
Trading TerminalPhoton →
Fast web terminal favored by active traders.
MacroDefiLlama →
TVL, fees, REV — the chain's macro health check.
LendingKamino →
Largest Solana lending protocol; vault strategies.
PerpsDrift →
Order book + AMM hybrid for SOL and altcoin perps.
That's the chain. Now fly.
You've got the foundations. The next move is yours — pick up the next track, follow the tower for new lesson drops, or come back to this page whenever you need a refresher.