Web3 Fundamentals

Beginner11 min readLesson 15 of 166

Every time you trade crypto, you are participating in Web3 — a version of the internet where value, identity and ownership live on public blockchains instead of inside corporate databases. Understanding this shift is not optional theory: it explains why a token can be censorship-resistant, why a wallet seed phrase is the most dangerous string of words you will ever hold, and why some 'decentralized' projects are anything but. This lesson builds Web3 from first principles, then connects each idea to decisions you will actually make as a trader.

From Web1 to Web3: what actually changed

The web has gone through three broad eras. Web1 (roughly 1990–2004) was the 'read' web: static HTML pages, personal homepages, and almost no way for ordinary people to publish at scale. You consumed information but rarely created it, and you owned nothing on the page in front of you. It was open and decentralized in spirit but technically primitive.

Web2 (roughly 2004–today) is the 'read-write' web: Facebook, YouTube, Twitter/X, Uber, and Gmail. You can publish, comment and transact instantly — but the platform owns your data, your account, and the relationship with your audience. The trade-off is convenience for control. A platform can deplatform you, change the rules, freeze your funds, or sell your attention to advertisers. The value you create accrues mostly to the company, not to you.

Web3 is the proposed 'read-write-own' web. The core innovation is that ownership and state are recorded on public blockchains that no single company controls. A token, an NFT, a loan position, or a username can belong to you in a way that is cryptographically verifiable and that no intermediary can silently revoke. Web3 does not replace the entire internet — your news site and your email still run on Web2 servers — but it adds a settlement and ownership layer underneath applications that need trust without a trusted middleman.

The three eras of the web
Web1
read · static pages
Web2
read-write · platforms own data
Web3
read-write-own · users own assets

It helps to be precise about the word 'decentralized,' because the industry abuses it constantly. Decentralization is a spectrum, not a switch. Bitcoin is highly decentralized at the consensus layer (tens of thousands of nodes, no CEO). A token that trades on a blockchain but whose contract can be upgraded or frozen by a single multisig wallet is only superficially Web3. As a trader, learning to read where a project actually sits on that spectrum is one of the most valuable skills you can develop.

The settlement layer: blockchains and trustless ownership

A blockchain is an append-only ledger replicated across many independent computers (nodes). Transactions are grouped into blocks; each block contains a cryptographic hash of the previous block, which chains them together. Changing an old transaction would change its block's hash, which would break every block after it — so tampering is detectable and, on a large network, economically infeasible. This is what people mean when they call a blockchain 'immutable.'

How blocks chain together
Block #1
Genesis
hash:1117
Block #2
Block #1
hash:2234
Block #3
Block #2
hash:3351
Block #4
Block #3
hash:4468

The breakthrough is that this lets strangers agree on who owns what without trusting a bank or a government. Bitcoin, launched in January 2009, was the first working example: a fixed supply capped at 21 million BTC, issued through mining, settled by a global network rather than a central issuer. Ownership is controlled by private keys — secret numbers that produce digital signatures. If you can sign, you own the coins. There is no password reset and no support desk.

Different chains make different trade-offs between decentralization, security and speed — the so-called blockchain trilemma. Bitcoin optimizes for security and decentralization and processes roughly 7 transactions per second on its base layer. Ethereum, launched in 2015, added a programmable virtual machine so developers could deploy smart contracts (self-executing code), at a base-layer throughput of around 15–30 transactions per second. Solana, launched in 2020, optimizes for raw speed and low fees, regularly handling thousands of transactions per second, at the cost of higher hardware requirements for validators and a smaller node set.

ChainLaunchedConsensusNative assetRough base TPSOptimizes for
Bitcoin2009Proof of WorkBTC~7Security, decentralization
Ethereum2015Proof of Stake (since 2022)ETH~15–30Programmability, security
Solana2020Proof of Stake + PoHSOL1,000sSpeed, low fees

Consensus is how a decentralized network agrees on the next block. The two dominant models are Proof of Work (PoW), where miners spend electricity to solve a puzzle, and Proof of Stake (PoS), where validators lock up capital and lose it if they cheat. Ethereum switched from PoW to PoS in September 2022 (an event called The Merge), cutting its energy use by roughly 99.9%. Knowing which model a chain uses tells you something about its security model, its inflation schedule, and its regulatory risk profile.

Proof of Work vs Proof of Stake
Proof of Work
  • Security from electricity + hardware
  • Miners compete to solve a hash puzzle
  • High energy use
  • Bitcoin, Litecoin, Dogecoin
  • New issuance via block rewards
Proof of Stake
  • Security from staked capital
  • Validators chosen by stake weight
  • ~99.9% less energy
  • Ethereum, Solana, Cardano
  • Cheaters lose (slash) their stake

The Web3 stack: Layer 1, Layer 2 and applications

Because base layers are slow and expensive when busy, Web3 has organized itself into a layered stack. The bottom layer (Layer 1, or L1) is the blockchain that provides final settlement and security — Ethereum, Bitcoin, Solana. On top of Ethereum sit Layer 2 networks (L2s) such as Arbitrum, Optimism and Base, which batch many transactions off-chain and post compressed proofs back to the L1. This lets users transact for cents while still inheriting Ethereum's security. After Ethereum's Dencun upgrade in March 2024 introduced 'blobs,' typical L2 fees fell from dollars to fractions of a cent.

The Web3 stack
Applications (DEXs, lending, NFTs)
what users touch
Layer 2 (Arbitrum, Base, Optimism)
cheap, fast execution
Layer 1 (Ethereum, Solana, Bitcoin)
security & final settlement

On top of these layers live the applications. Decentralized exchanges (DEXs) like Uniswap let you swap tokens without an order book by trading against automated liquidity pools. Lending protocols like Aave let you borrow against collateral with no credit check. Stablecoins like USDC and USDT carry dollar value on-chain. Collectively, applications that handle money without intermediaries are called DeFi — decentralized finance. The promise is permissionless access: anyone with a wallet and an internet connection can participate, 24/7, with no account approval.

  • DEXs — swap tokens peer-to-pool (Uniswap, Jupiter on Solana)
  • Lending — borrow and lend against collateral (Aave, Compound)
  • Stablecoins — tokens pegged to fiat (USDC, USDT, DAI)
  • Bridges — move assets between chains (often the riskiest piece)
  • NFTs — unique on-chain ownership records (art, identity, game items)

For a trader, the stack matters practically. Liquidity and listings often appear on L2s and alternative L1s before they reach centralized exchanges, so understanding which chain a token lives on tells you where to find the deepest market and the lowest fees. It also tells you about risk: a token bridged across three chains has more attack surface than a native asset, and bridge hacks have cost the industry billions of dollars.

Wallets, keys and self-custody

In Web2, your identity is an email and password stored on a company's server. In Web3, your identity is a key pair. A wallet generates a private key (a secret) and a public key (an address others can send to). The famous 'seed phrase' — usually 12 or 24 words — is a human-readable backup of your private keys. Whoever holds the seed phrase controls the funds, full stop. This is the meaning of the phrase 'not your keys, not your coins.'

Wallets come in two broad types. Hot wallets (MetaMask, Phantom, exchange apps) are connected to the internet — convenient for active trading but more exposed to malware and phishing. Cold wallets (hardware devices like Ledger or Trezor, or paper backups) keep keys offline — far safer for long-term holdings but slower to use. Most experienced traders split holdings: a small balance hot for trading, the bulk cold for storage.

Hot wallet vs cold wallet
Hot wallet
  • Always online
  • Fast for trading & DeFi
  • Higher exposure to hacks/phishing
  • MetaMask, Phantom, exchange apps
  • Best for small, active balances
Cold wallet
  • Keys stay offline
  • Slower, deliberate to use
  • Strong protection from remote attacks
  • Ledger, Trezor, paper backup
  • Best for long-term holdings
Your seed phrase is the whole game

No legitimate person, support agent, airdrop, or 'wallet validation' site will ever need your seed phrase. Anyone who asks for it is stealing your funds. Never type it into a website, never store it in a screenshot or cloud note, and never share it. Blockchain transactions are irreversible — there is no chargeback, no fraud department, and no way to recover stolen funds. Self-custody means you are your own bank, including your own security team.

Self-custody also means understanding the alternative: custodial accounts. When you leave funds on a centralized exchange, you hold an IOU, not the coins themselves. The exchange holds the keys. This is convenient and often necessary for fiat on-ramps and active trading, but it carries counterparty risk that became brutally concrete in November 2022, when FTX — then one of the largest exchanges in the world — collapsed and froze customer withdrawals after misusing deposits. Customers who had self-custodied were unaffected; those who trusted the exchange lost access overnight.

Tokens, tokenomics and how value is structured

A token is a unit of value or rights recorded on a blockchain. Native coins like BTC, ETH and SOL pay for transaction fees and secure the network. Most other tokens are smart-contract tokens following standards like ERC-20 (fungible tokens on Ethereum) or ERC-721 (non-fungible tokens, NFTs). Tokens can represent governance votes, a share of protocol fees, access to a service, or pure speculation. The term 'tokenomics' describes how a token's supply, distribution and incentives are designed.

Supply structure is a first-order driver of price. Bitcoin has a hard cap of 21 million and a 'halving' every four years that cuts new issuance in half — the most recent occurred in April 2024, dropping the block reward from 6.25 to 3.125 BTC. Ethereum has no hard cap but burns a portion of every transaction fee (since the EIP-1559 upgrade in 2021), which can make ETH net-deflationary during periods of high usage. Many newer tokens, by contrast, unlock large allocations to insiders over time, creating persistent sell pressure.

Example token allocation (illustrative)
  • Community & ecosystem40%
  • Team20%
  • Investors18%
  • Treasury12%
  • Liquidity10%

When you evaluate a token, separate two numbers that beginners constantly confuse. Circulating supply is the number of tokens currently tradable; total or fully diluted supply includes tokens that will be unlocked later. A token can look 'cheap' on price alone while having a fully diluted valuation (FDV) in the tens of billions because most supply has not yet hit the market. Reading the unlock schedule before buying is basic due diligence — large unlocks are recurring, predictable sources of downward pressure.

Token typeExamplePrimary purpose
Native L1 coinBTC, ETH, SOLPay fees, secure network
StablecoinUSDC, USDT, DAIHold/transact dollar value on-chain
Governance tokenUNI, AAVEVote on protocol changes
Utility tokenLINKPay for a specific service
NFT (ERC-721)Art, identity, game itemsUnique, non-fungible ownership
ResistanceSupportHexaTrades
Stylized token chart: insider unlocks often coincide with supply-driven sell-offs into resistance.

How a trader actually uses Web3 knowledge

Web3 fundamentals are not abstract — they change how you size risk on every trade. First, custody: decide consciously what stays on an exchange versus in self-custody, and never hold more on a centralized platform than you are willing to lose to a counterparty failure. The FTX collapse and the broader 2022 deleveraging punished traders who treated exchanges as risk-free vaults.

Second, chain and contract awareness. Before you ape into a token, check what chain it is on, whether the contract has been audited, whether liquidity is locked, and who can mint new tokens. A token whose contract lets the deployer mint unlimited supply or block your sells is a 'honeypot' or rug-pull waiting to happen. On-chain explorers like Etherscan and Solscan let you verify these things in minutes.

  1. 1Confirm the chain and the official contract address (beware fake copies with the same ticker).
  2. 2Check circulating vs fully diluted supply and the unlock schedule.
  3. 3Verify liquidity depth and whether liquidity is locked.
  4. 4Read who controls the contract — multisig, single key, or renounced ownership.
  5. 5Decide custody: trading balance hot, long-term balance cold.

Third, understand peg and protocol risk. 'Stable' does not mean risk-free. In May 2022, the algorithmic stablecoin UST (TerraUSD) lost its dollar peg and collapsed to near zero within days, wiping out roughly $40 billion and dragging the sister token LUNA down with it. The lesson: a stablecoin is only as good as its collateral and its redemption mechanism. Fiat-backed, audited stablecoins behave very differently from algorithmic ones, and a trader should never assume the peg holds under stress.

Finally, treat positive structural catalysts the same way you treat negative ones. The approval of US spot Bitcoin ETFs in January 2024 and spot Ethereum ETFs later that year opened regulated, large-scale demand channels and is a structural reason institutional flows now influence crypto markets. Understanding the plumbing — who can custody, who can buy, and through what wrapper — helps you anticipate where demand and liquidity will concentrate next.

Build the habit of on-chain verification

For any new token, open the block explorer first and the price chart second. Two minutes of checking the contract, supply and liquidity prevents the most common and most expensive beginner mistakes: buying a fake contract, a honeypot, or a token about to face a massive unlock.

Key takeaways

  • Web3 = read-write-OWN: ownership and state live on public blockchains, not corporate servers.
  • Decentralization is a spectrum — verify who controls a contract before trusting 'decentralized' claims.
  • Not your keys, not your coins: self-custody means you control the seed phrase and the responsibility.
  • Never share or type your seed phrase anywhere; transactions are irreversible and there is no support desk.
  • Check circulating vs fully diluted supply and unlock schedules before buying any token.
  • Stablecoins are not risk-free — UST (2022) and FTX (2022) prove peg risk and counterparty risk are real.

Practical exercises

  1. 1Install a non-custodial wallet (e.g. MetaMask or Phantom) on a test device, write the seed phrase on paper, and practice receiving a tiny amount. Never store the phrase digitally.
  2. 2Pick one token and use a block explorer (Etherscan or Solscan) to find its contract address, circulating supply, holder distribution, and whether ownership is renounced.
  3. 3Compare two tokens' tokenomics: find each one's circulating supply, fully diluted valuation, and next major unlock date, then write one sentence on which has more near-term sell pressure.
  4. 4Draw the Web3 stack from memory (L1, L2, applications) and place three real protocols you use or have heard of into the correct layer.

Test your knowledge

1. What is the defining feature of Web3 compared to Web2?

2. What does the phrase 'not your keys, not your coins' mean?

3. How did Ethereum change its consensus in September 2022 (The Merge)?

4. Why is a token's fully diluted valuation (FDV) important to check?

5. What key lesson did the May 2022 collapse of UST (TerraUSD) teach traders?

Frequently asked questions

Not exactly. Crypto (tokens and coins) is the asset layer, while Web3 is the broader vision of an internet where ownership, identity and applications run on decentralized blockchains. All Web3 uses crypto rails, but Web3 also includes things like decentralized storage, identity and governance, not just trading tokens.

Ready to apply this with real-time signals and a 40,000+ trader community?