Self-Taught Curriculum

Crypto From the Ground Up

Eight modules. Plain language. Built for someone who already has skin in the game but wants to understand the machinery.

01 / 08

What a Blockchain Actually Is Beginner

The core idea

A blockchain is just a list — a list of transactions that everyone can see, and nobody can secretly change. That's it. The "block" part means transactions get bundled into chunks (blocks). The "chain" part means each block is mathematically linked to the one before it.

Real-world analogy Think of a Google Doc that the entire world can read, where every edit is permanent and timestamped — except there's no Google. Nobody owns it. It runs itself.

Why does it need to be a chain?

Because linking each block to the previous one means you can't go back and quietly change an old record. If you tried to alter block #500, you'd break the link to block #501, and every block after it. The network would reject it immediately.

Block #499
Hash: a3f9...
Block #500
Prev: a3f9...
Block #501
Prev: b2c1...

Each block contains the "fingerprint" (hash) of the one before it. Tamper with one, and everything downstream breaks.

Who keeps the list?

Thousands of computers around the world (called nodes) all hold a full copy of the blockchain simultaneously. There's no central server. If one goes down, the network keeps running. This is what "decentralized" actually means.

Quick check: Why can't someone secretly alter an old transaction on a blockchain?
02 / 08

Coins vs. Tokens — What's the Difference Beginner

Coins: the native currency

A coin is the native asset of its own blockchain. It's used to pay for transactions on that network. Examples:

BTC

Bitcoin's coin — runs on the Bitcoin blockchain

ETH

Ethereum's coin — runs on the Ethereum blockchain

SOL

Solana's coin — runs on the Solana blockchain

TAO

Bittensor's coin — runs on the Bittensor network

Tokens: built on top of a blockchain

A token doesn't have its own blockchain. It lives on someone else's. Most tokens are built on Ethereum using a standard called ERC-20.

Real-world analogy Coins are like dollars — the government's official currency. Tokens are like arcade tokens or casino chips — they have value, but only within a specific ecosystem, and they're built on top of the existing financial system.

MON (Monad) is a token. LINK (Chainlink) is a token. They live on Ethereum's rails.

Why does this matter?

When you hold a token, you're exposed to two things: the token's own performance, AND the health of the underlying blockchain it runs on. If Ethereum has congestion problems, every token on it gets affected.

Practical note
This is why "gas fees" exist. Every time you move a token on Ethereum, you pay a small fee in ETH — even if you're not moving any ETH itself. The blockchain needs its native coin to process anything.
Is LINK (Chainlink) a coin or a token?
03 / 08

Wallets, Keys, and How Ownership Works Beginner

You don't "store" crypto anywhere

This trips people up. Your crypto doesn't actually live inside a wallet app. It lives on the blockchain — always. What a wallet holds is your private key: the password that proves you own a particular address on the chain.

Real-world analogy A blockchain wallet is like a PO box key. The mail (your crypto) is at the post office (the blockchain). The key just lets you access it. If someone steals your key, they can take your mail — and the post office can't stop them.

Public key vs. Private key

Public Key

Your address. Share this freely — it's like your bank account number. People need it to send you crypto.

Private Key

Your secret. Never share this. Ever. It signs transactions and proves you're the owner. Losing it = losing everything.

Seed phrase (recovery phrase)

When you create a self-custody wallet, you get 12 or 24 random words. This seed phrase can regenerate your private key from scratch. It's the master key to everything.

⚠ Critical
Write your seed phrase on paper. Store it offline. Never photograph it, type it into any website, or share it with anyone — including support staff. No legitimate service will ever ask for it.

Custodial vs. Self-custody

When your crypto is on Coinbase or an exchange, they hold the private keys. You trust them to give you access. With a self-custody wallet (like MetaMask), you hold your own keys — total control, total responsibility.

Note for your setup
Your exchange positions (BTC, ETH, etc.) are custodial. That's fine for now — just know the distinction. Self-custody becomes more relevant when you start using DeFi directly.
04 / 08

Wrapping Explained: Moving Assets Across Chains Intermediate

The fundamental problem

Different blockchains are like different countries with different currencies and no common language. Bitcoin can't natively go to Ethereum. They don't speak to each other. So if you want to use Bitcoin's value in an Ethereum-based app, you need a translator.

That translator is called wrapping.

How wrapping actually works

Step by step:

You send BTC to a custodian
They lock it
They mint WBTC on Ethereum
1:1 in value

WBTC (Wrapped Bitcoin) is an Ethereum token that always equals 1 BTC in value. When you want your real BTC back, you burn the WBTC and the custodian releases the real Bitcoin.

Real-world analogy It's like exchanging USD for casino chips. The chips represent the same dollar value and let you play the games. When you leave, you cash them back in. The chips aren't dollars — but they're worth dollars while you're inside.

Common wrapped assets you'll encounter

WBTC

Wrapped Bitcoin on Ethereum. Most common way to use BTC in DeFi.

WETH

Wrapped ETH. ETH itself can't use its own token standard (ERC-20), so it gets wrapped for DeFi compatibility.

cbBTC

Coinbase's wrapped Bitcoin — what you saw on Base. More trust in Coinbase as custodian vs. decentralized options.

WSTETH

Wrapped staked ETH. ETH that's earning staking rewards, wrapped for use in other protocols.

The risk with wrapped assets

Wrapping introduces custodial risk. Someone has to hold the real asset. If the custodian is hacked or becomes insolvent, the wrapped token could lose its peg. This is why cbBTC (Coinbase) and WBTC (BitGo) are more trusted — they're large, audited, and insured.

Why this matters for your portfolio
If you ever see a wrapped version of something trading at a discount (e.g., WBTC at 0.98 BTC), that's usually fear about the custodian. It can be an opportunity — or a warning sign.
Why does WETH exist if ETH is already on Ethereum?
05 / 08

Bridging: Moving Between Blockchains Intermediate

Bridging vs. Wrapping

These terms get mixed up constantly. Here's the clean distinction:

  • Wrapping — converts an asset into a compatible version on the same chain (or uses a custodian to represent it on another chain)
  • Bridging — actually moves an asset from one blockchain to another

In practice, bridging usually involves wrapping as part of the process. They work together.

How a bridge works

Deposit ETH
on Ethereum
Bridge locks it
in a smart contract
Equivalent ETH
minted on Base
You use it
on Base DeFi
Real-world analogy It's like wiring money internationally. You send USD from your US bank, it gets converted and deposited in a foreign account in the local currency. The bridge is the wire service. It takes a cut, there's a delay, and if the service goes under mid-transfer, you might have a problem.

Base is an L2 — and that changes things

Base is not a separate blockchain in the same way that Bitcoin and Ethereum are separate. It's a Layer 2 — built on top of Ethereum, using Ethereum for security, but processing transactions faster and cheaper.

Bridging from Ethereum to Base is relatively safe because Base inherits Ethereum's security. Bridging between two fully separate blockchains (e.g., Ethereum to Solana) carries more risk because you're trusting a third-party bridge protocol.

The L2 advantage
This is why you saw so many apps in that Base app store. Developers build on Base because fees are low (fractions of a cent vs. sometimes $50+ on Ethereum mainnet), but they get Ethereum-grade security underneath.

Bridge risk

Bridges are one of the most hacked targets in crypto. They hold enormous amounts of locked assets and are complex to build securely. Notable bridge hacks have lost hundreds of millions. Rules of thumb:

  • Stick to well-audited, high-volume bridges (Across, Stargate, Coinbase's official Base bridge)
  • Never bridge more than you can afford to lose until you understand the specific bridge
  • Check if the bridge has been audited and for how long it's been running
06 / 08

DeFi: What It Is and How It Makes Money Intermediate

DeFi = Decentralized Finance

Traditional finance needs banks, brokers, and middlemen. DeFi replaces them with smart contracts — code that automatically executes financial functions when conditions are met. No human approval required.

Real-world analogy A vending machine is a smart contract. You put in money, select a snack, the machine executes the trade automatically. No cashier. No manager approval. The rules are built into the machine. DeFi is that concept applied to loans, trading, and earning yield.

The main DeFi categories

DEX

Decentralized Exchange. Trade tokens directly without a company in the middle. Aerodrome (from that app store) is a DEX.

Lending

Supply assets to earn interest, or borrow against your holdings. Aave, Compound. No credit check — it's all collateral-based.

Liquidity Pools

You deposit two assets (e.g., ETH + USDC) and earn fees when others trade through your pool. This is yield farming.

Stablecoins

Tokens pegged to $1. Used throughout DeFi as the "safe" asset. USDC, USDT, DAI are the main ones.

How liquidity pools work (simplified)

When you use a DEX to swap ETH for USDC, you're not trading with another person. You're trading with a pool — a pile of tokens deposited by liquidity providers (LPs). The LPs earn a small percentage of every trade that flows through.

The more volume through a pool, the more LPs earn. This is why Aerodrome on Base has become significant — it handles a huge amount of trading volume, meaning LPs earn meaningful fees.

The risk: Impermanent Loss
If you provide liquidity and the price of one asset moves significantly vs. the other, you can end up with less value than if you'd just held both assets separately. This is called impermanent loss — worth learning before providing liquidity.
07 / 08

How Crypto Gets Its Value Intermediate

Supply and demand — but with nuance

At the most basic level, crypto prices are supply and demand like anything else. But the mechanics underneath are different from stocks. There's no earnings report, no dividends, no PE ratio.

What actually drives value

  • Utility: Does the network do something people need? ETH gets demand because you need it to use Ethereum apps. LINK gets demand because protocols pay to use Chainlink's oracle data.
  • Scarcity: BTC has a hard cap of 21 million coins. Ever. That programmed scarcity is baked into the code.
  • Network effects: The more people and projects building on a blockchain, the more valuable the native coin becomes (more demand for gas fees).
  • Narrative: Crypto markets are heavily sentiment-driven. A credible catalyst (an ETF approval, a major partnership) can move prices dramatically before any fundamentals change.
  • Token unlocks: If a project's team and investors are about to have locked tokens released, supply increases — and price often drops. This is why you're tracking MON's November unlock closely.

TAO and the AI narrative

TAO's value thesis is narrative-driven right now: Bittensor is building decentralized AI compute infrastructure. Its value is tied to the belief that AI inference and training will eventually happen on decentralized networks rather than AWS/Microsoft Azure. The Grayscale ETF catalyst you're watching would bring institutional capital into that narrative — similar to what happened with BTC when spot ETFs launched.

Your edge
Understanding the "why" behind each position is what separates a disciplined investor from someone just chasing charts. You already built thesis entries in SolWorks. That habit is worth more than any technical indicator.
08 / 08

Putting It Together: Your Next Level Advanced

The full stack, visualized

Layer 1 — Bitcoin, Ethereum, Solana, Bittensor (the base blockchains)
↓ built on top
Layer 2 — Base, Arbitrum, Optimism (faster/cheaper, inherit L1 security)
↓ runs on top
DeFi / Apps — DEXs, lending protocols, yield farms, NFTs
↓ uses
Wrapped assets, stablecoins, bridges — the connective tissue

What to explore next (in order)

  • Bridge a small amount to Base — $5–10. Feel the process. Watch the gas. See how the transaction looks on a block explorer (basescan.org). This clicks everything into place faster than any reading.
  • Set up a MetaMask wallet — just to understand self-custody. You don't have to move real funds. Just create one, write down the seed phrase, understand what you're holding.
  • Read a block explorer — Go to etherscan.io and paste any ETH address. You'll see every transaction, every token, every contract interaction. It's the blockchain made readable.
  • Understand one smart contract interaction — Try a token swap on Uniswap or Aerodrome with a small amount. Watch what approvals you sign, what the gas costs, how long it takes.
  • Track impermanent loss math — Before ever providing liquidity, build a spreadsheet that models it. Given how you think, you'll want to see the numbers before risking real capital.

How this connects to SolWorks Phase 3+

Once you understand on-chain data — wallet activity, liquidity pool depths, token unlock schedules — you can start incorporating it into SolWorks as signals. That's the kind of edge most retail investors never build.

The autodidact advantage
You don't need a finance degree for this. You need curiosity, a system, and the discipline to learn one layer at a time. You already have all three.

Terms cheat sheet

Gas

Fee paid to the network to process a transaction. Paid in the native coin (ETH on Ethereum).

Smart Contract

Self-executing code on the blockchain. Runs automatically when conditions are met.

Liquidity

How easily an asset can be bought or sold. Low liquidity = big price swings on large trades.

Peg

When an asset is designed to stay equal to something else (like USDC = $1). If it "depegs," that's a crisis.

TVL

Total Value Locked. How much money is sitting in a DeFi protocol. Measures size and trust.

Oracle

A service that feeds real-world data (like price) into smart contracts. Chainlink (LINK) is the biggest oracle network.