Pigeon Academy · Crypto Track · Now in Session

Crypto, from first principles — every chain, every primitive, every trap.

This is the whole game. Not just the charts. Not just the memes. The protocols, the money, the math, the tools, the scams, the laws, the future. Eighteen modules. Built to take a curious beginner and turn them into a dangerous-in-a-good-way operator who can read a chain, price a token, dodge a drainer, and hold a position through a cycle.

18 Modules 78 Lessons ~5h Read $0 Tuition · paid by the tower
Module 01

What is crypto? — a short, honest history.

Before the charts and the ticker scroll, before the tokens and the ETFs, crypto was a 40-year conversation between cryptographers, economists, and libertarian weirdos trying to solve one question: can strangers on the internet agree on who owns what, without asking a bank?

Lesson 1.1

The cypherpunk roots

In the 1980s and 1990s, a loose group of engineers — the "cypherpunks" — believed privacy and financial freedom required cryptographic tools, not political permission. David Chaum published DigiCash in 1983 (anonymous electronic cash). Adam Back invented Hashcash (1997) as proof-of-work to fight email spam. Wei Dai sketched b-money (1998). Nick Szabo designed bit gold (1998). None of them shipped a working decentralized currency — but every single piece of the puzzle was on the table.

What they couldn't solve was the double-spend problem: if digital money is just data, what stops someone from spending the same coin twice? Banks solve it with a central ledger. Cypherpunks needed something else.

Lesson 1.2

Satoshi's paper and the Bitcoin genesis block

On October 31, 2008, a pseudonymous author named Satoshi Nakamoto posted a 9-page PDF titled "Bitcoin: A Peer-to-Peer Electronic Cash System" to a cryptography mailing list. It combined existing ideas (proof-of-work, Merkle trees, digital signatures, timestamped chains) into one coherent system that solved double-spending without a trusted third party.

On January 3, 2009, Satoshi mined the genesis block. Embedded in its data: "The Times 03/Jan/2009 Chancellor on brink of second bailout for banks." A timestamp, and a mission statement, in the same byte string.

Note Satoshi disappeared in late 2010. Their wallet holds an estimated ~1 million BTC and has never moved. Nobody knows who they are. Several people have claimed to be Satoshi; none have proven it by signing with the original keys.
Lesson 1.3

The three things crypto actually is

Strip away the noise, and crypto collapses into three overlapping ideas:

  1. A new kind of money — permissionless, hard-capped or programmable, globally portable, self-custodied.
  2. A new kind of database — one where rules are enforced by math and incentives instead of a company's promises.
  3. A new kind of computer — a public, always-on execution environment where code runs as written (smart contracts) and can't be quietly patched by any single party.

Everything else — tokens, NFTs, DeFi, DAOs, meme coins — is a product built on one or more of those three primitives.

Lesson 1.4

Why it matters (even if you don't care about politics)

You don't need to be an anarcho-capitalist to see the use case. The world has ~2 billion adults without reliable bank access. International wire transfers cost ~6% on average and take days. Argentina's peso lost 211% of its value in 2023. Venezuela hit a million percent inflation. Lebanon's banks simply stopped letting people withdraw their own money in 2019.

For people living inside those systems, a USDC balance on a phone isn't a speculation — it's a savings account that the government can't freeze. That's the boring, important reason crypto persists through every bear market. The casino on top is real, but the rails underneath solve a real problem.

Key takeaways

  • Crypto didn't start with Bitcoin — it started with 30 years of cypherpunk attempts that never quite worked.
  • Satoshi's contribution was combining existing ideas to solve the double-spend problem without trust.
  • The tech is money + database + computer, in one stack. Every product is some mix of those three.
  • The real-world demand is inflation hedging and dollar access — the speculation is layered on top.
Module 02

Blockchain fundamentals — what the thing actually is.

A blockchain is a shared spreadsheet that thousands of computers keep a copy of, updated in rounds, where every update is mathematically linked to the last one so nobody can quietly edit history. That's it. The magic is in how strangers agree on what goes in the next row.

Lesson 2.1

Hashes — the building block

A hash function takes any input (one byte, a book, a movie) and produces a fixed-length fingerprint. Change a single character in the input and the output changes completely and unpredictably. Bitcoin uses SHA-256.

Two properties matter:

  • Deterministic — same input, same hash, every time.
  • One-way — you cannot reverse a hash to recover the input. You can only guess-and-check.

This is what lets you commit to data without revealing it, and what lets a chain detect tampering: if any byte of a past block changed, its hash would change, breaking the link to the next block.

Lesson 2.2

Blocks and the chain

A block is a batch of transactions plus some metadata. The metadata includes the hash of the previous block. That single reference is what makes the data structure a chain: to alter transaction #1, you'd need to re-compute every block after it, because each one fingerprints the one before.

Inside a block, transactions are organized using a Merkle tree — a tree of hashes that lets a light client verify a single transaction is included without downloading the whole block. This is what makes mobile wallets possible.

Lesson 2.3

Decentralization — what it actually means

"Decentralized" isn't a single property. Vitalik Buterin splits it three ways:

AxisQuestionWhy it matters
ArchitecturalHow many physical computers run the network?More nodes = harder to take down.
PoliticalHow many independent people/orgs control those nodes?Prevents collusion & capture.
LogicalDoes the system behave like one machine or many?Determines how you censor/split it.

A chain can be architecturally decentralized (many nodes) but politically centralized (all run by one cloud provider). When people debate "is Solana decentralized?" or "is Ethereum decentralized?", they're usually arguing across different axes without realizing it.

Lesson 2.4

Public vs private keys — your actual identity

On a blockchain, you don't have a username. You have a keypair: a private key (a giant random number, kept secret) and a public key (derived from the private key, shared freely). Your address is a shortened hash of the public key.

Signing a transaction proves you know the private key without revealing it. If someone else learns your private key, they are you — there is no customer service, no password reset, no "I can prove I'm the real owner." The key is the account.

Warning This is the single most important sentence in crypto: your seed phrase is your money. A seed phrase is the human-readable form of the private key (usually 12 or 24 words). Anyone who sees it controls the wallet. Not screenshotted. Not emailed. Not in iCloud. Written down, offline, period.
Lesson 2.5

Gas, fees, and why transactions cost money

Every blockchain has finite blockspace — there are only so many transactions that fit in a block. Users bid for inclusion by paying a fee. On Ethereum this is called gas; on other chains it's just "fee." The validator who produces the next block collects those fees (plus, on most chains, a protocol-paid reward).

Fees spike during demand surges — NFT mints, airdrop farming, major liquidations. This is also what makes chains sustainable: if block rewards dry up (as Bitcoin's halvings eventually drive them to zero), fee revenue is what keeps validators honest.

Key takeaways

  • A blockchain is a chain of hashed blocks — tampering with any past block breaks the chain from that point forward.
  • Decentralization is three separate things: architectural, political, and logical. Don't argue past each other.
  • Your keypair is your identity. Your seed phrase is your money. There is no recovery.
  • Fees exist because blockspace is scarce, and fees are what keep validators showing up to work.
Module 03

Consensus mechanisms — how strangers agree.

Consensus is the rule that decides which transactions are valid and which block is next. It's the single most important design choice a blockchain makes, because every tradeoff — speed, security, decentralization, cost — starts here.

Lesson 3.1

Proof of Work (PoW)

Miners compete to solve a hard math puzzle (find a nonce that makes the block hash start with enough zeros). First one to solve broadcasts the block and wins the reward. To attack the chain you'd need to out-compute the rest of the network — a 51% attack — which, on Bitcoin, costs billions of dollars in hardware and power every day. That's the security budget.

Used by: Bitcoin, Litecoin, Dogecoin, Monero, pre-merge Ethereum.

Strengths: battle-tested, provably expensive to attack, no "who gets to validate" politics — math decides. Weaknesses: energy-intensive, slow finality (Bitcoin waits ~60 minutes / 6 blocks for settlement), hardware specialization (ASICs) concentrates mining.

Lesson 3.2

Proof of Stake (PoS)

Instead of burning electricity, validators lock up capital (stake the chain's native token). The protocol randomly selects a validator to propose the next block, weighted by stake. Misbehave — sign conflicting blocks, go offline — and your stake gets "slashed" (taken).

Used by: Ethereum (post-merge), Cardano, Cosmos chains, Avalanche, Polkadot, Sui, Aptos.

Strengths: orders of magnitude more energy-efficient, faster finality (Ethereum finalizes in ~13 minutes, Sui in sub-second), scales with capital not hardware. Weaknesses: "rich get richer" criticism, complex slashing edge cases, harder for a casual user to run a validator (32 ETH minimum on Ethereum).

Lesson 3.3

Delegated Proof of Stake (DPoS) and its cousins

DPoS narrows validation to a small fixed set (21 on BNB Chain, 27 on EOS, etc.) elected by token holders. Faster and cheaper, but with a much smaller attack surface on decentralization — if you can influence the top validators, you can influence the chain.

Used by: BNB Chain, TRON, EOS.

Lesson 3.4

Proof of History (PoH) + BFT — Solana's twist

Solana's Proof of History isn't a consensus on its own — it's a cryptographic clock. Every validator agrees on the order of events before they vote on the state, which removes a massive amount of back-and-forth messaging. The actual consensus is Tower BFT, a variant of Practical Byzantine Fault Tolerance, running on top of PoH.

Result: ~400ms blocks, ~65,000 theoretical TPS, sub-cent fees. Tradeoff: hardware requirements that push validator count lower than Ethereum's and a history of outages (though none since early 2024).

Lesson 3.5

Everything else worth knowing

BFT families (Tendermint, HotStuff, Narwhal & Bullshark) — classical Byzantine Fault Tolerance algorithms where validators pre-commit then commit. Fast, deterministic finality. Cosmos, Aptos, Sui all use BFT variants.

Proof of Space / Proof of Space-Time (Chia) — validators prove they've allocated hard disk space.

Proof of Authority (some enterprise chains) — a fixed set of known validators sign blocks. Fast, but trust-required.

Avalanche consensus — random subsampling + repeated queries. Novel, sub-second finality, different class of algorithm entirely.

Key takeaways

  • PoW burns energy to make attacks expensive. PoS burns capital to make attacks expensive. Same goal, different substrate.
  • Consensus choice dictates block time, finality, hardware cost, validator count, and attack surface — it's the root node of every chain comparison.
  • "Fast finality" matters more than "high TPS" — a chain that confirms in 400ms but forks often is worse than 2s with no reorgs.
Module 04

Bitcoin — digital gold, fully loaded.

Bitcoin is the oldest, largest, and most conservative chain. It does one thing — move BTC — and it does it well enough that it holds more value than any other crypto asset by a wide margin. Understanding Bitcoin is the foundation for understanding everything that came after.

Lesson 4.1

UTXOs vs account models

Bitcoin doesn't have "accounts." It has UTXOs — Unspent Transaction Outputs. When Alice pays Bob 0.5 BTC, she's consuming one or more existing UTXOs (addressed to her) and creating new ones (addressed to Bob, and possibly one back to herself as change). Your "balance" is just the sum of UTXOs your wallet can spend.

This is fundamentally different from Ethereum's account model, which tracks balances like a bank. UTXOs are better for parallelism and privacy; account models are better for smart contracts and user experience.

Lesson 4.2

The halving — Bitcoin's monetary schedule

Every 210,000 blocks (~four years), the block reward cuts in half. Started at 50 BTC in 2009. Then 25 (2012). Then 12.5 (2016). Then 6.25 (2020). Then 3.125 (April 2024). This continues until ~2140, when the last satoshi is mined and total supply caps at 21 million.

Historically, every halving has preceded a major bull market within 12–18 months. The logic: issuance drops, demand stays flat or grows, price pressure goes up. Whether the pattern continues as supply shock diminishes (each halving is half as impactful as the last) is one of the most-debated questions in the space.

Lesson 4.3

Mining economics

Miners pay for ASICs (specialized hardware that does nothing but SHA-256) and electricity. They earn block rewards + transaction fees. Profit = revenue − costs.

When price drops, weakest miners (worst hardware, highest electricity cost) go offline. The protocol's difficulty adjustment then makes puzzles easier every 2,016 blocks (~2 weeks) to keep block time at ~10 minutes. This self-balancing is why Bitcoin has never stopped producing blocks since 2009.

Lesson 4.4

Lightning Network

Bitcoin's base layer does ~7 TPS. Lightning is a Layer 2 that lets users open payment channels off-chain, transact instantly and nearly free within the network, and settle to the base layer when they close. Used heavily in El Salvador, by Cash App, and by Strike for remittances.

Lightning's critics point to liquidity requirements (channels need to be pre-funded), routing failures, and the UX friction of channel management. Its supporters point to the fact that it works, today, for real payments.

Lesson 4.5

Ordinals, Runes, and the weird renaissance

In early 2023, developer Casey Rodarmor launched Ordinals — a way to inscribe arbitrary data (images, text, even video) onto individual satoshis. Bitcoin NFTs, basically. It was controversial: purists called it spam; others celebrated a new use case for Bitcoin blockspace.

Runes (launched April 2024, the same day as the halving) is a fungible token standard for Bitcoin. BRC-20s came first (2023) but had technical flaws; Runes is the more elegant design. Bitcoin now has a semi-functional token ecosystem, something Satoshi almost certainly did not imagine.

Note Bitcoin's culture is conservative by design. Big protocol changes are rare and take years. The last meaningful upgrade (Taproot) shipped in 2021 and is what made Ordinals and Runes possible. Expect the next one to take a decade of debate.

Key takeaways

  • Bitcoin uses UTXOs, not accounts — better for privacy and parallelism, harder for smart contracts.
  • Halvings every four years cut issuance in half, on a schedule that locks total supply at 21 million by ~2140.
  • Mining is a competitive business; difficulty adjustment is what keeps the chain producing blocks through price swings.
  • Lightning is Bitcoin's payment layer. Ordinals and Runes are its unexpected NFT / token layer.
Module 05

Ethereum — the world computer.

Bitcoin is money. Ethereum is a platform. It's the chain that turned the industry from "digital gold" into an open application layer, and it's the template every "smart contract chain" since has been measured against.

Lesson 5.1

What makes Ethereum different

Vitalik Buterin published the Ethereum whitepaper in late 2013, frustrated that Bitcoin's scripting language was too limited to build the applications he imagined. Ethereum launched in July 2015 with a key addition: a Turing-complete virtual machine called the EVM. Any arbitrary program can run on Ethereum, as long as someone pays the gas to execute it.

This one decision unlocked everything we now call Web3 — DeFi, NFTs, DAOs, stablecoins, prediction markets, on-chain games, identity systems. All of it started on Ethereum, and most of it still lives there.

Lesson 5.2

The EVM and smart contracts

A smart contract is a program deployed to the blockchain at a specific address. Once deployed, anyone can call its functions by sending a transaction. The contract's code decides what happens next — transfer tokens, update state, emit events, call other contracts.

Smart contracts are written primarily in Solidity (C-family syntax) or Vyper (Python-family). They compile to EVM bytecode. The EVM is now a de facto standard — over 30 chains run EVM-compatible environments so that developers can port contracts without rewriting them.

Warning Smart contracts are immutable by default. If there's a bug, you can't just patch it — the broken code runs exactly as written. This is why audited contracts are essential and why "upgrade patterns" (proxies, governance timelocks) are a whole subfield of Ethereum engineering.
Lesson 5.3

Gas — Ethereum's fee market

Every EVM operation has a fixed gas cost (adding two numbers is cheap, storing a new value is expensive). Your transaction specifies a gas limit (max you'll spend) and a fee per gas (what you'll pay validators for each unit). Total fee = gas used × fee per gas.

Post-EIP-1559 (August 2021), Ethereum's fee market splits into a base fee (burned, not paid to validators) and a priority fee (tipped to validators). The burn is what makes ETH deflationary during heavy network use — more activity, more ETH destroyed.

Lesson 5.4

The Merge and proof of stake

On September 15, 2022, Ethereum swapped out its PoW consensus for PoS in a single event called The Merge. Energy use dropped ~99.95% overnight. No users had to do anything — the swap was seamless.

Validators now need 32 ETH to run a node solo, or they can stake smaller amounts through pools (Lido, Rocket Pool) and liquid staking tokens. Staking yield is currently ~3–5% APY, funded by new ETH issuance + fees.

Lesson 5.5

MEV and the dark forest

MEV (Maximal Extractable Value) is the profit validators can extract by reordering, inserting, or censoring transactions in the blocks they produce. On Ethereum, MEV manifests as front-running, sandwich attacks, and arbitrage. Real money: several billion dollars per year flows through MEV bots.

The response has been a whole infrastructure layer (Flashbots, MEV-Boost, private relays) designed to make MEV more transparent, competitive, and — ideally — redistribute some of the value back to users.

Lesson 5.6

The roadmap — rollup-centric future

Ethereum's core scaling thesis since 2020 has been rollup-centric: don't try to make Layer 1 fast. Instead, make Layer 1 a hyper-secure settlement layer and push most activity to Layer 2 rollups. That's why you hear about Arbitrum, Optimism, Base, zkSync, etc. — they're Ethereum's answer to scaling.

Recent upgrades (The Merge, Shapella, Dencun with proto-danksharding / blobs) have all been on this roadmap. The long-term vision is full danksharding + account abstraction + single-slot finality.

Key takeaways

  • Ethereum's killer feature is the EVM — a programmable virtual machine other chains have copied wholesale.
  • Smart contracts are immutable by default; bugs stay bugs unless designed to be upgradeable.
  • EIP-1559 burns base fees, making ETH structurally deflationary during busy periods.
  • MEV is a multi-billion-dollar hidden fee economy you should understand before trading size on-chain.
  • Ethereum's scaling plan is rollups — L1 stays secure, L2s handle volume.
Module 06

The L1 landscape — every chain worth knowing.

Beyond Bitcoin and Ethereum, there are dozens of Layer 1 blockchains competing for attention, liquidity, and developers. Each one made a different tradeoff. Here's the map.

Lesson 6.1

The major L1s at a glance

ChainConsensusBlock timeDifferentiator
BitcoinPoW~10 minHard money, max security
EthereumPoS~12 secSmart contracts, L2 settlement layer
SolanaPoH + TBFT~400 msMonolithic high-throughput
BNB ChainDPoS (PoSA)~3 secCEX-adjacent, cheap, high volume
AvalancheSnowman/Avalanchesub-secondSubnets — app-specific chains
CardanoOuroboros PoS~20 secAcademic / peer-reviewed design
PolkadotNPoS + BABE~6 secShared security for parachains
Cosmos HubTendermint BFT~6 secIBC — sovereign chain interop
NearNightshade PoS~1 secSharded EVM + chain abstraction
SuiNarwhal + Bullsharksub-secondObject-centric, parallel, Move lang
AptosAptosBFTsub-secondMove lang, ex-Diem team
TONCatchain BFT~5 secTelegram-native, 900M user reach
TRONDPoS~3 secUSDT volume (largest single-chain)
HyperliquidHyperBFTsub-secondOnchain perp DEX as L1
Lesson 6.2

Monolithic vs modular

Monolithic chains do everything on one layer: execution, consensus, data availability, settlement. Solana and early Ethereum are classic examples. Pros: simple, fast, no bridging. Cons: hardware demands grow with usage.

Modular chains split those roles across layers. Celestia handles data availability. Ethereum + rollups settles execution. EigenLayer provides restaked security. Pros: each layer optimizes for one thing. Cons: more moving parts, more UX friction.

The debate is not "which is right" — it's "which tradeoff matches which workload." Fast games might want monolithic Solana. High-value settlement might want modular Ethereum + rollups.

Lesson 6.3

EVM vs non-EVM ecosystems

Most new chains chose EVM compatibility because it means instant access to Ethereum's developer tools, audits, front-end libraries, and deployed contracts (Uniswap, Aave, etc. can fork trivially). Avalanche C-Chain, BNB Chain, Polygon PoS, Arbitrum, Optimism, Base, Mantle, Linea — all EVM.

The non-EVM chains picked different tradeoffs:

  • Solana — custom SVM runtime, Rust/C smart contracts, parallel execution
  • Sui/Aptos — Move language, object-centric storage
  • Cosmos chains — CosmWasm or app-specific logic, sovereign chains
  • TON — FunC / Tact, asynchronous by design
  • Cardano — Plutus (Haskell-based), UTXO-extended model
Lesson 6.4

How to evaluate a chain

Skip the marketing. Ask these five questions:

  1. Who uses it? Daily active addresses, real transaction count (not wash).
  2. What's the TVL and is it growing? Total value locked in DeFi reveals capital trust.
  3. How many validators, and who are they? Nakamoto coefficient — minimum validators needed to halt the chain.
  4. Has it gone down, and how did it recover? Every serious chain has had outages. The response matters.
  5. What's the fee revenue? A chain that only issues tokens but earns nothing isn't sustainable long-term.

DefiLlama, Artemis, and Token Terminal aggregate this data. Don't trust any claim a project makes about itself without cross-checking.

Key takeaways

  • L1 competition is healthy — different chains optimize for different workloads.
  • Monolithic vs modular is the biggest architectural debate of this cycle.
  • EVM compatibility = instant dev tooling. Non-EVM = freedom to innovate on the runtime.
  • Evaluate chains by users, TVL, validator count, uptime, and fee revenue — not Twitter hype.
Module 07

Layer 2s & scaling — how Ethereum grew up.

Ethereum's base layer is expensive and slow by design — it prioritizes security over throughput. Layer 2s (L2s) are separate chains that batch thousands of transactions and settle proofs back to Ethereum, inheriting its security while costing a fraction of the fees. This is where most Ethereum activity now lives.

Lesson 7.1

What "rollup" actually means

A rollup executes transactions off of Ethereum L1, compresses (rolls up) the results, and posts them to L1 as a proof or a data blob. The L1 acts as judge and record-keeper; the L2 does the heavy lifting.

Two main flavors:

  • Optimistic rollups — assume transactions are valid by default. Anyone can submit a fraud proof within a challenge window (typically 7 days). If the proof is valid, the bad state is reverted. Simple and cheap. Downside: 7-day withdrawal delay unless you use a liquidity bridge.
  • ZK rollups — every batch is accompanied by a zero-knowledge proof that mathematically guarantees the state transition is correct. No challenge window. Downside: proving is computationally expensive (though improving fast).
Lesson 7.2

The major L2s

NameTypeBacked byKnown for
ArbitrumOptimisticOffchain LabsLargest L2 by TVL, DeFi hub
OptimismOptimisticOP LabsSuperchain model, OP Stack
BaseOptimistic (OP Stack)CoinbaseOnboarding + consumer apps
zkSync EraZKMatter LabsZK mainstream push
StarknetZK (STARK)StarkWareCairo VM, non-EVM ZK
Polygon zkEVMZKPolygon LabsZK + AggLayer
LineaZKConsensysMetaMask-adjacent ZK
ScrollZKScroll FoundationEVM-equivalent zkEVM
BlastOptimisticBlur founderNative yield L2
MantleOptimisticBitDAOModular with EigenDA
Lesson 7.3

The Dencun upgrade and blobs

March 2024 — Ethereum shipped proto-danksharding (EIP-4844). The short version: L2s used to pay for data by posting it as call-data on L1 (expensive). Dencun introduced blobs — temporary data storage that's 10–100x cheaper. L2 fees dropped to sub-penny levels overnight.

This was the single biggest UX improvement in Ethereum's history. You can now swap on Base or Arbitrum for less than $0.01.

Lesson 7.4

L2 risks nobody advertises

L2s are not Ethereum. They inherit Ethereum's security eventually — but in practice, most rollups have a centralized sequencer (one entity that orders transactions) and a trusted upgrade key (a multisig that can change the contracts). Full decentralization of sequencers and proof systems is the industry's current roadmap, not the present state.

Warning Check L2BEAT before trusting a rollup with significant capital. It grades rollups by stage (0, 1, 2) based on actual decentralization of sequencing, proofs, and governance. Most "L2s" on CoinGecko are Stage 0 — trust-assumption-heavy.
Lesson 7.5

Alt-L1 scaling: sidechains and validiums

Polygon PoS is technically a sidechain — it runs its own consensus and posts checkpoints to Ethereum but doesn't inherit Ethereum's security. Cheaper than a true rollup but weaker security guarantees.

Validiums use ZK proofs but store data off-chain (e.g., on a data availability committee). Cheaper than ZK rollups, stronger than sidechains, but you trust the DA committee to keep data available.

Key takeaways

  • Optimistic rollups assume honesty; ZK rollups prove it. Both settle to Ethereum L1.
  • After Dencun (March 2024), L2 fees dropped to sub-cent. This is why L2 usage exploded.
  • Most "L2s" still have centralized sequencers and upgrade keys. L2BEAT grades the real decentralization.
  • Sidechains and validiums aren't true rollups — weaker security in exchange for lower cost.
Module 08

Bridges & cross-chain — moving between worlds.

No chain is an island. If you want to move ETH to Solana, USDC from Arbitrum to Base, or BTC into DeFi, you need a bridge. Bridges are also the single most-hacked piece of infrastructure in crypto — understand them before you use them.

Lesson 8.1

Why bridges are necessary — and hard

Blockchains don't natively talk to each other. A token on Chain A can't just appear on Chain B. So bridges work around this by either locking and minting (token locked on Chain A, a "wrapped" IOU minted on Chain B) or burning and minting (cross-chain messaging protocols that destroy on one side and create on the other).

The security of a bridge depends entirely on who verifies the cross-chain message. This is where most bridge exploits happen.

Lesson 8.2

Bridge architectures

  • Custodial / multisig bridges — a committee of validators signs off on transfers. Fast and simple. Only as trustworthy as the committee. Example: old Wormhole (pre-upgrade), Multichain (rugged).
  • Light-client / native bridges — one chain verifies the state of the other cryptographically. High security, high cost. Example: IBC between Cosmos chains, Near Rainbow Bridge.
  • Optimistic bridges — transfers are assumed valid, fraud window for challenges. Example: Nomad (also hacked), Across.
  • ZK bridges — cryptographic proof of state on the source chain. Emerging, promising. Example: Polyhedra, zkBridge concepts.
  • Liquidity networks — don't move your exact tokens. Instead, they swap into a liquidity pool on the destination. Fast, but capital-intensive. Example: Stargate, Synapse, Hop.
Lesson 8.3

Cross-chain messaging protocols

These are the plumbing most modern bridges run on top of:

ProtocolModelChains supported
LayerZeroOracle + Relayer dual verification60+ chains
Wormhole19-guardian committee30+ chains
AxelarPoS network of validators60+ chains
Chainlink CCIPMultiple DON committees + risk mgmt20+ chains
IBCLight-client cryptographicCosmos chains, plus EVM via bridges
HyperlanePermissionless interchain messaging40+ chains
Lesson 8.4

The bridge hack hall of fame

Bridges have lost over $2.8 billion to hacks. The big ones:

  • Ronin (March 2022) — $625M. North Korea's Lazarus Group compromised 5 of 9 validator keys.
  • Poly Network (August 2021) — $611M. Smart contract exploit. Funds were mostly returned.
  • Wormhole (February 2022) — $326M. Signature verification bug. Jump Crypto refilled the hole.
  • Nomad (August 2022) — $190M. Initialization bug let anyone claim arbitrary funds. Chaos.
  • Harmony Horizon (June 2022) — $100M. Multisig compromise.
  • Multichain (July 2023) — $130M. CEO arrested in China; funds taken.
  • Orbit Chain (January 2024) — $82M. Bridge exploit.
Warning Only bridge what you're willing to lose during the bridge transaction. Use well-audited, time-tested bridges. Prefer native assets (real USDC via CCTP) over wrapped assets (USDC.e, USDT.bsc) when possible. Never leave large sums in bridge contracts longer than the transaction needs.
Lesson 8.5

Native bridging — the current gold standard

The best bridges for major assets are native — the issuer mints and burns across chains, so you never hold a wrapped IOU. Circle's CCTP (Cross-Chain Transfer Protocol) burns USDC on one chain and mints new USDC on another. No wrapped tokens, no bridge committee risk.

This is slowly replacing wrapped stablecoins. Use it when available.

Key takeaways

  • Bridges work by locking + minting, burning + minting, or liquidity-swapping. Each has distinct risks.
  • Bridges are the #1 target in crypto — over $2.8B lost historically.
  • Native issuance protocols (Circle CCTP) are safer than committee-verified wrapped bridges.
  • Never leave value in a bridge contract longer than needed to finish the hop.
Module 09

Wallets & custody — the only thing you have to get right.

If you remember nothing else from this course, remember this module. Everything else is optimization. This is survival. Wallets are not just "apps to store coins" — they are the interface to ownership, signing, and identity. Getting this wrong is how people lose fortunes.

Lesson 9.1

Not your keys, not your coins

The phrase is clichéd because it keeps being true. Every major exchange collapse — Mt. Gox, Celsius, BlockFi, Voyager, FTX — ended with customers discovering they didn't actually own their assets. They owned an IOU from a company, and the company had lent the collateral out to chase yield.

A real crypto wallet is a piece of software (or a physical device) that holds your private key. Only you can sign transactions. No company can freeze, lend, or seize your funds. This is the entire point of crypto.

Lesson 9.2

Hot vs cold wallets

  • Hot wallet — connected to the internet. Fast, convenient, easy to phish. Use for small amounts you're actively trading or spending. Examples: MetaMask, Phantom, Rabby, Backpack, Rainbow.
  • Cold wallet — keys stored offline on dedicated hardware. Slower, more friction, dramatically harder to compromise. Use for savings and long-term holdings. Examples: Ledger, Trezor, Keystone, GridPlus.

Rule of thumb: if losing it would hurt, it belongs on cold storage.

Lesson 9.3

Hardware wallets — how they actually work

A hardware wallet is a purpose-built computer that does one job: store a private key and sign transactions without the key ever leaving the device. You plug it into your phone/PC, the software (MetaMask, Ledger Live, etc.) sends a transaction to the device, the device shows you what you're signing on its screen, you approve with a physical button press, and it returns a signature. The private key never touches the internet-connected machine.

This is why a compromised PC doesn't immediately drain a hardware wallet. Even if malware is watching, it can't forge signatures without the device.

Note Always verify the destination address on the hardware wallet's screen, not on your PC. Clipboard-swapping malware is real — it silently replaces the address you copied with an attacker's. The hardware screen is the last line of defense.
Lesson 9.4

Seed phrases — the master key

Your hardware wallet generates a seed phrase (12 or 24 English words) on first setup. This phrase is the human-readable form of your private key. From the seed, you can regenerate every address you've ever used.

Rules:

  • Write it on paper or steel. Never type it into a device.
  • Store copies in multiple physically separate locations (home safe + safety deposit box + trusted family).
  • Never take a photo of it. Never put it in iCloud, Google Drive, or a password manager.
  • Never tell anyone — not "support," not Ledger, not the IRS, not anyone on Twitter DM.
  • Consider a BIP39 passphrase (the "25th word") for added entropy on large holdings.
Lesson 9.5

Multisig and MPC

Multisig wallets require M-of-N signatures to move funds. Example: 2-of-3, where three keys are held on different devices / by different people, and any two together can sign. Safe (the Ethereum multisig standard) runs the majority of institutional crypto holdings. Squads is the Solana equivalent.

MPC (Multi-Party Computation) splits a single private key into shares that never recombine. Fireblocks and ZenGo use MPC. Similar security properties to multisig, different UX.

For a flock member holding real money: a 2-of-3 multisig (your laptop + hardware wallet + trusted friend's hardware wallet) is dramatically safer than any single wallet.

Lesson 9.6

Token approvals — the invisible permission slip

When you interact with a DeFi protocol, the first transaction is usually an approval — you're granting the contract permission to move tokens out of your wallet. By default, dapps request unlimited approvals. If that contract is ever compromised (or was malicious), your tokens are gone instantly.

Best practice: use revoke.cash or your wallet's built-in approval manager to set limits or revoke old approvals. Check it every couple months. Never leave unlimited approvals to random, unaudited contracts.

Key takeaways

  • Exchanges are IOUs. Self-custody is ownership. Decide per asset how much each is worth.
  • Hardware wallets keep the key offline; the screen is the last line of defense against clipboard malware.
  • Write seed phrases on paper or steel. No digital copies, ever.
  • Multisig is dramatically safer than single-key for significant holdings.
  • Revoke old token approvals regularly — they're a silent attack surface.
Module 10

Exchanges — where crypto meets fiat (and where it breaks).

For most users, exchanges are the entry and exit door to crypto. They're also the single largest point of counterparty risk. Understand the two types, know the jurisdictional landscape, and never forget the FTX lesson.

Lesson 10.1

CEX vs DEX

Centralized exchanges (CEXes) — Coinbase, Kraken, Binance, OKX, Bybit, Gemini. You sign up with an email, complete KYC, deposit fiat, and trade on an internal order book. They custody your funds. Pros: fast, cheap, deep liquidity, fiat on/off ramps. Cons: they can freeze, seize, or lose your funds.

Decentralized exchanges (DEXes) — Uniswap, Jupiter, Raydium, GMX, dYdX, Curve, Balancer. You keep custody of your tokens; a smart contract matches trades. Pros: non-custodial, permissionless, transparent. Cons: require self-custody skills, can have MEV issues, fiat ramps require an intermediary.

Lesson 10.2

The FTX lesson

FTX was the second-largest crypto exchange in the world in early 2022. Its founder, Sam Bankman-Fried, was on magazine covers and congressional hearings. In November 2022, it collapsed in under a week when it was revealed that FTX had been secretly lending customer deposits to its sister trading firm Alameda Research, which had lost billions of dollars.

Customers had ~$8 billion in deposits that weren't there. SBF was convicted on seven counts of fraud in November 2023 and sentenced to 25 years.

The permanent lessons:

  • "Trust me bro" is not a reserve policy.
  • Cross-holdings between an exchange and its prop trading arm is a structural conflict.
  • Proof of Reserves means nothing without Proof of Liabilities.
  • Don't keep more on any exchange than you'd be willing to lose if the lights went out tonight.
Lesson 10.3

Proof of Reserves — useful but incomplete

After FTX, several exchanges (Kraken, Coinbase, Binance, OKX) began publishing Proof of Reserves — Merkle-tree attestations of customer balances vs on-chain holdings. This proves the exchange has the assets at a snapshot moment. It does not prove the liabilities side — the exchange could still owe more than it holds via off-chain loans.

PoR is a useful signal. It is not a guarantee.

Lesson 10.4

Choosing a CEX

Criteria that matter:

  • Jurisdiction — regulated in a serious jurisdiction (US, EU, Japan, Singapore, UK) beats "offshore."
  • Insurance — Coinbase's $255M policy, Gemini's $200M policy. Not a guarantee, but a signal.
  • History of handling crises — did they pay customers out in prior problems?
  • Fiat ramps — ACH / wire / SEPA are cheaper than card; some exchanges have better rails than others.
  • Fee structure — maker/taker fees and withdrawal fees vary widely.
  • Listing quality — a CEX listing a 10,000 shitcoins is not a safety signal.
Lesson 10.5

The major DEX categories

  • AMMs (Automated Market Makers) — Uniswap, PancakeSwap, Raydium, Trader Joe. Price determined by a formula (x*y=k or concentrated liquidity) over a reserve pool.
  • Aggregators — 1inch, Paraswap, Jupiter, OpenOcean. Route your trade across multiple DEXes for best price.
  • Orderbook DEXes — dYdX, Hyperliquid, Drift, Zeta, Vertex. Look and feel like a CEX — actual limit orders, matched by a decentralized or semi-decentralized engine.
  • Perps DEXes — Hyperliquid, GMX, Drift, Gains Network. On-chain leveraged derivatives. Growing fast.
  • RFQ / Intent-based — CoW Swap, UniswapX, Bebop. Solvers compete to fill your order, MEV-resistant.

Key takeaways

  • Exchanges are the largest non-protocol risk in crypto. FTX is the permanent reminder.
  • Proof of Reserves without Proof of Liabilities is half a signal.
  • Prefer regulated jurisdictions, insured custody, and exchanges with a track record through crises.
  • DEXes split into AMMs, aggregators, orderbooks, perps, and intent-based — different tools for different trades.
Module 11

Stablecoins — the most useful invention in crypto.

Stablecoins are crypto tokens pegged to the value of fiat currency, typically the US dollar. They're the base layer of trading, the lifeline for people in high-inflation economies, and the single largest use case for blockchains by transaction volume. Over $180 billion in circulation as of 2026.

Lesson 11.1

Why stablecoins matter

Bitcoin is too volatile to pay rent with. Holding USD on-chain, however, works: you get instant global transfer, programmable money, 24/7 markets, and no banking hours. Stablecoins are the bridge between "traditional money" and "crypto rails."

Real uses:

  • Trading pairs — almost every DEX and CEX trades assets against USDC/USDT, not against other volatile coins.
  • Remittances — sending $500 from the US to Mexico via USDC on Solana takes seconds and costs pennies. Western Union charges 6–10%.
  • Inflation hedging — Argentinians, Turks, Nigerians, Lebanese save in USDT because their local currency is losing value.
  • Yield — USDC on Aave earns 3–8% depending on conditions; USD in a US bank often earns 0.01%.
  • Payments — Stripe, Shopify, and PayPal all now support stablecoin payments.
Lesson 11.2

Three kinds of stablecoin

TypeHow it stays peggedExampleMain risk
Fiat-backed1:1 cash & Treasuries in bankUSDC, USDT, PYUSDIssuer solvency / regulation
Crypto-overcollateralizedLocked ETH/BTC as backingDAI, LUSD, crvUSDCollateral crash / liquidation cascade
AlgorithmicCode + supply/demand mechanicsUST (dead), FRAX (hybrid now)Reflexive death spiral
Lesson 11.3

The big three fiat-backed

  • USDT (Tether) — largest by far (~$120B+). Issued by Tether Limited. Controversial history around reserves transparency; largely settled via quarterly attestations (not full audits). Dominant on Tron and BNB Chain for remittances.
  • USDC (Circle) — second largest (~$40B+). Fully regulated in the US and EU (MiCA-compliant). Monthly attested reserves. Issued via 100% cash and short-term US Treasuries. Circle IPO'd in 2024.
  • PYUSD (PayPal) — issued by Paxos on behalf of PayPal. Fully regulated, smaller float, growing.
Lesson 11.4

The Terra/UST collapse — what actually happened

In May 2022, Terra's UST algorithmic stablecoin went from a $18B market cap to worthless in five days. Here's why:

UST kept its $1 peg through a mint/burn arbitrage with LUNA (the native token). 1 UST could always be redeemed for $1 of LUNA and vice versa. The system worked as long as LUNA had value.

Terra also offered 19.5% yield on UST through the Anchor Protocol. Most of that yield was subsidized, not organic. Capital rushed in chasing the yield, ballooning UST's supply.

On May 7, 2022, a large coordinated sell of UST broke the peg. As people raced to redeem UST for LUNA, LUNA supply hyperinflated, crashing LUNA's price, which made UST redemption even more dilutive. Classic death spiral. UST went to $0.10, LUNA went from $80 to $0.00001. Do Kwon was later arrested.

Warning Pure algorithmic stablecoins without collateral backing have failed every single time they've been tried at scale. If a stablecoin's peg depends only on market confidence in another token, it can spiral. Structure matters.
Lesson 11.5

The newer wave — yield-bearing and decentralized

  • DAI (MakerDAO) — overcollateralized by ETH, wBTC, and real-world assets. Oldest decentralized stablecoin. Rebranded to USDS in 2024 alongside the Sky rebrand.
  • FRAX — was partially algorithmic, now 100% collateralized. FRAX v3 integrates with Treasuries and LSTs.
  • LUSD (Liquity) — pure ETH-collateralized, minimal governance. Survived the UST collapse without a wobble.
  • USDe (Ethena) — "synthetic dollar" backed by delta-neutral short ETH perp positions + staked ETH. Yields ~10%+ in good funding environments. Novel, real risks.
  • crvUSD (Curve) — ETH/wBTC/LSTs collateralized, with a "soft liquidation" mechanism.
  • PYUSD, RLUSD, USDG — regulated, fintech-issued, institutional flows.
Lesson 11.6

Stablecoin regulation is here

The EU's MiCA regulation (fully effective 2024) sets strict rules for stablecoin issuance in Europe: licensing, reserves, redemption rights. Non-compliant stablecoins have been delisted from European exchanges. The US passed the GENIUS Act in 2025, the first federal stablecoin framework.

Takeaway: the wild-west stablecoin era is over in major jurisdictions. USDC, PYUSD, and the new USDG-style issuers are the compliant future. USDT's situation in the US is increasingly ambiguous.

Key takeaways

  • Stablecoins are the practical use case that keeps crypto useful regardless of speculation.
  • Fiat-backed (USDC, USDT) is the mainstream default; overcollateralized (DAI, LUSD) is the decentralized alternative.
  • Algorithmic stablecoins without collateral have failed 100% of the time at scale.
  • Regulation (MiCA, GENIUS Act) has ended the unregulated era — expect consolidation toward compliant issuers.
Module 12

DeFi primitives — the Lego blocks of on-chain finance.

DeFi (Decentralized Finance) is the rebuild of traditional finance — lending, borrowing, derivatives, insurance, asset management — using smart contracts. No banks, no brokers, no paperwork. Just code. Every primitive is a Lego block that composes with every other, which is both the magic and the horror.

Lesson 12.1

AMMs — automated market makers

An AMM is a smart contract that holds two tokens in a pool and quotes prices based on their ratio. The simplest formula is x × y = k (Uniswap v2): the product of the two reserves must stay constant. Buying token X shrinks its side of the pool and raises its price; the pool auto-adjusts.

Anyone can be a market maker by depositing both tokens into the pool (providing liquidity). You earn a cut of trading fees (typically 0.3%). You also bear impermanent loss — if prices diverge significantly, you'd have been better off just holding the tokens separately.

Modern AMMs use concentrated liquidity (Uniswap v3, Raydium CLMM, Orca Whirlpools) where LPs choose a price range to provide in. More capital-efficient, more active management.

Lesson 12.2

Lending markets

Deposit tokens to earn yield; borrow against your deposits; over-collateralize everything. This is the core of Aave, Compound, MarginFi, Kamino, Morpho, Spark, Radiant, Venus.

Mechanics: supply $10,000 of USDC, earn ~3% APY from borrowers. Supply $10,000 of ETH as collateral, borrow $5,000 of USDC against it. If ETH drops and your loan-to-value exceeds ~80%, the position is liquidated — your ETH is auctioned to repay the loan, with a penalty.

Lending markets are the circulatory system of DeFi — they set the risk-free yield benchmark and power most leveraged strategies.

Lesson 12.3

Perpetuals and derivatives

Perpetual futures (or "perps") are leveraged long/short positions with no expiration. The mechanism that keeps them pegged to spot is a funding rate — longs pay shorts when the contract trades above spot, shorts pay longs when below. Paid every 1–8 hours depending on platform.

Major venues: Hyperliquid, GMX, Drift, dYdX, Vertex, Jupiter Perps. Leverage up to 50x–100x on some venues. Fast way to get liquidated if you don't know what you're doing.

Lesson 12.4

Liquid staking (LSTs)

Instead of staking ETH directly (locked, need to run a validator), you deposit into Lido, Rocket Pool, Coinbase, Frax, and get a liquid staking token that represents your stake + accrued rewards. stETH, rETH, cbETH. You earn staking yield while still being able to use the token in DeFi.

Solana equivalents: JitoSOL, mSOL, bSOL, INF. Cosmos: stATOM. L2s: blETH variants.

Note LSTs sometimes trade at a small discount to their redemption value (especially during market stress). That discount is the liquidity premium — the price of being able to exit immediately instead of waiting through the unstaking queue.
Lesson 12.5

Restaking

Introduced by EigenLayer in 2023 — take your already-staked ETH (or LSTs), and restake it to secure additional protocols. Extra yield, extra slashing risk. Variants now exist on Solana (Jito Restaking, Solayer), Cosmos (Mesh Security), and BTC (Babylon).

The thesis: shared security is expensive to bootstrap; restaking lets new protocols rent Ethereum's security instead of building their own.

Lesson 12.6

Yield aggregators and vaults

Yearn, Beefy, Pendle, Kamino — they automate moving capital between the highest-yielding opportunities. Set it and forget it, theoretically. In practice, you're trusting the strategy author and the contracts they integrate with.

Pendle deserves special mention: it splits yield-bearing tokens into principal + yield, letting you trade each separately. Used heavily in LST and points farming strategies.

Lesson 12.7

Oracles — the external truth problem

Smart contracts only know what's on their own chain. To know the price of ETH, the weather, or the winner of the Super Bowl, they need an oracle. Chainlink, Pyth, API3, RedStone, and Switchboard are the major players.

Oracle attacks (manipulating the price feed to trigger liquidations or mint favorable loans) are one of DeFi's oldest exploit categories. Most modern protocols use Time-Weighted Average Prices (TWAPs) and multi-source aggregation to resist this.

Key takeaways

  • AMMs democratized market making — anyone can be a liquidity provider, with impermanent loss as the cost of entry.
  • Lending markets set DeFi's base rate and power leveraged strategies. Liquidation is the eject button.
  • Perps are leveraged exposure with funding rates keeping them pegged to spot. Fast to profit, faster to liquidate.
  • LSTs make staking composable; restaking lets security be shared across protocols.
  • Oracles are the trust bridge between on-chain contracts and off-chain reality — and a common attack vector.
Module 13

Tokenomics — the money supply beneath every token.

Tokenomics is the economic design of a token — supply, demand, distribution, incentives, and the flow of value. A great team with bad tokenomics will still lose you money. A mediocre team with great tokenomics can keep a price floor for years. This module is how to read the fine print.

Lesson 13.1

The supply side

  • Total supply — the maximum number of tokens that will ever exist (or "unlimited" for inflationary tokens).
  • Circulating supply — tokens actually tradeable right now. The rest are locked, vesting, or uncreated.
  • Fully Diluted Valuation (FDV) — market cap if every single token existed and traded at today's price.
  • Emission schedule — how new tokens enter circulation over time. Linear, exponential decay, halving, cliff-then-vest.
  • Burns — tokens destroyed, reducing supply. Fee burns (like EIP-1559), buy-and-burn programs, protocol-owned burns.
Warning Always compare market cap vs FDV. A token with $100M market cap and $10B FDV means 99% of tokens are about to unlock and hit the market. Your $1 holding may be diluted to $0.01 as supply expands.
Lesson 13.2

Token distribution

Who got the tokens matters as much as how many exist:

AllocationTypical %What to watch
Team / Founders10–25%Vesting (ideally 3+ years with 1yr cliff)
Investors (VCs)10–30%Unlock schedule — big cliffs = big sell pressure
Community / Airdrop5–30%Sybil-resistance, real users vs farmers
Treasury / Foundation15–40%Multisig control, governance visibility
Liquidity / Ecosystem5–20%How it's incentivized, mercenary capital risk
Public sale / IDO0–15%Increasingly rare post-regulation

A fair launch (100% to community, no VC, no team allocation) like Bitcoin or Dogecoin is rare. Most serious projects have mixed distribution; the question is how equitable it is.

Lesson 13.3

Vesting and unlocks

Vesting is the schedule on which locked tokens become liquid. Standard structures:

  • Cliff — no tokens unlock for N months, then a chunk unlocks all at once.
  • Linear vest — tokens unlock continuously over a period.
  • Cliff + linear — both combined (most common for team/VC allocations).
  • Milestone-based — unlocks tied to product/metric achievements. Rare but healthy.

Track cliffs before buying. Tools like TokenUnlocks.app and Cryptorank unlocks calendar the big ones. Many tokens trade lower into a big unlock and recover after.

Lesson 13.4

The demand side — why people hold

Supply without demand is worthless. What creates token demand?

  • Utility — tokens required to use a service (gas, licensing, access).
  • Governance — voting on protocol decisions. Mostly overrated; real value rarely accrues from pure governance.
  • Cashflow / revenue sharing — veToken models, buyback-and-distribute, fee sharing. GMX, Aerodrome, Aave pioneered this.
  • Staking rewards — lock tokens to earn yield. Reduces circulating supply.
  • Collateral — acceptable as collateral in DeFi markets (major utility for ETH, BTC, SOL, LSTs).
  • Memetic / cultural — BTC as "digital gold," DOGE as Elon's coin. Hard to model, very real in practice.
Lesson 13.5

Tokenomics archetypes

  • Store of value — capped, deflationary-ish, no ongoing issuance pressure. BTC.
  • Productive asset — ongoing cashflow or yield. ETH (staking + burns), SOL (staking), GMX (fees).
  • Utility token — required for network usage. Gas tokens on various chains.
  • Governance token — voting rights in DAOs. UNI, COMP (traditionally low economic value, improving).
  • Meme token — no utility, pure narrative/cultural value. DOGE, PEPE, WIF, $PIGEON, etc.
  • Yield-bearing — LSTs, Pendle PTs, Ondo's tokenized Treasuries.
Lesson 13.6

Red flags in tokenomics

  • Team + investor allocation > 50% combined.
  • Short vesting (less than 2 years for team, less than 1 year for investors).
  • Huge FDV / MC gap (e.g., 10x or more) — big dilution ahead.
  • Low float at launch (<10% circulating) — pumped to fake valuation, unlocks destroy price.
  • No clear token utility beyond "governance."
  • Mint authority not renounced (for meme tokens especially — means the team can print more).
  • Opaque distribution ("community allocation" with no verification of who got what).

Key takeaways

  • FDV vs market cap is the first thing to check — dilution is invisible price pressure.
  • Team/VC allocation with bad vesting is the most common reason tokens leak downward for years.
  • Demand needs utility, cashflow, staking lockups, collateral value, or strong memetic pull — ideally some combination.
  • Low float + high FDV + imminent unlocks = avoid.
Module 14

NFTs & digital collectibles — verifiable ownership of anything.

NFTs (Non-Fungible Tokens) are unique on-chain assets where each token has its own identity — an ID number, metadata, sometimes an image or file. They're the mechanism for representing ownership of anything that isn't interchangeable: art, music, memberships, tickets, domain names, game items, real estate deeds.

Lesson 14.1

Fungible vs non-fungible

A $1 bill is fungible — any $1 bill is interchangeable with any other. A house deed is non-fungible — your house is not the same as your neighbor's, even if identical in blueprint. ERC-20 tokens are fungible; ERC-721 tokens are non-fungible.

ERC-1155 is a hybrid — supports both fungible and non-fungible in the same contract (useful for game items where you might have 1,000 of a common sword and only 1 of a legendary sword).

Lesson 14.2

The art/PFP era

CryptoPunks (2017), Bored Ape Yacht Club (2021), Azuki, Doodles, Pudgy Penguins, Milady — profile picture (PFP) NFT collections exploded in 2021 as status signals. Peak market: $17B in monthly trading volume (January 2022).

Reality check post-2022: most PFP projects lost 80–95% of their peak value. Survivors are collections with real community, durable teams, or genuine utility (Pudgy Penguins with their toys, Azuki's multi-product brand).

Lesson 14.3

Beyond profile pictures — real utility

  • Domain names — ENS (Ethereum Name Service) replaces long wallet addresses with readable names (alice.eth). SNS on Solana, Base names, .sol domains.
  • Memberships — Friends With Benefits, decentralized gyms, DAO access passes.
  • Music — Sound.xyz lets artists release music as NFTs; fans become direct backers.
  • Tickets — GET Protocol, YellowHeart. Anti-scalping through on-chain verification.
  • Gaming — weapons, skins, land. Expensive experiment so far; a few successes (Axie early days, Pirate Nation).
  • Real-world assets — tokenized real estate, wine, art fractions. Regulatory frontier.
Lesson 14.4

Marketplaces and royalties

OpenSea dominated NFT volume 2021–2022. Then Blur (a pro-trader focused marketplace) captured most Ethereum volume in 2023 with aggressive token incentives. Magic Eden is Solana-native and expanded to ETH/BTC. Tensor is Solana's pro-trader equivalent.

The royalty war — historically NFT creators set royalties (2.5%–10%) paid on every resale. In 2022–2023, marketplaces dropped enforcement to compete on fees, crashing creator revenue. Now a mix: some marketplaces honor on-chain enforced royalties, others don't.

Lesson 14.5

The storage problem

Most NFTs store their image and metadata off-chain — typically on IPFS, Arweave, or (risky) on the project's own server. If the project abandons the server, your "NFT" becomes a broken link.

Fully on-chain NFTs (like Chain Runners, Autoglyphs, Nouns) store the image as SVG code inside the contract itself. More expensive to mint, permanent as long as Ethereum exists.

Lesson 14.6

Where NFTs stand now

After the 2022 peak, NFT market volume is a fraction of its highs — but the infrastructure matured. The surviving use cases are:

  • Domain names (ENS especially)
  • Blue-chip PFP collections as digital collectibles
  • On-chain music (small but growing)
  • Ticketing (still early)
  • Gaming items (experimental)
  • Tokenized real-world assets (the institutional bet)

The "NFT bubble" popped. The technology did not go away.

Key takeaways

  • NFT = unique token with its own identity. ERC-721 is the Ethereum standard, ERC-1155 is the hybrid.
  • PFP/art was the attention-grabbing wave; most lost value post-2022.
  • Real utility lives in domains, memberships, music, tickets, and tokenized RWAs.
  • Check whether the NFT's image is truly on-chain or stored on a server that might disappear.
Module 15

DAOs & governance — coordinating without bosses.

A DAO (Decentralized Autonomous Organization) is a group of people coordinating through on-chain rules and votes instead of traditional corporate structure. Token holders vote on how a protocol's treasury spends, what features ship, who gets grants. Think "company but everyone with the token is a shareholder who can vote on every board decision."

Lesson 15.1

What a DAO actually is

Strip away the idealism. At minimum, a DAO is:

  • A treasury (tokens, ETH, stables) held in a multisig or governance-controlled contract.
  • A governance token that confers voting power.
  • A proposal/voting process (on-chain or off-chain).
  • An execution layer that enforces successful votes (often with a timelock).

The biggest DAOs by treasury: Uniswap ($3B+), Optimism Collective, Arbitrum DAO, ENS, Lido, MakerDAO (now Sky). Each has its own governance quirks and political culture.

Lesson 15.2

On-chain vs off-chain voting

  • Snapshot (off-chain) — gasless voting via signed messages. Results are social signals, not auto-executing. Cheap but requires trust in the operators to execute.
  • Tally / on-chain — actual transactions. Gas cost per vote. Binding, auto-executes once passed and timelock clears.
  • Optimistic governance — proposals pass by default unless vetoed. Used by some subDAOs.

Most DAOs use a hybrid: Snapshot for temperature checks, on-chain for binding votes.

Lesson 15.3

Voting systems beyond 1 token = 1 vote

  • Token-weighted — default. One token, one vote. Plutocratic, but simple.
  • veModel (vote-escrow) — lock tokens for longer = more voting power. Curve pioneered it; Balancer, Frax, Aerodrome adopted. Rewards long-term alignment.
  • Quadratic voting — cost of N votes = N². Diminishes whale influence. Used in Gitcoin grants.
  • Delegation — you delegate your votes to a trusted person. Most large DAOs use it to fight voter apathy.
  • Reputation-based — rare. Non-transferable points earned through participation.
Lesson 15.4

Multisigs — the unglamorous backbone

Most "DAO" treasuries are actually governed by a multisig (typically Safe, formerly Gnosis Safe). Votes happen on Snapshot; the result is enforced by 5-of-9 or 7-of-12 signers executing transactions. Fast, cheap, trust-reducing but not trust-eliminating.

"Signer risk" is real — if enough signers go bad or get compromised, the treasury moves. Most DAOs publish their signers and rotate keys when someone leaves.

Lesson 15.5

Governance attacks & failures

  • Mango Markets (2022) — attacker manipulated MNGO price to inflate collateral, borrowed $117M, then submitted a governance proposal to keep it in exchange for returning some funds. Voted through by his own inflated tokens.
  • Beanstalk (2022) — flash loan governance attack. $182M drained via a single transaction.
  • Compound proposal 289 (2024) — "Golden Boys" group briefly captured enough voting power to propose diverting the treasury. Withdrew after community backlash.
  • Voter apathy — generic problem. Most DAO proposals pass with 1–5% of eligible tokens voting. Capture is easier than it should be.

Key takeaways

  • DAOs = treasury + governance token + voting process + execution layer. That's the minimum.
  • Snapshot for cheap signaling, on-chain for binding. Most use both.
  • Voting systems range from plutocratic (token-weighted) to experimental (veToken, quadratic).
  • Most "DAOs" in practice are multisig-controlled with social vote signals.
  • Governance attacks via flash loans, proposal whale-capture, and apathy are all real risks.
Module 16

On-chain analysis — reading the public ledger.

Every transaction on every major chain is public forever. If you know where to look, you can see wallet balances, trading flows, liquidity moves, team wallets, smart money activity, and more. This module is how to turn "line go up" into "I can see what's actually happening."

Lesson 16.1

Block explorers — the basic literacy

A block explorer is a web UI for the chain's public data. You can paste any address, transaction hash, or token contract and see its full history.

  • Etherscan — Ethereum, and the standard everyone else copies.
  • Arbiscan, Basescan, Optimistic Etherscan — L2 variants.
  • BSCScan, Polygonscan, Snowtrace — other EVM chains.
  • Solscan, SolanaFM, XRAY (Helius) — Solana.
  • Mempool.space, Blockstream — Bitcoin.
  • Tonviewer — TON.

Basic skills: find a contract address, read its balances, check its age, see who deployed it, view token transfers, verify its source code matches what's claimed.

Lesson 16.2

DEX / market data

  • Dexscreener — charts for every token on every chain. Real-time price, volume, holders, liquidity.
  • Dextools — similar, older interface, trusted by many traders.
  • Birdeye — Solana-first, now multi-chain. Best Solana volume/flow UX.
  • GeckoTerminal — CoinGecko's DEX-focused data product.
  • DefiLlama — aggregate TVL by chain, protocol, category. The best single data source for the ecosystem.
Lesson 16.3

Smart money tracking

Some wallets consistently outperform the market. Following their moves has become a discipline:

  • Nansen — wallet labeling + analytics. Tags wallets as "Smart Money," "VC," "Whale," etc.
  • Arkham Intel — similar, heavy on doxxing known entities (funds, exchanges, individuals).
  • DeBank — multi-chain portfolio tracker. Good for seeing what a wallet holds right now.
  • Zerion — user-friendly wallet tracker.
  • Cielo Finance — Telegram alerts for wallet activity.

Caveat: "smart money" wallets are often followed so widely that once a trade is public, the price already moved. The edge is smaller than influencers pretend.

Lesson 16.4

Holder concentration and distribution

Who owns the token matters as much as how much you own. Key tools:

  • Bubblemaps — visualizes wallet clusters. Shows connected wallets (likely the same entity) as grouped bubbles. Essential for spotting coordinated holders.
  • Cabal — Solana-specific cluster analysis.
  • Etherscan "Holders" tab — top 100 holders ranked by balance.
  • Dune dashboards — custom holder analytics often shared publicly.

Red flags: top 10 holders owning >30% of circulating supply, clear bubble clusters (visual proof of coordinated wallets), team wallets with no lock proof.

Lesson 16.5

Dune Analytics — build your own view

Dune is a SQL-based analytics platform with indexed data for dozens of chains. You can write queries, build dashboards, and fork other people's work. The public dashboard library is a goldmine — there's probably already a dashboard for whatever question you have.

Useful Dune queries to know:

  • Daily active addresses for any chain
  • DEX volume by protocol
  • NFT mint flows
  • Staking inflows / outflows
  • Airdrop distribution analysis
Lesson 16.6

On-chain signals worth watching

  • Stablecoin supply changes — USDT/USDC minting → incoming capital; burning → outflow.
  • Exchange inflows/outflows — big inflows = sell pressure. Big outflows = accumulation.
  • Miner/validator selling — sustained distribution = bearish.
  • Long-term holder supply — Glassnode's HODL waves. When LTH supply drops, they're distributing into strength.
  • Funding rates — persistently high positive funding = crowded longs. Negative = crowded shorts.

Key takeaways

  • Every transaction is public. Learn to read Etherscan / Solscan and you're ahead of 95% of traders.
  • Dexscreener + DefiLlama + Bubblemaps cover most daily analysis needs, free.
  • Nansen / Arkham are premium tools for wallet-level attribution and smart money flows.
  • Holder concentration & cluster analysis catches coordinated manipulation before prices move.
Module 17

Trading, cycles & narratives — the game behind the game.

Crypto markets move in cycles. They rotate through narratives. They liquidate the overleveraged and reward the patient. TA doesn't work the way Twitter claims, and fundamentals matter more than most traders admit. This module is the framework for thinking about markets, not a promise of alpha.

Lesson 17.1

The four-year cycle thesis

Crypto has historically traced a four-year rhythm tied loosely to the Bitcoin halving:

  • Year 1 (halving year) — accumulation, early signs of rotation back into crypto.
  • Year 2 — broad bull market, alt season, new ATHs on majors.
  • Year 3 — distribution, blow-off tops, then bear market begins.
  • Year 4 — deep bear, capitulation, bottoms form, cycle resets.

Halvings in 2012, 2016, 2020, and 2024. The pattern has been surprisingly consistent, though less violent with each cycle. The question for 2028+: does institutional/ETF flow decouple crypto from the halving narrative entirely?

Lesson 17.2

Market structure — majors, mids, micros

  • Majors — BTC, ETH, SOL, a handful of top-10 assets. Lead in recoveries, hold best in crashes.
  • Mid caps — $500M–$5B market cap. Higher beta. Led the 2021 alt season.
  • Low caps — $10M–$500M. Higher risk, higher reward. Pump hardest, dump hardest.
  • Meme / micro — under $10M. Casino territory. Most die; the rare one that doesn't makes legends.

Capital typically flows majors → mids → lows → memes as a bull cycle progresses, then reverses on the way down.

Lesson 17.3

Narratives — what actually moves alts

Every bull cycle has had dominant themes. In 2017: ICOs, privacy coins, Ethereum scaling. In 2021: DeFi summer, NFTs, L1 wars, metaverse. In 2024–2025: AI tokens, RWAs, memecoin supercycle, Solana resurgence, ETFs.

Narratives rotate. Being in the right narrative before it's consensus is how alts outperform majors. Tools: CoinGecko categories, Artemis narrative tracker, Kaito AI, Crypto Twitter sentiment.

Lesson 17.4

Technical analysis — what's real, what's cope

Support, resistance, trend, moving averages, volume — these are measurable. Traders coordinate on key levels, so they can be self-fulfilling short-term.

Real-looking but mostly noise: complex patterns (head-and-shoulders, bat harmonics, Gann fans), RSI divergences alone, Elliott Wave without wider context.

Honest rule: TA is useful for timing, not thesis. Figure out what to own via fundamentals and flows; use TA to decide when to enter and how to size. Never reverse that order.

Lesson 17.5

Funding rates, open interest, liquidations

Futures markets reveal positioning that spot doesn't:

  • Funding rates — if persistently high positive, longs are overcrowded (bearish). Persistently negative = overcrowded shorts (bullish).
  • Open interest — total outstanding derivative positions. Rapid OI buildup with no price progress = leverage stacking without commitment.
  • Liquidation levels — Coinglass heatmaps show where stacks of leveraged positions will liquidate. Markets tend to wick into those clusters (liquidation hunts).

These three data points alone give you more insight into short-term moves than most technical indicators.

Lesson 17.6

Position sizing and risk management

The single most important skill in crypto. Universal rules:

  • Never risk more than a small percent of your total crypto portfolio on a single low-cap position (1–3% is typical).
  • Majors can be larger allocations (BTC/ETH 20–50%+ depending on your thesis).
  • Set exit ladders before you enter — know where you'll take 25% off, 50% off, 100% off. Predefined, written down.
  • Stop losses live in your discipline, not always on-chain (on-chain stops can be front-run).
  • Leverage is a tool. 2x on majors is reasonable. 20x on memes is a coin flip with extra steps.
Lesson 17.7

The psychology side

The hardest part of trading isn't the charts — it's you. The specific failures are universal:

  • FOMO — buying the top because everyone else is making money.
  • Revenge trading — doubling down after a loss to "get it back."
  • Anchoring — refusing to sell below your cost basis even when the thesis broke.
  • Recency bias — assuming the last 30 days of behavior is the new normal.
  • Overtrading — boredom-clicking. Most of the time, the right move is to do nothing.

A journal helps. Reviewing your trades weekly — why you entered, why you exited, how the outcome matched your thesis — is the single highest-ROI practice a new trader can adopt.

Key takeaways

  • Four-year halving cycles have been the dominant rhythm; institutional flows may change that.
  • Capital rotates majors → mids → lows → memes and back. Know where you are in the cycle.
  • Narratives, not pure TA, move alt prices. Be early to the right story.
  • Funding / OI / liquidation maps beat most indicators for short-term structure.
  • Position sizing + pre-planned exits + honest journaling — the three habits that separate survivors from exits.
Module 18

Security, regulation & the future — staying alive and seeing the map.

The last module. Three parts: how not to get rugged, how the government is thinking about all this, and where the industry is headed. Read this before you click anything.

Lesson 18.1

The common scam taxonomy

  • Drainers — malicious dapps that trick you into signing an "approval" that gives them full control of your wallet. One click = drained. Spread via phishing links, compromised Discords, fake X ads.
  • Address poisoning — attacker sends you tiny amounts from a look-alike address, hoping you copy-paste the wrong address next time you send.
  • Rug pulls — team mints supply, attracts buyers, then dumps / removes liquidity / disappears.
  • Honeypots — contracts you can buy but not sell. The sell function is coded to revert for non-team wallets.
  • Fake tokens — contracts that share a name/ticker with a real project. Check the contract address, not the name.
  • Pig butchering — long-con romance scams that trust-build over weeks, then direct victims to fake exchange sites.
  • Impersonation — fake "Ledger support," "Phantom support," "Binance support" on Telegram/Discord. Real support will never DM first.
  • Malicious hardware — "pre-configured" hardware wallets bought second-hand or from sketchy resellers may have pre-loaded seeds. Buy direct from the manufacturer.
Lesson 18.2

OPSEC fundamentals

  • Never paste your seed phrase anywhere digital. Ever. For any reason. No support agent will ask.
  • Bookmark your dapps. Don't click links from Twitter, Discord, Google ads.
  • Use a burner wallet for minting, new airdrops, or unknown contracts. Never connect your main holdings wallet to anything you don't fully trust.
  • Read approval prompts. What token? What contract? Is it asking for unlimited approval?
  • Revoke old approvals monthly via revoke.cash or your wallet's built-in manager.
  • Use a hardware wallet for anything significant. The friction is the feature.
  • Separate browser profile / device for crypto. One identity, one context.
  • 2FA on every exchange. Prefer hardware 2FA (YubiKey) over SMS (SIM-swappable).
  • Long unique passwords via a password manager. Crypto-specific emails.
Lesson 18.3

The regulatory landscape — US

The US enforcement era (2022–2024) gave way to a more structured approach in 2025–2026:

  • GENIUS Act (2025) — federal stablecoin framework. Registered issuers, reserve requirements, redemption rights.
  • FIT21 / market structure bill — defines which assets are securities (SEC) vs commodities (CFTC). Most non-fraud tokens get CFTC treatment.
  • Bitcoin ETFs — approved January 2024. ETH ETFs July 2024. SOL / BTC+ETH spot ETFs expanded 2025–2026.
  • IRS Form 1099-DA — broker reporting for digital assets. CEXes now 1099 you like a stock broker.
Lesson 18.4

Global picture

  • EU — MiCA (fully live 2024) — comprehensive framework for issuers, exchanges, stablecoins. Licensing required.
  • UK — FSMA and FCA crypto regime — similar to MiCA in intent, rolling out in phases.
  • Japan, Singapore — mature, licensed frameworks. Early crypto-friendly.
  • UAE (Dubai VARA) — active courting of crypto firms.
  • Hong Kong — licensed exchanges, approved spot ETFs.
  • El Salvador — BTC legal tender since 2021 (first country).
  • China — mining and trading banned on the mainland; active on the Hong Kong SAR.
Lesson 18.5

Taxes — the unglamorous reality

In the US (consult a CPA for your jurisdiction):

  • Every sale, swap, or spend is a taxable event.
  • Short-term gains (held under 1 year) taxed as ordinary income.
  • Long-term gains (held 1+ year) taxed at preferential rates (0/15/20% federal depending on bracket).
  • Staking and mining rewards taxed as income at fair market value on receipt, then capital gains when sold.
  • Airdrops taxed as income on receipt (fair market value on the day).
  • NFT-specific treatment as collectibles (28% max LT rate) is an open IRS question.

Tools: Koinly, CoinTracker, TokenTax, Cointracking, ZenLedger. Pick one and use it all year; reconstructing at tax time is misery.

Lesson 18.6

Where crypto is going — the current frontier

  • Real-world assets (RWAs) — tokenized Treasuries (BlackRock BUIDL, Ondo), private credit, real estate, commodities. The "bring TradFi on-chain" thesis.
  • AI × crypto — decentralized compute (Akash, Render, io.net), model marketplaces, autonomous agents with wallets, verifiable ML.
  • DePIN (Decentralized Physical Infrastructure Networks) — Helium (wireless), Hivemapper (maps), Geodnet (GNSS), Filecoin (storage). Pay hardware operators with tokens.
  • Account abstraction (ERC-4337) — smart contract wallets with social recovery, batching, gasless transactions, passkeys. Ends seed-phrase-or-die UX for mainstream.
  • Modular blockchains — Celestia, EigenLayer, Avail — separating execution / settlement / data availability into composable layers.
  • Zero-knowledge everything — ZK rollups, ZK identity (zkPassport, Worldcoin), ZK machine learning, ZK privacy pools.
  • Intents & chain abstraction — users express desired outcome, solvers compete to fulfill. Crosses chains invisibly.
  • Prediction markets — Polymarket's political cycle breakout proved product-market fit. Expect more domains to follow.
Lesson 18.7

The long view

Strip away the cycle noise and the big picture is simple: we have, for the first time in human history, programmable global money and public databases that no single party controls. That's a once-a-century invention. The near-term will be messy — bad launches, scams, regulatory whiplash, bad actors, bubbles. The long arc is more useful infrastructure, better tools, quieter adoption.

The flock's job is to keep learning, keep building, and not get liquidated in the meantime.

Key takeaways

  • Scams are pattern-matched — drainers, approvals, honeypots, impersonation, rug pulls. Learn them once, avoid them forever.
  • Hardware wallet + burner wallet + revoked approvals + bookmarked dapps = 95% of consumer OPSEC.
  • Regulation is coalescing: MiCA in EU, GENIUS + FIT21 in US. The wild-west era is over for majors.
  • Every sale is a taxable event. Use tax software from day one.
  • RWAs, AI × crypto, DePIN, AA, modular, ZK, intents, prediction markets — the frontier is wide open.
Glossary

The flock's lexicon — 60+ terms, decoded.

Crypto speaks its own language. Here's a quick reference you can skim before (or during) a conversation.

51% attack
Controlling a majority of a chain's mining or staking power to rewrite recent history.
Account abstraction (AA)
Making user wallets smart contracts with flexible logic (social recovery, batching, gasless).
Airdrop
Free distribution of a new token to eligible wallets — usually past users of the protocol.
AMM
Automated Market Maker — a DEX that prices trades via a pool formula.
APR / APY
Annual Percentage Rate (simple) / Yield (compounded). DeFi yields are quoted as both.
Approval
Permission granted to a contract to move tokens out of your wallet. Revoke old ones.
Arbitrage
Profiting from price differences of the same asset across venues.
BIP39
Bitcoin Improvement Proposal 39 — the seed phrase standard (12/24 word mnemonics).
Bridge
Infrastructure to move assets between chains.
Burn
Sending tokens to an unspendable address, permanently reducing supply.
Cex / Dex
Centralized / Decentralized Exchange.
CEX-hop
Moving assets between chains by depositing on a CEX and withdrawing on another chain.
Cold wallet
A wallet whose keys never touch the internet (usually a hardware device).
Cold storage
Any offline storage of keys.
Consensus
The algorithm by which a decentralized network agrees on the next block.
DAO
Decentralized Autonomous Organization — governance-via-token group.
DeFi
Decentralized Finance — on-chain lending, trading, derivatives.
dApp
Decentralized application — a front-end that talks to smart contracts.
Drainer
Malicious dapp that steals wallet contents via a signed approval.
ERC-20
Ethereum fungible token standard. The default for altcoins on Ethereum.
ERC-721 / 1155
NFT standards on Ethereum. 721 is unique-only; 1155 supports both unique and fungible.
EVM
Ethereum Virtual Machine — the runtime environment for EVM-compatible chains.
Farming
Using protocols to maximize rewards (yield farming, airdrop farming, points farming).
FDV
Fully Diluted Valuation — price × total supply.
Flash loan
Uncollateralized loan that must be borrowed and repaid within the same transaction.
Fork
A change to protocol rules (hard = breaking, soft = backward-compatible) or a copy of a codebase.
Funding rate
Periodic payment on perp futures that keeps them tethered to spot price.
Gas
The fee paid for computation on Ethereum (and EVM chains).
Governance
Process by which protocol decisions are made (on-chain voting, Snapshot, multisig).
Hot wallet
An internet-connected wallet (MetaMask, Phantom). Convenient, less secure.
IL (Impermanent Loss)
The opportunity cost LPs bear when pool prices diverge from hold.
IPFS / Arweave
Decentralized file storage used for NFT media.
KYC
Know Your Customer — identity verification required by regulated exchanges.
Layer 1 / Layer 2
L1 = base chain (Ethereum, Bitcoin). L2 = rollup or scaling chain above an L1.
Liquidation
Forced sale of a leveraged / collateralized position when it breaches a risk threshold.
LP
Liquidity Provider — deposits pairs into an AMM pool to earn fees.
LST / LRT
Liquid Staking Token / Liquid Restaking Token.
MEV
Maximal Extractable Value — profits from transaction ordering.
Mint
Creating a new token (fungible or NFT) from a contract.
Multisig
Wallet requiring M-of-N signatures to transact.
Nonce
A number used once — in PoW, the guessed value that solves the puzzle; in accounts, a tx counter.
On-ramp / Off-ramp
Converting fiat to crypto / crypto back to fiat.
Oracle
Service that brings off-chain data (prices, events) on-chain.
Perp
Perpetual futures contract — leveraged long/short without expiration.
PoW / PoS
Proof of Work / Proof of Stake — two main consensus families.
Restaking
Restaking already-staked tokens to secure additional protocols.
Rollup
L2 that batches transactions and settles to L1.
Rug pull
Team abandons a project after extracting value (removing liquidity, dumping tokens).
Sandwich attack
MEV attack: front-run and back-run a user's trade to extract slippage.
Seed phrase
Human-readable form of a wallet's private key. Never share, never digitize.
Slippage
Difference between expected and actual execution price of a trade.
Smart contract
Program deployed to a blockchain. Runs as written, by anyone.
Snapshot
A governance voting platform using signed messages (gasless).
Stablecoin
Token pegged to fiat (USDC, USDT) or overcollateralized crypto (DAI).
TVL
Total Value Locked — capital deposited in a protocol.
UTXO
Unspent Transaction Output — Bitcoin's "balance unit."
Validator
Node participating in consensus on a PoS chain.
Vesting
Schedule on which locked tokens become liquid.
Wallet
Software or hardware holding private keys.
Whale
Individual or entity holding a large portion of a token.
Wrapped token
Asset from one chain represented as a token on another (WBTC on Ethereum).
Zero-knowledge proof
A proof that a statement is true without revealing why.
Tools & resources

The operator's toolkit — bookmark these.

If you're going to spend real time on-chain, these are the tools worth learning. All free or freemium.

← Back to the Academy Follow the tower on X
Scroll to Top