Learn Bitcoin & Crypto

Type a question or pick a topic below.

Term of the day

Ledger vs. Trezor vs. Coldcard Compared

Ledger (Nano S Plus $79, Nano X $149): supports 5,500+ tokens, secure element chip, closed-source firmware, Bluetooth option. Trezor (Safe 3 $79, Model T $219): open-source firmware, supports 1,000+ tokens, no secure element (different security model), touchscreen on premium model. Coldcard (Mk4 $150): Bitcoin-only, fully air-gapped (no USB data), open-source, maximum Bitcoin security. Choose Ledger for multi-chain, Trezor for open-source transparency, Coldcard for Bitcoin maximalism.

Read today's term

Not sure where to start?

Tell us who you are and we'll line up a reading path in the right order.

Start from zero. What crypto is, how to hold it safely, and how to avoid getting scammed.

  1. 1What Is Bitcoin?
  2. 2What Is a Blockchain?
  3. 3What Is a Seed Phrase?
  4. 4What Is Self-Custody?
  5. 5What Is a Hardware Wallet?
  6. 6What Is a Rug Pull?

All Topics

Resources

Bitcoin & Base-Layer Fundamentals

How Bitcoin actually works: blocks, transactions, halvings, SegWit, Taproot, and the protocol rules that make it tick.

16

What Is Bitcoin?

Bitcoin is a decentralized digital currency that allows peer-to-peer transactions without banks or intermediaries. It runs on a public ledger called a blockchain, secured by cryptographic proof-of-work mining, with a hard supply cap of 21 million coins.

What Is Proof of Work?

Proof of work is a consensus mechanism where miners expend computational energy to solve a cryptographic puzzle, proving they did real work before they can add a new block to the blockchain. It prevents spam and double-spending without a central authority.

What Is a Bitcoin Halving?

A Bitcoin halving is a programmed event that cuts the block reward miners receive in half every 210,000 blocks (roughly every four years). It enforces Bitcoin's disinflationary supply schedule, reducing the rate of new coin creation until the 21 million cap is reached.

What Is the Bitcoin Block Reward?

The block reward is the newly minted Bitcoin a miner receives for successfully adding a valid block to the blockchain. It currently stands at 3.125 BTC per block (since April 2024) and is the primary mechanism through which new Bitcoin enters circulation.

What Is a Bitcoin Block?

A Bitcoin block is a batch of verified transactions bundled together and added to the blockchain approximately every 10 minutes. Each block contains a header (with the previous block's hash, a timestamp, and a nonce) and a body (the transactions themselves), forming a tamper-evident chain.

What Is a UTXO (Unspent Transaction Output)?

A UTXO is an unspent transaction output, a discrete chunk of Bitcoin that has been received but not yet spent. Bitcoin doesn't use account balances; instead, your "balance" is the sum of all UTXOs your private key can spend, like having specific bills in a wallet rather than a bank balance.

What Is Bitcoin's 21 Million Supply Cap?

Bitcoin's code enforces a hard cap of 21 million coins that can ever exist. This limit is achieved through the halving schedule, cutting the block reward in half every 210,000 blocks, creating a geometric series that converges on 21 million by approximately 2140.

What Is a Bitcoin Address?

A Bitcoin address is a short alphanumeric string (26-62 characters) derived from your public key that serves as a destination for receiving Bitcoin. It is not your public key itself, it is a hashed, encoded version with a built-in checksum to prevent typos.

What Are Bitcoin Transaction Confirmations?

A confirmation is each new block added to the blockchain after the block containing your transaction. One confirmation means your transaction is in the latest block; six confirmations (the common security threshold) means five additional blocks have been mined on top of it, making reversal computationally impractical.

What Is SegWit?

SegWit (Segregated Witness) is a Bitcoin protocol upgrade activated in August 2017 that separates transaction signature data (the "witness") from the main transaction body. This fixes transaction malleability, enables Layer 2 solutions like Lightning, and effectively increases block capacity without changing the block size limit.

What Is Taproot?

Taproot is a Bitcoin upgrade (activated November 2021) that uses Schnorr signatures and MAST (Merkelized Alternative Script Trees) to make complex transactions look identical to simple ones on-chain. It improves privacy, reduces fees for multi-signature and smart contract transactions, and enables more expressive scripting.

What Is a Bitcoin Full Node vs. a Light Client?

A full node downloads and validates the entire blockchain (500+ GB), independently verifying every transaction and block against consensus rules. A light client (SPV client) only downloads block headers and trusts full nodes to confirm transaction inclusion, faster and lighter but less trustless.

What Is the Bitcoin Mempool?

The mempool (memory pool) is each Bitcoin node's waiting room for unconfirmed transactions. When you broadcast a transaction, it sits in mempools across the network until a miner includes it in a block. Miners typically select transactions with the highest fee rates first.

What Is a Bitcoin Difficulty Adjustment?

The difficulty adjustment is Bitcoin's self-regulating mechanism that recalibrates the mining difficulty every 2,016 blocks (~2 weeks) to keep the average block time at approximately 10 minutes, regardless of how much total hash power is on the network.

What Is a Coinbase Transaction?

A coinbase transaction is the first transaction in every Bitcoin block, the one that creates new coins out of nothing and pays the miner their block reward. It has no inputs (no coins being spent); it creates outputs from the protocol's emission schedule plus collected transaction fees.

What Is Bitcoin Script?

Bitcoin Script is a simple, stack-based programming language used to define the conditions under which Bitcoin can be spent. It is intentionally not Turing-complete, it cannot loop, which makes it predictable, auditable, and prevents denial-of-service attacks on the network.

Blockchain & Consensus

The mechanics of agreement: proof of work, proof of stake, forks, finality, and why thousands of computers can agree on one truth.

14

What Is a Blockchain?

A blockchain is a distributed, append-only ledger of transactions grouped into blocks, where each block is cryptographically linked to the previous one. This structure makes the recorded history tamper-evident and verifiable by anyone without trusting a central authority.

What Is Proof of Stake?

Proof of stake is a consensus mechanism where validators lock up (stake) cryptocurrency as collateral to earn the right to propose and attest to new blocks. Validators who act honestly earn rewards; those who act maliciously lose part of their stake (slashing). It replaces energy expenditure with economic commitment.

What Is a Fork (Hard vs. Soft)?

A fork is a change to a blockchain's protocol rules. A soft fork tightens rules (old nodes still accept new blocks). A hard fork loosens or changes rules (old nodes reject new blocks), potentially splitting the network into two separate chains if not all participants upgrade.

What Is a 51% Attack?

A 51% attack occurs when a single entity controls more than half the network's mining power (PoW) or staking weight (PoS), allowing them to rewrite recent blockchain history, enabling double-spending, transaction censorship, or blocking confirmations. It does not let them steal coins from other addresses or create coins beyond protocol rules.

What Is a Consensus Mechanism?

A consensus mechanism is the set of rules a blockchain uses to get all participants to agree on the current state of the ledger without a central authority. It determines who can add new blocks, how conflicts are resolved, and what makes the system secure against manipulation.

What Is a Block Explorer?

A block explorer is a web-based tool that lets anyone browse and search a blockchain's data, blocks, transactions, addresses, and smart contracts, in a human-readable format. It's the public window into an otherwise raw, binary ledger.

What Is a Hash Function (Plain Language)?

A hash function takes any input (a file, a transaction, a password) and produces a fixed-size output (the hash or digest) that acts as a unique fingerprint. It's a one-way function: easy to compute the hash from input, practically impossible to reverse-engineer the input from the hash.

What Is a Merkle Tree?

A Merkle tree is a data structure that efficiently summarizes and verifies large sets of data by recursively hashing pairs of items until a single root hash remains. In blockchains, it lets anyone prove a specific transaction is included in a block without downloading the entire block.

What Is Finality in a Blockchain?

Finality is the guarantee that a transaction, once confirmed, cannot be reversed, altered, or removed from the ledger. Different blockchains offer different finality guarantees, from probabilistic (Bitcoin: increasingly unlikely to reverse with each block) to absolute (some PoS chains: mathematically impossible to reverse after a specific point).

What Is a Chain Reorg?

A chain reorganization (reorg) occurs when a node discovers a longer or heavier valid chain and switches to it, abandoning the blocks it previously considered canonical. Transactions in orphaned blocks return to the mempool. Reorgs are a normal (if rare) occurrence in probabilistic-finality systems.

What Is a Validator?

A validator is a network participant that proposes and/or attests to new blocks in a proof-of-stake blockchain. Validators stake cryptocurrency as collateral, run node software, and earn rewards for honest participation. If they misbehave (double-signing, extended downtime), their stake is slashed.

What Is Slashing?

Slashing is an automated penalty mechanism in proof-of-stake systems that destroys a portion of a validator's staked collateral when they commit a provably malicious act, such as signing two conflicting blocks or making contradictory attestations. It makes attacks economically self-destructive.

What Is a Genesis Block?

The genesis block is the very first block in a blockchain, block number 0 (or 1, depending on the chain). It is hardcoded into the node software, has no previous block to reference, and serves as the foundation on which the entire chain is built. Every blockchain has exactly one genesis block.

What Is Decentralization Actually Measured By?

Decentralization is the degree to which a blockchain's control, validation, and development are distributed across independent parties rather than concentrated in one or few entities. It's not a binary state but a spectrum, measured across multiple dimensions: validator distribution, client diversity, geographic spread, governance, and economic concentration.

Keys, Wallets & Self-Custody

Your keys, your crypto. Private keys, seed phrases, hardware wallets, and everything about keeping your assets safe.

16

What Is a Private Key?

A private key is a secret 256-bit number that gives you, and only you, the ability to spend the cryptocurrency associated with its corresponding public address. Whoever knows this number controls the funds. There is no password reset, no customer support, and no recovery if it is lost or exposed.

What Is a Seed Phrase?

A seed phrase (also called a recovery phrase or mnemonic) is a sequence of 12 or 24 ordinary English words that encodes your master private key. The single backup for all accounts in your wallet, write it down on paper, store it safely, and you can recover all your funds on any compatible wallet software if your device is lost or destroyed.

What Is a Hardware Wallet?

A hardware wallet is a dedicated physical device that stores your private keys in a secure chip, isolated from your computer and the internet. Transactions are signed inside the device itself, your keys never touch a network-connected machine, making them immune to malware, phishing, and remote hacking.

What Is a Hot Wallet vs. a Cold Wallet?

A hot wallet is connected to the internet and ready for immediate transactions (phone apps, browser extensions). A cold wallet is kept offline and only connects briefly to sign transactions (hardware devices, paper wallets, air-gapped computers). The tradeoff is convenience versus security, hot for spending, cold for saving.

What Is Self-Custody?

Self-custody means you personally hold the private keys to your cryptocurrency, no exchange, no bank, no intermediary has access to or control over your funds. You are the sole party who can authorize transactions. This gives you full sovereignty over your assets but also full responsibility for their security.

What Is a Public Key?

A public key is a cryptographic value derived from your private key through one-way elliptic curve multiplication. It can be shared freely, anyone can use it to verify your digital signatures and derive your wallet address. Unlike your private key, exposing your public key does not compromise your funds.

What Is a Wallet Address Derivation Path?

A derivation path is the specific route a wallet takes to generate individual private keys from your master seed. It follows a standard notation (like m/44'/60'/0'/0/0) that tells the wallet which coin, account, and address index to derive. Different paths produce entirely different addresses from the same seed phrase.

What Is a BIP-39 Word List?

The BIP-39 word list is a standardized set of exactly 2,048 English words from which seed phrases are constructed. Each word maps to an 11-bit number (0-2047), making a 12-word phrase encode 128 bits of entropy plus a 4-bit checksum. The list was carefully curated so that no two words share the same first four letters, reducing transcription errors.

What Is a Watch-Only Wallet?

A watch-only wallet lets you monitor an address's balance and transaction history without holding the private key needed to spend from it. You can see all incoming and outgoing activity, but you cannot sign or broadcast transactions. It is a read-only view of on-chain activity.

What Is an Air-Gapped Wallet?

An air-gapped wallet is a signing device that has never connected and will never connect to the internet or any networked device via cable. It communicates transaction data only through physically isolated channels, typically QR codes displayed on screen or microSD cards, eliminating any digital attack surface between the wallet and the outside world.

What Is a Passphrase (25th Word) on a Hardware Wallet?

A passphrase (sometimes called the "25th word") is an additional user-chosen string added to your seed phrase during key derivation. It creates an entirely separate set of wallets from the same 24 words, effectively a hidden wallet that only exists when the correct passphrase is entered. Without the passphrase, the hidden wallet is invisible and inaccessible.

What Is Wallet Software vs. a Wallet (The Account)?

Wallet software (MetaMask, Ledger Live, Trust Wallet) is the application you use to interact with the blockchain. The "wallet" in the ownership sense is your key pair, the private key and its associated addresses. You can use many different wallet apps to access the same wallet (key pair) because the wallet exists on the blockchain, not inside any particular app.

What Is a Custodial Wallet?

A custodial wallet is one where a third party (usually an exchange like Coinbase, Binance, or Kraken) holds the private keys on your behalf. You access your funds through a username and password, not a private key. This is convenient but means you trust the custodian with your assets, they control the keys, and ultimately, the funds.

What Is a Non-Custodial Wallet?

A non-custodial wallet is any wallet where you, and only you, hold the private keys. No company, service, or third party has access to your keys or the ability to move your funds. MetaMask, Trust Wallet, Ledger, and Trezor are all non-custodial. If you created a seed phrase during setup, you have a non-custodial wallet.

What Is a Smart Contract Wallet (Account Abstraction)?

A smart contract wallet is a wallet whose logic lives in a smart contract on the blockchain rather than being a simple externally owned account (EOA) controlled by a single private key. It can implement features impossible with traditional wallets: social recovery, spending limits, multisig approval, session keys, and gas sponsorship, while still being non-custodial.

What Is Social Recovery for a Wallet?

Social recovery is a wallet recovery mechanism where a group of pre-designated trusted parties (guardians) can collectively authorize a new signing key if you lose access to your wallet. No single guardian can access your funds alone, only a threshold (like 3-of-5) acting together can trigger recovery. It eliminates the "lose your seed phrase, lose everything" failure mode.

Smart Contracts & Ethereum

Programmable money: gas fees, the EVM, token standards, flash loans, MEV, and how Ethereum executes code on-chain.

14

What Is Gas?

Gas is the unit measuring computational effort required to execute operations on Ethereum. Every transaction consumes gas, from simple transfers (21,000 gas) to complex smart contract interactions (hundreds of thousands). You pay for gas in ETH, and the price fluctuates based on network demand. Gas prevents spam and compensates validators for processing your transactions.

What Is a Smart Contract?

A smart contract is a program stored on the blockchain that executes automatically when predetermined conditions are met. Once deployed, its code cannot be changed (unless specifically designed with upgrade mechanisms), and its execution is verified by every node on the network. It removes the need for a trusted intermediary by making the rules transparent and enforcement automatic.

What Is an L2 / Rollup?

A Layer 2 (L2) rollup is a separate blockchain that executes transactions off Ethereum mainnet (Layer 1) but posts compressed transaction data or proofs back to Ethereum for security. This gives users Ethereum-level security guarantees while reducing fees by 10-100x and increasing throughput, because the expensive verification work is shared across many transactions batched together.

What Is the EVM (Ethereum Virtual Machine)?

The EVM is the runtime environment that executes smart contract bytecode on Ethereum. It is a stack-based, Turing-complete virtual machine that runs identically on every Ethereum node, ensuring all nodes reach the same result for every transaction. The engine that makes Ethereum programmable, without it, Ethereum would only handle simple transfers like Bitcoin.

What Is a Token Standard (ERC-20 Explained Simply)?

ERC-20 is a standard interface that all fungible tokens on Ethereum follow. It defines a common set of functions (transfer, balanceOf, approve, transferFrom) so that any ERC-20 token works with any wallet, exchange, or DeFi protocol without custom integration. It is why you can trade thousands of different tokens on Uniswap with one interface, they all speak the same language.

What Is an NFT Standard (ERC-721/1155 Explained Simply)?

ERC-721 is the standard for non-fungible tokens (NFTs) on Ethereum, tokens where each one has a unique ID and is not interchangeable with another. ERC-1155 is a multi-token standard that handles both fungible and non-fungible tokens in one contract, reducing gas costs for collections. Together they define how unique digital ownership works on Ethereum.

What Is a Smart Contract Audit?

A smart contract audit is a systematic review of a contract's source code by independent security experts to identify vulnerabilities, logic errors, and potential exploits before deployment or before users deposit significant funds. Not a guarantee of safety, it reduces risk by catching known patterns of bugs, but no audit can certify code as perfectly secure.

What Is a Reentrancy Attack (Plain Language)?

A reentrancy attack exploits a smart contract that sends ETH or calls an external contract before updating its own state. The attacker's contract receives the ETH, immediately calls back into the vulnerable function (re-entering it), and withdraws again before the original transaction finishes updating the balance. This loop drains the contract's funds repeatedly in a single transaction.

What Is a Flash Loan?

A flash loan is an uncollateralized loan that must be borrowed and repaid within the same blockchain transaction. If the borrower fails to repay by the end of the transaction, the entire transaction reverts as if it never happened, meaning the lender faces zero risk. This enables arbitrage, liquidation, collateral swaps, and other complex operations without any upfront capital.

What Is MEV?

MEV (Maximal Extractable Value) is the profit that block producers (validators/miners) or specialized searchers can extract by reordering, inserting, or censoring transactions within a block. It includes front-running trades, sandwich attacks, and arbitrage, all made possible because block producers choose the order in which transactions execute.

What Is a Sequencer (In a Rollup)?

A sequencer is the entity in a Layer 2 rollup that receives user transactions, orders them, executes them, and publishes the results (plus compressed transaction data) to Ethereum L1. It provides fast confirmations (sub-second) by immediately processing transactions rather than waiting for L1 block inclusion. Most L2 sequencers are currently centralized, a single operator run by the rollup team.

What Is Calldata?

Calldata is the read-only input data attached to an Ethereum transaction that tells a smart contract which function to call and what arguments to pass. It is encoded as hexadecimal bytes following a specific ABI encoding scheme. For rollups, calldata is also the mechanism for posting compressed L2 transaction batches to Ethereum L1, making it a critical cost factor for L2 fees.

What Is a Precompiled Contract?

A precompiled contract is a special contract at a fixed Ethereum address whose logic is implemented natively in the client software (Go, Rust) rather than as EVM bytecode. They provide complex cryptographic operations (elliptic curve math, hashing, signature verification) at predictable, lower gas costs than equivalent EVM execution would require.

What Is Account Abstraction?

Account abstraction (AA) removes the rigid distinction between externally owned accounts (EOAs, controlled by private keys) and smart contract accounts. It allows any account to define custom validation logic, enabling features like social recovery, multisig, session keys, gas sponsorship, and batched transactions without requiring separate infrastructure for each. ERC-4337 is the leading standard implementing AA on Ethereum without protocol changes.

Exchanges, Liquidity & Trading

Where and how crypto gets traded: DEXs vs CEXs, AMMs, order books, slippage, and the plumbing behind every swap.

14

What Is a DEX?

A DEX (decentralized exchange) is a peer-to-peer marketplace running on smart contracts that lets you trade crypto directly from your own wallet, without depositing funds with a company, without creating an account, and without trusting a centralized intermediary. You maintain custody of your assets until the exact moment of the trade.

What Is a CEX?

A CEX (centralized exchange) is a company that operates a trading platform where you deposit your crypto, trade against other users via an order book managed by the company, and withdraw when you want. Coinbase, Binance, and Kraken are CEXs. They offer high speed and deep liquidity but require you to trust the company with custody of your funds.

What Is Liquidity?

Liquidity is how easily an asset can be bought or sold without significantly moving its price. High liquidity means large trades execute with minimal price impact (BTC/USD on major exchanges). Low liquidity means even moderate trades cause noticeable price swings (a small-cap token with thin order books). Liquidity is the lifeblood of functional markets.

What Is Impermanent Loss?

Impermanent loss is the difference in value between holding tokens in an AMM liquidity pool versus simply holding them in your wallet. When the price ratio of the pooled tokens changes, the pool automatically rebalances (selling the appreciating token and buying the depreciating one), leaving you with less value than if you had just held. The loss is called "impermanent" because the loss reverses if prices return to their original ratio.

What Is an Automated Market Maker (AMM)?

An AMM is a smart contract that creates a market for token pairs using pooled liquidity and a mathematical formula instead of a traditional order book. Anyone can trade against the pool at any time (24/7, permissionlessly), and anyone can provide liquidity to earn a share of trading fees. Uniswap, Curve, and Balancer are all AMMs.

What Is Slippage?

Slippage is the difference between the expected price of a trade and the actual execution price. It occurs because market conditions can change between when you submit a trade and when it executes (on DEXs: price impact from your trade size against available liquidity, plus front-running; on CEXs: order book movement between quote and fill).

What Is a Liquidity Pool?

A liquidity pool is a smart contract holding a pair (or set) of tokens deposited by liquidity providers, enabling trustless trading on a DEX. Traders swap against the pool rather than against other traders directly. LPs earn a proportional share of all trading fees generated by the pool in exchange for depositing their tokens and accepting impermanent loss risk.

What Is a Market Maker vs. a Market Taker?

A market maker adds liquidity to the order book by placing limit orders that wait to be filled (providing resting offers). A market taker removes liquidity by placing orders that fill immediately against existing offers (taking from the book). Makers reduce spread and improve depth; takers execute instantly but consume available liquidity. Most exchanges charge makers lower fees as incentive.

What Is Arbitrage in Crypto Markets?

Arbitrage is buying an asset on one venue where it is cheaper and simultaneously selling it on another where it is more expensive, profiting from the price difference with minimal directional risk. In crypto, arbitrage occurs between exchanges (CEX vs. CEX), between DEX pools, between chains, and between spot and derivatives markets. It serves an essential function: keeping prices consistent across the ecosystem.

What Is a Limit Order vs. a Market Order?

A market order executes immediately at the best available price, you prioritize speed over price. A limit order executes only at your specified price or better, you prioritize price over speed, accepting that it may never fill if the market does not reach your price. Every active trader needs to understand when each is appropriate.

What Is Margin Trading (Mechanics & Risk)?

Margin trading means borrowing funds from a platform to trade with more capital than you own, amplifying both gains and losses. If you put up $1,000 and borrow $4,000 (5x leverage), a 10% price increase makes you 50% profit, but a 20% decrease liquidates your entire $1,000 collateral. Margin is how fortunes are made and lost quickly in crypto.

What Is a Perpetual Futures Contract (Mechanics Only)?

A perpetual futures contract (perp) is a derivative that tracks the price of an underlying asset (like BTC) without an expiration date. Unlike traditional futures that settle on a specific date, perps can be held indefinitely. They stay anchored to spot price through a funding rate mechanism where longs pay shorts (or vice versa) periodically to prevent the perp price from diverging from spot.

What Is Funding Rate (Mechanics Only)?

The funding rate is a periodic payment between long and short traders on a perpetual futures contract that keeps the perp price anchored to the underlying spot price. When the perp trades above spot (indicating net-long sentiment), longs pay shorts. When it trades below spot, shorts pay longs. It is typically exchanged every 8 hours and expressed as a percentage of position size.

What Is an Order Book?

An order book is a real-time list of all outstanding buy orders (bids) and sell orders (asks) for an asset, organized by price level. It shows the depth of demand at each price, how many buyers at $59,900, how many sellers at $60,100, giving you a transparent view of market supply and demand before you trade.

Staking & Yield

Where the returns come from: staking, liquid staking, yield farming, and DeFi vaults broken down with real APY math.

9

What Is Staking?

Staking means locking up cryptocurrency as collateral to help secure a proof-of-stake blockchain. In return, you earn rewards (newly minted coins plus transaction fees). Your staked assets back the network's integrity: if a validator you delegate to misbehaves, a portion of the stake can be destroyed as punishment.

What Is Liquid Staking?

Liquid staking lets you stake your crypto and receive a tradeable receipt token (like stETH or rETH) that represents your staked position plus accruing rewards. You earn staking yield while keeping the ability to trade, lend, or use your assets in DeFi, instead of having them locked and illiquid during the staking period.

What Is a Staking Pool?

A staking pool combines deposits from many users to meet the minimum staking requirement and run validators collectively. Rewards are distributed proportionally to each contributor. Pools let you earn staking income without owning the full minimum (32 ETH for Ethereum) or running your own infrastructure.

What Is APY in Crypto (And How It Differs From Traditional Finance)?

APY (Annual Percentage Yield) in crypto is the projected yearly return on a staking or DeFi position, including the effect of compounding. A 5% APY means if you leave your crypto staked for a full year and rewards compound, you end up with 5% more than you started. The key difference from traditional finance: crypto APYs are variable, often change daily, and carry risks that bank savings accounts do not.

What Is an Unbonding/Unstaking Period?

The unbonding period is the mandatory waiting time between requesting to unstake your crypto and actually receiving it back in a spendable form. During this window, your tokens earn no rewards and cannot be transferred. It exists as a security measure to prevent attackers from quickly withdrawing stake after misbehaving.

What Is Delegated Staking?

Delegated staking lets you assign your staking weight to an existing validator without running your own node. You keep ownership of your tokens, earn a share of the validator's rewards (minus their commission), and can redelegate to a different validator if yours underperforms. The validator handles the technical work while you provide the economic stake.

What Is Yield Farming (Mechanics, Risk-Framed)?

Yield farming is providing capital to DeFi protocols in exchange for token rewards, typically by supplying liquidity, lending assets, or staking LP tokens in incentive programs. The high APYs advertised are usually temporary and paid in the protocol's own token, making the real return highly dependent on that token holding its value.

What Is a Vault (In the DeFi Sense)?

A DeFi vault is a smart contract that automatically manages a yield-generating strategy on your behalf. You deposit assets, the vault executes a pre-programmed strategy (auto-compounding, rebalancing, optimizing across protocols), and you earn yield without manual intervention. Yearn Finance popularized this pattern; Beefy, Sommelier, and others have expanded on it.

What Is a Validator Node (Staking Context)?

A validator node is a computer running blockchain client software that participates in block production and consensus on a proof-of-stake network. Running one requires a minimum stake deposit, reliable hardware, and consistent uptime. In return, the operator earns staking rewards plus transaction fees from the blocks they produce.

Stablecoins & Token Mechanics

How stablecoins keep their peg, why tokens have burns and vesting schedules, and the supply mechanics that move prices.

13

What Is a Stablecoin?

A stablecoin is a cryptocurrency designed to maintain a fixed value relative to a reference asset, usually the US dollar. One USDC or USDT is meant to always be worth $1. They exist because traders and DeFi users need a way to hold dollar-denominated value on-chain without converting back to traditional banking every time they want stability.

What Is a Fiat-Collateralized Stablecoin?

A fiat-collateralized stablecoin is backed 1:1 by real-world assets held in bank accounts or treasuries. For every token in circulation, the issuer claims to hold one dollar (or equivalent) in reserve. When you redeem, they burn the token and send you actual dollars. USDC (Circle) and USDT (Tether) are the largest examples.

What Is a Crypto-Collateralized Stablecoin?

A crypto-collateralized stablecoin is backed by cryptocurrency deposits locked in smart contracts, overcollateralized to absorb price swings. DAI is the primary example: you deposit $150 worth of ETH to mint $100 of DAI. If your collateral drops in value, you get liquidated to protect the system. No single company controls the issuance.

What Is an Algorithmic Stablecoin (And Why They Are Structurally Riskier)?

An algorithmic stablecoin attempts to maintain its peg through code-based supply expansion and contraction rather than holding real collateral. When the price rises above $1, new coins are minted (increasing supply, pushing price down). When it falls below $1, coins are burned or incentives redirect demand back. Most attempts have failed catastrophically, most notably Terra/UST in May 2022.

What Is a Stablecoin Peg?

The peg is the target price a stablecoin is designed to maintain, almost always $1.00 USD. The "peg holds" when the market price stays at or very near $1. It "depegs" when supply/demand pressure, loss of confidence, or mechanical failure pushes the price away from $1. How the peg is maintained depends on the stablecoin type: redemption arbitrage for fiat-backed, liquidation mechanics for crypto-backed, or algorithmic expansion/contraction.

What Is a Stablecoin Reserve Attestation?

A reserve attestation is a report by an independent accounting firm confirming that a stablecoin issuer holds enough assets to back all tokens in circulation at a point in time. Circle publishes monthly USDC attestations through Deloitte. It is not a full audit (which examines internal controls over a period), but a snapshot verification that reserves exist at report date.

What Is a Wrapped Token?

A wrapped token is a representation of an asset from one blockchain on a different blockchain. Wrapped Bitcoin (WBTC) is an ERC-20 token on Ethereum that is backed 1:1 by actual BTC held in custody. It lets you use Bitcoin's value in Ethereum DeFi (lending, trading, liquidity) without actually being on the Bitcoin network.

What Is a Governance Token?

A governance token gives holders voting power over a protocol's decisions: treasury spending, fee changes, new feature deployments, and parameter adjustments. Holding UNI lets you vote on Uniswap proposals. Holding AAVE lets you vote on Aave upgrades. The more tokens you hold, the more voting weight you carry. It is the DeFi equivalent of shareholder voting rights.

What Is Tokenomics (The Concept)?

Tokenomics is the study of a crypto token's economic design: how many tokens exist, how they are distributed, what creates demand for them, what controls supply over time, and how incentives align (or misalign) between the protocol and its users. Good tokenomics creates sustainable demand. Bad tokenomics creates unsustainable inflation and inevitable price collapse.

What Is Vesting (Token Unlock Mechanics)?

Vesting is a time-based schedule that restricts when early investors, team members, and advisors can sell their token allocations. Tokens are "locked" and release gradually over months or years (the vesting period), often with an initial cliff (a period before any tokens unlock). Vesting prevents mass sell-offs at launch and aligns early participants' incentives with long-term project health.

What Is Circulating Supply vs. Total Supply vs. Max Supply?

Circulating supply is how many tokens are freely tradeable right now. Total supply is all tokens that exist (including locked/vesting ones). Max supply is the maximum that will ever exist (some tokens have no max). These three numbers tell very different stories about a token's scarcity and future dilution. Market cap uses circulating supply; fully diluted valuation uses max supply.

What Is a Token Burn?

A token burn permanently removes tokens from circulation by sending them to an unrecoverable address (no one has the private key). Burns reduce total supply, making remaining tokens relatively scarcer. Ethereum burns the base fee of every transaction (EIP-1559). Binance quarterly burns BNB. Some protocols burn tokens as a percentage of fees collected.

What Is Token Supply (Fixed vs. Inflationary)?

A fixed-supply token has a hard cap on how many will ever exist (Bitcoin: 21 million, never more). An inflationary token continuously mints new coins (often as staking or mining rewards), growing supply over time. The supply model directly determines whether holding the token preserves your share of the network or dilutes it.

DAOs & Governance

Decentralized decision-making: proposals, on-chain voting, multisig wallets, timelocks, and how communities run protocols.

7

What Is a DAO?

A DAO (Decentralized Autonomous Organization) is an organization governed by smart contracts and token-holder votes rather than a traditional corporate board. Members propose and vote on decisions (spending treasury funds, changing protocol parameters, hiring contributors) using governance tokens. Rules are encoded in transparent, auditable smart contracts that execute automatically when votes pass.

What Is On-Chain Governance?

On-chain governance means proposals, votes, and execution all happen directly on the blockchain through smart contracts. When a vote passes, the result is enforced automatically by code, not by trusting someone to follow through. Every vote is publicly recorded, verifiable, and permanent. It contrasts with off-chain governance where votes are advisory and a separate entity executes decisions.

What Is a Governance Proposal?

A governance proposal is a formal submission to a DAO requesting a specific action: allocating treasury funds, changing protocol parameters, upgrading smart contracts, or establishing new policies. It typically includes a description of the change, its rationale, implementation details, and the on-chain actions that will execute if approved.

What Is Quorum (In DAO Voting)?

Quorum is the minimum amount of voting power that must participate in a governance vote for the result to be valid. If quorum is not reached, the proposal fails regardless of the approval ratio. A vote where 100% of participants approve still fails if only 2% of token supply voted and quorum is set at 5%. Quorum prevents tiny minorities from making binding decisions for the entire community.

What Is a Multisig (Mechanics)?

A multisig (multi-signature wallet) requires multiple private keys to authorize a transaction. Instead of one person having full control, a group of signers must collectively approve (e.g., 3-of-5 means any 3 of the 5 keyholders must sign). It distributes trust, prevents single points of failure, and is the standard for managing DAO treasuries, protocol admin keys, and high-value corporate holdings.

What Is a Timelock (Smart Contract Governance)?

A timelock is a smart contract that enforces a mandatory delay between when a governance action is approved and when it actually executes. If a malicious proposal passes, the timelock gives users and the community time to react (withdraw funds, organize opposition, or trigger emergency mechanisms) before the harmful action takes effect.

What Is Delegated Voting?

Delegated voting lets you assign your governance voting power to another address (a delegate) who votes on your behalf. You keep your tokens; they get your votes. If your delegate votes in ways you disagree with, you can redelegate to someone else or reclaim your votes at any time. It solves the participation problem in DAOs where most token holders do not actively vote.

NFTs & Digital Ownership

Beyond the hype: what NFTs actually are technically, how minting works, where the art lives, royalties, and soulbound tokens.

7

What Is an NFT?

An NFT (Non-Fungible Token) is a unique blockchain record that proves ownership of a specific digital item. Unlike Bitcoin or dollars (where each unit is identical and interchangeable), each NFT has a distinct identity and cannot be swapped 1:1 with another. They are used to represent ownership of art, music, domain names, game items, event tickets, and other unique assets.

What Is Metadata (In the NFT Context)?

NFT metadata is the JSON file describing what the NFT represents: its name, description, image URL, and any attributes or traits. The blockchain token itself stores only a pointer (tokenURI) to this metadata file. The metadata tells wallets and marketplaces how to display the NFT, what it looks like, and what properties make it unique within a collection.

What Is an NFT Mint?

Minting is the process of creating a new NFT on the blockchain. When you "mint," you call a smart contract function that assigns a new token ID to your address, permanently recording you as the first owner. This is how NFTs come into existence: from nothing to a unique on-chain record in one transaction.

What Is a Royalty (NFT Creator Royalties, Mechanics)?

An NFT royalty is a percentage of the sale price that automatically goes to the original creator every time the NFT is resold on a secondary market. Typically set at 2.5-10%, royalties give artists ongoing income as their work trades hands. However, royalty enforcement is not universal: some marketplaces honor them, others allow buyers to skip them.

What Is a Floor Price?

The floor price is the lowest price at which any NFT in a collection is currently listed for sale. If the cheapest Bored Ape available is listed at 25 ETH, the floor price is 25 ETH. It serves as a baseline valuation for the collection: you can always enter at the floor, and rare/desirable pieces trade above it.

What Is a Soulbound Token?

A soulbound token (SBT) is a non-transferable NFT permanently bound to a specific wallet address. Once received, it cannot be sold, traded, or moved to another wallet. SBTs represent credentials, achievements, or affiliations that should not be tradeable: university degrees, employment history, community membership, proof of attendance, or reputation scores.

What Is On-Chain vs. Off-Chain NFT Storage (And Why It Matters)?

On-chain storage means the NFT's media and metadata are stored directly in the smart contract (permanent but expensive). Off-chain means they are stored on external systems like IPFS, Arweave, or HTTP servers (cheaper but depend on those systems staying online). Where your NFT's actual content lives determines whether it will still exist in 10, 50, or 100 years.

Security & Risk

How to not get wrecked: rug pulls, phishing, honeypots, address poisoning, flash loan exploits, and what to watch for.

16

What Is a Rug Pull?

A rug pull is a scam where a project team builds hype, attracts investment (usually into a token or liquidity pool), then suddenly withdraws all funds and disappears. The rug is the liquidity or treasury that gets pulled from under investors. You are left holding worthless tokens with no buyers, no liquidity, and no recourse.

What Is a Phishing Attack (Crypto-Specific Mechanics)?

A crypto phishing attack tricks you into signing a malicious transaction, approving a drainer contract, or entering your seed phrase on a fake website. Unlike traditional phishing (stealing passwords), crypto phishing often needs just one signed transaction to permanently steal all your assets. There is no change password recovery because blockchain transactions are irreversible.

What Is a Seed Phrase Drainer / Approval Drainer?

A drainer is automated software that steals crypto from compromised wallets. Seed phrase drainers import stolen recovery phrases and sweep all assets across all chains within seconds. Approval drainers exploit token approvals you previously granted to malicious contracts, transferring your tokens without needing your seed phrase or private key at all.

What Is a Sybil Attack?

A Sybil attack is when one person creates many fake identities to gain disproportionate influence in a system designed for many independent participants. In crypto, this means creating hundreds of wallets to claim airdrops meant for unique users, manipulate governance votes, or game reward systems that distribute per-address rather than per-person.

What Is a Honeypot Contract?

A honeypot contract is a malicious smart contract designed to let you buy a token but prevent you from selling it. The contract code contains hidden restrictions that block sell transactions for everyone except the deployer. You can buy in (the price chart goes up, looking attractive), but when you try to sell, the transaction reverts. Only the scammer can extract value.

What Is a Smart Contract Exploit (The General Category)?

A smart contract exploit is any attack that abuses a bug, logic flaw, or unintended interaction in deployed smart contract code to steal funds or manipulate the protocol in ways its designers did not intend. Unlike phishing (which targets users), exploits target the protocol itself. The code does exactly what it was programmed to do, but that programming contains a vulnerability the attacker discovered.

What Is Address Poisoning?

Address poisoning is a scam where an attacker sends tiny transactions to your wallet from an address that looks almost identical to one you recently transacted with. When you later copy an address from your transaction history (instead of your contacts), you accidentally copy the attacker's look-alike address and send funds to them. It exploits the habit of copy-pasting from history rather than verifying the full address.

What Is a Fake Token / Spoofed Token?

A fake token is a smart contract deliberately named to impersonate a legitimate cryptocurrency (same name, same ticker symbol, even the same logo in some wallet UIs). Because anyone can deploy an ERC-20 with any name, scammers create fake USDC, PEPE, or ARB tokens and trick people into buying the worthless copy instead of the real one.

What Is a Pump-and-Dump Scheme (Mechanics, Informational)?

A pump-and-dump is a market manipulation scheme where insiders accumulate a cheap asset, artificially inflate its price through coordinated hype (the pump), then sell their holdings into the artificially high demand (the dump), crashing the price and leaving late buyers with losses. In crypto, this happens on micro-cap tokens, coordinated through Telegram groups and social media.

What Is Social Engineering (Crypto-Specific Framing)?

Social engineering in crypto is manipulating people (not code) into making security mistakes: giving up seed phrases, signing malicious transactions, sending funds to attackers, or downloading compromised software. The target is human psychology, not technical vulnerabilities. It is responsible for more dollar value stolen from individuals than smart contract exploits.

How to Spot a Pump-and-Dump (Detection Checklist)

Before buying any token promoted on social media, run through these checks: verify the contract on a scanner (Token Sniffer, honeypot.is), check holder concentration (top wallet should not hold more than 10%), confirm liquidity is locked and for how long, look for verified source code on Etherscan, and search for the team with verifiable identities. If more than two of these fail, walk away.

How to Secure Your Discord and Twitter From Crypto Scams

Turn off DMs from strangers in Discord server settings, enable two-factor authentication everywhere, never click links sent via DM (legitimate projects never DM you first), verify announcements only in official channels, and report/block fake accounts immediately. These five settings changes take two minutes and block 95% of crypto social media scams.

What Is a Dusting Attack?

A dusting attack sends tiny amounts of crypto (dust) to many wallet addresses to track their activity and potentially identify the owners. The attacker sends fractions of a cent to thousands of wallets, then monitors when those dust amounts are spent (combined with other UTXOs or tokens), linking previously unconnected addresses together. It is a surveillance technique, not a direct theft mechanism.

What Is Clipboard Hijacking?

Clipboard hijacking is malware that monitors your clipboard and automatically replaces crypto addresses when you copy-paste them. You copy a legitimate address from an exchange or friend, but when you paste it into your wallet send field, the malware has silently swapped it for the attacker address. You send funds to the wrong destination without realizing. It is one of the simplest and most effective crypto theft methods.

What Is a Drainer-as-a-Service?

Drainer-as-a-Service (DaaS) is a criminal business model where developers build and sell wallet-draining toolkits to less technical scammers for a revenue share (typically 20-30% of stolen funds). The buyer sets up phishing sites, the toolkit handles the technical exploitation: crafting malicious approvals, detecting wallet balances across chains, prioritizing high-value assets, and sweeping everything in one transaction. It has industrialized crypto theft.

What Is a Flash Crash (And How to Protect Your Positions)?

A flash crash is a sudden, extreme price drop (10-50% in minutes) followed by a rapid recovery. In crypto, they are caused by cascading liquidations, thin liquidity at key price levels, and algorithmic trading reactions compounding each other. If you have leveraged positions or tight stop-losses, a flash crash can wipe you out on a price that exists for only seconds before recovering. Protection requires: avoiding over-leverage, using wider stops, and understanding how liquidation cascades work.

Scaling & L2s

Making blockchains faster: rollups, sidechains, bridges, data availability layers, and the tradeoffs between them.

10

What Is a Sidechain?

A sidechain is a separate blockchain that runs alongside a main chain (like Ethereum) with its own consensus mechanism and validator set. It connects to the main chain through a bridge, letting you move assets back and forth. Unlike rollups, sidechains do NOT inherit the main chain's security. If the sidechain validators collude or go offline, your funds on that sidechain are at risk.

What Is an Optimistic Rollup (Mechanics)?

An optimistic rollup executes transactions off-chain and assumes they are valid by default (the "optimistic" part). It posts compressed transaction data to Ethereum L1, and anyone can challenge a result by submitting a fraud proof during a 7-day dispute window. If fraud is proven, the invalid batch is reverted. If no challenge occurs, the batch is finalized. Arbitrum and Optimism are the largest examples.

What Is a ZK Rollup (Mechanics)?

A ZK (Zero-Knowledge) rollup executes transactions off-chain and generates a cryptographic validity proof mathematically demonstrating that all state transitions are correct. This proof is verified on Ethereum L1 in a single operation. Because correctness is proven mathematically (not assumed), there is no challenge period: withdrawals can finalize as soon as the proof is verified on L1, typically within minutes to hours.

What Is a Fraud Proof?

A fraud proof is a cryptographic demonstration submitted to Ethereum L1 proving that an optimistic rollup sequencer published an incorrect state transition. If successful, the fraudulent batch is reverted and the sequencer is penalized. Fraud proofs are the security backbone of optimistic rollups: they make cheating unprofitable even though the system initially trusts submissions.

What Is a Validity Proof?

A validity proof is a cryptographic proof (ZK-SNARK or ZK-STARK) that mathematically guarantees a batch of transactions was computed correctly. Unlike fraud proofs (which assume honesty and check on complaint), validity proofs prove correctness upfront before L1 accepts the state update. They are what make ZK rollups possible: one proof verifies thousands of transactions in one cheap L1 check.

What Is a Bridge (Cross-Chain, Mechanics and Structural Risk)?

A bridge is a protocol that moves assets or data between two separate blockchains. You lock tokens on Chain A, and the bridge mints equivalent tokens on Chain B. When you want to go back, you burn on Chain B and unlock on Chain A. Bridges are the most attacked piece of crypto infrastructure because they hold concentrated pools of locked assets and connect systems with fundamentally different security models.

What Is Data Availability?

Data availability is the guarantee that all the transaction data needed to reconstruct a blockchain's state is actually accessible to anyone who wants to verify it. For rollups specifically, it means the compressed transaction data posted to L1 must be downloadable by any challenger or verifier. If that data is withheld, nobody can prove fraud or verify state transitions, breaking the security model.

What Is a Modular Blockchain (Structural Explainer)?

A modular blockchain separates the four core functions (execution, settlement, consensus, and data availability) into specialized layers rather than doing everything on one chain. Ethereum is becoming modular: L1 handles settlement/consensus/DA, rollups handle execution. Celestia is a dedicated DA layer. This specialization lets each layer be optimized independently, the way modern computers separate CPU, memory, and storage rather than putting everything on one chip.

What Is Interoperability (The General Concept Across Chains)?

Interoperability is the ability for different blockchains to communicate, share data, and transfer assets between each other without relying on centralized intermediaries. A fully interoperable crypto ecosystem would let you seamlessly use ETH on Solana, trade Bitcoin for Polygon tokens, or have a smart contract on one chain trigger an action on another.

What Is a Data Availability Layer?

A data availability (DA) layer is a specialized blockchain whose sole job is storing and serving the raw transaction data that rollups need for security verification. Instead of posting all data to expensive Ethereum L1 calldata, rollups can post to a cheaper dedicated DA layer (Celestia, EigenDA, Avail) that is optimized specifically for high-throughput data storage and sampling.

Mining, Nodes & Infrastructure

The physical layer: mining rigs, pools, hash rate, ASICs, full nodes, and the hardware that keeps blockchains running.

7

What Is a Mining Rig?

A mining rig is a computer system built specifically to perform the cryptographic hash calculations required by proof-of-work blockchains. For Bitcoin, this means purpose-built ASIC machines. For some other coins, GPU-based rigs with multiple graphics cards are used. The rig runs 24/7, consuming electricity and generating heat in exchange for block rewards when it finds valid hashes.

What Is a Mining Pool?

A mining pool is a group of miners who combine their hash power and share block rewards proportionally to each member's contribution. Solo mining on Bitcoin is like playing a lottery with astronomically low odds per ticket. Pooling means steadier, smaller payments rather than the rare jackpot of finding a full block yourself.

What Is Hash Rate?

Hash rate measures how many hash calculations a miner or network performs per second. Higher hash rate means more guesses per second, which means a better chance of finding valid blocks. It is the raw computational power securing a proof-of-work blockchain. Bitcoin's network hash rate is around 600 EH/s (exahashes per second, or 600 quintillion calculations every second).

What Is an ASIC (Application-Specific Integrated Circuit)?

An ASIC is a chip designed to perform one specific computation extremely efficiently. For Bitcoin mining, ASICs do nothing except SHA-256 hashing, but they do it millions of times faster and more energy-efficiently than general-purpose hardware (CPUs, GPUs). They are why Bitcoin mining is a specialized industrial operation rather than something anyone can do on a regular computer.

What Is a Full Node?

A full node is a computer running blockchain software that downloads, validates, and stores the entire transaction history independently. It verifies every block and transaction against consensus rules without trusting anyone else. Running one means you personally enforce the protocol rules rather than trusting a third party to do it for you.

What Is Pruning (Node Storage Mechanics)?

Pruning is a storage optimization where a full node deletes old block data after validating it, keeping only the current state (account balances, UTXOs) and enough recent history to handle reorganizations. A pruned Bitcoin node needs only ~5-10 GB instead of ~550 GB, while still independently validating every transaction. The tradeoff: it cannot serve historical block data to other nodes.

What Is Peer-to-Peer Networking (In the Blockchain Context)?

Peer-to-peer (P2P) networking means every node in the blockchain connects directly to other nodes without a central server. There is no master node, no single point of failure, and no authority deciding who can participate. When you broadcast a transaction, it hops from your node to its peers, who relay it to their peers, flooding across the entire network in seconds through gossip.

Regulation & Tax

The rules of the game: securities vs commodities, taxable events, cost basis methods, KYC/AML, and how exchanges get licensed.

14

What Is a Security vs. a Commodity (The Structural Legal Distinction)?

In US financial regulation, a security is an investment where you put money into a common enterprise expecting profits from the efforts of others (the Howey Test). A commodity is a fungible asset traded on its own merits (like gold or wheat). This distinction determines which regulator oversees a crypto asset: SEC for securities, CFTC for commodities. Bitcoin is generally considered a commodity. Most other tokens exist in a gray zone.

What Is a Taxable Event (In Crypto, Generally)?

A taxable event is any action that triggers a tax obligation. In most jurisdictions, selling crypto for fiat, trading one crypto for another, spending crypto on goods/services, and receiving crypto as income (mining, staking, airdrops, salary) are all taxable events. Simply holding crypto or transferring between your own wallets is generally NOT a taxable event.

What Is Cost Basis (General Concept)?

Cost basis is what you originally paid for an asset, including any fees. When you sell, your taxable gain or loss equals the sale price minus your cost basis. If you bought 1 ETH at $2,000 (plus $5 exchange fee) and sold at $3,000, your cost basis is $2,005 and your capital gain is $995. Tracking cost basis accurately is essential for correct tax reporting.

What Is FIFO/LIFO/HIFO Accounting (Mechanics)?

FIFO (First In, First Out), LIFO (Last In, First Out), and HIFO (Highest In, First Out) are methods for determining which specific units of crypto you are selling when you have purchased the same token at different prices over time. The method you choose affects how much gain (and therefore tax) you owe on any given sale.

What Is KYC (Know Your Customer)?

KYC (Know Your Customer) is the identity verification process that regulated financial services must perform before allowing you to use their platform. For crypto exchanges, this means submitting government-issued ID, proof of address, and sometimes a selfie or video. KYC exists to prevent money laundering, fraud, and terrorist financing. It is legally mandatory for regulated exchanges in most jurisdictions.

What Is AML (Anti-Money Laundering, As It Applies to Crypto)?

AML (Anti-Money Laundering) refers to laws, regulations, and procedures that require financial institutions to detect, prevent, and report activities that could involve laundering illegally obtained money. For crypto businesses, this means: monitoring transactions for suspicious patterns, filing Suspicious Activity Reports (SARs), screening against sanctions lists, and maintaining records that can be shared with law enforcement.

What Is a Money Services Business (MSB), Structurally?

A Money Services Business (MSB) is a legal classification (in the US, under FinCEN) for businesses that transmit money, exchange currencies, cash checks, or sell prepaid instruments. Crypto exchanges and payment processors operating in the US must register as MSBs and comply with AML/KYC regulations. Failure to register is a federal crime, even for businesses operating primarily in crypto.

What Is Proof of Reserves?

Proof of reserves is an auditing practice where a crypto custodian (exchange, stablecoin issuer) publicly demonstrates they hold enough assets to cover all customer deposits. It typically combines a Merkle tree of user balances (proving what is owed) with cryptographic proof of on-chain asset holdings (proving what is held). It emerged as a trust mechanism after the FTX collapse revealed $8B in missing customer funds.

What Is a Licensed vs. Unlicensed Exchange (And Why It Matters)?

A licensed exchange has obtained regulatory approval from financial authorities in its operating jurisdictions, subjecting it to rules around capital reserves, security standards, KYC/AML compliance, and customer protection. An unlicensed exchange operates without this oversight, often offering more features (higher leverage, no KYC) but with significantly less accountability and recourse if something goes wrong.

What Is the Travel Rule (Crypto)?

The Travel Rule requires regulated crypto businesses to share sender and recipient identity information when transferring funds above a threshold ($3,000 in the US, 1,000 EUR in the EU). When you send crypto from one exchange to another, the sending exchange must transmit your name, account number, and address to the receiving exchange. It is the crypto equivalent of how banks share wire transfer sender info.

What Is the MiCA Regulation (EU)?

MiCA (Markets in Crypto-Assets) is the EU comprehensive regulatory framework for crypto, effective 2024-2025. It covers: exchange licensing, stablecoin reserve requirements, investor protection rules, market abuse prevention, and environmental disclosures. For the first time, crypto businesses operating in the EU have a single unified legal framework across all 27 member states instead of navigating different rules in each country.

What Is Wash Trading?

Wash trading is a person or group buying and selling the same asset to themselves to fake trading volume. In crypto, this inflates DEX volume numbers, creates artificial NFT price history (selling to your own wallets at increasingly higher prices), and manipulates exchange rankings. The trades generate no real economic activity because the same entity is on both sides, but the volume metrics mislead other traders into thinking there is genuine demand.

What Are DeFi Taxable Events?

In DeFi, taxable events include: swapping tokens on a DEX (disposal), providing liquidity (if it involves token conversion), claiming staking or farming rewards (income), removing liquidity at different token ratios than deposit (potential gain/loss), bridging that involves token swaps, and wrapping/unwrapping (jurisdiction-dependent). Simply depositing into a lending protocol or staking without conversion is generally not taxable in most jurisdictions.

How to Document Crypto for Mortgages and Visa Applications

To use crypto wealth for a mortgage or visa application: convert to fiat and season it in a bank account for 60-90 days (most reliable path), or provide comprehensive documentation showing: exchange account statements, transaction history proving ownership timeline, tax returns reporting crypto gains, a CPA letter attesting to holdings, and screenshots of wallet balances with timestamps. Every lender and embassy has different requirements, but seasoned fiat is universally accepted.

Emerging Concepts

What is being built right now: RWA tokenization, AI agent wallets, DePIN, restaking, prediction markets, and decentralized identity.

11

What Is RWA Tokenization?

RWA (Real-World Asset) tokenization is the process of representing ownership of physical or traditional financial assets (real estate, government bonds, commodities, private credit) as tokens on a blockchain. A tokenized Treasury bill works like a stablecoin that earns yield: it exists on-chain, is transferable 24/7, composable with DeFi, and backed by the actual real-world asset held by a custodian.

What Is an AI Agent Wallet?

An AI agent wallet is a crypto wallet controlled by an autonomous AI system rather than a human. The agent holds its own private keys and can independently sign transactions, manage funds, pay for services, earn revenue, and interact with DeFi protocols based on programmed goals or learned behavior. It is the infrastructure that lets AI systems operate as economic actors on blockchain networks.

What Is DePIN?

DePIN (Decentralized Physical Infrastructure Networks) uses crypto token incentives to crowdsource the deployment and operation of real-world infrastructure: wireless networks, compute, storage, sensors, energy, and mapping. Instead of one company building and owning the infrastructure (like AT&T for cell towers), thousands of independent operators contribute hardware and earn tokens for providing the service.

What Is Restaking?

Restaking lets you take ETH that is already staked (securing Ethereum) and simultaneously pledge it as security for additional protocols or services (oracle networks, bridges, data availability layers, new rollups). You earn extra yield on top of your base Ethereum staking rewards. EigenLayer pioneered this concept, amassing over $15B in restaked assets by mid-2024.

What Is an On-Chain Prediction Market?

An on-chain prediction market is a platform where users buy and sell shares in the outcomes of future events (elections, sports, crypto prices, world events). Shares in the winning outcome pay $1; losing shares pay $0. Prices reflect the market's collective probability estimate. Polymarket is the largest example, processing hundreds of millions in monthly volume on political and world events.

What Is a Decentralized Oracle?

A decentralized oracle is a network that delivers external data (asset prices, sports scores, weather, election results) to smart contracts in a way that does not rely on a single trusted source. Multiple independent node operators fetch and report data, and the protocol aggregates their answers (typically using a median or weighted average) to produce a reliable on-chain data feed. Chainlink is the dominant oracle network, securing over $75B in DeFi value.

What Is an Oracle Attack / Oracle Manipulation?

An oracle attack manipulates the data feed that a DeFi protocol relies on for pricing, tricking the protocol into making incorrect decisions (wrong liquidations, mispriced trades, inflated collateral valuations). The attacker does not hack the protocol's code directly; they hack the input the protocol trusts. If a protocol thinks ETH is worth $100 instead of $3,000, it makes catastrophically wrong decisions.

What Is Machine-to-Machine Payment (Structural)?

Machine-to-machine (M2M) payment is autonomous financial transactions between devices, software agents, or AI systems without human involvement in each individual payment. A self-driving car paying a charging station, an AI agent buying compute from a GPU network, or a sensor paying for data from another sensor. Crypto enables M2M payments because: no bank account needed per device, programmable payment logic, and microtransactions at fractions of a cent.

What Is a Decentralized Identifier (DID)?

A Decentralized Identifier (DID) is a globally unique identifier that you control without relying on any central authority (no company issues it, no company can revoke it). It is anchored to a blockchain or distributed ledger, and you prove ownership by signing with your private key. DIDs let you own your digital identity the same way self-custody lets you own your crypto.

What Is Proof of Personhood / Proof of Humanity (Structural Concept)?

Proof of personhood is a mechanism that verifies a crypto address belongs to a unique real human being (not a bot, not a duplicate account, not an AI). It solves the Sybil problem: one person pretending to be many. Applications include fair airdrops (one per person), democratic governance (one person one vote), and UBI distribution. The challenge is proving uniqueness without requiring government ID or sacrificing privacy.

What Is Real-World Collateral (In the RWA/DeFi Sense)?

Real-world collateral means traditional assets (US Treasury bills, real estate, corporate bonds, invoices, commodities) that back on-chain tokens or DeFi lending positions. Instead of crypto backing crypto (which creates circular risk), real-world collateral anchors DeFi yields to productive assets in the traditional economy, providing returns that do not depend on token price speculation.

Comparisons & Decisions

Choosing between options: side-by-side breakdowns of competing protocols, wallets, chains, and strategies with clear tradeoffs.

15

Optimistic vs. ZK Rollups Compared

Optimistic rollups (Arbitrum, Optimism) assume transactions are valid and allow 7-day fraud proof challenges. ZK rollups (zkSync, StarkNet) prove validity with cryptographic proofs, finalizing in minutes. Optimistic is more mature with deeper ecosystem support. ZK is mathematically stronger with faster finality but newer in production.

USDC vs. USDT vs. DAI Compared

USDC (Circle) is the most transparent fiat-backed stablecoin with monthly Deloitte attestations. USDT (Tether) is the most liquid with the deepest trading pairs but less transparent historically. DAI (MakerDAO) is decentralized and crypto-collateralized, with no single company controlling it. Your choice depends on whether you prioritize transparency, liquidity, or decentralization.

Lido vs. Rocket Pool vs. Coinbase Staking Compared

Lido (stETH) is the largest liquid staking protocol with the deepest DeFi integrations but more centralized operator set. Rocket Pool (rETH) is the most decentralized with permissionless node operators. Coinbase (cbETH) is the simplest with one-click staking but fully custodial. Your choice depends on whether you prioritize DeFi composability, decentralization, or simplicity.

Bitcoin vs. Ethereum for a First Purchase

Bitcoin is the simpler choice if you want a store of value with the longest track record and clearest regulatory status. Ethereum is the better choice if you plan to use DeFi, stake for yield, or interact with smart contracts. Most people getting started benefit from holding both in a ratio that matches their goals.

Hardware Wallet vs. Software Wallet: Which to Choose

Use a hardware wallet for any amount you would be upset to lose (generally $1,000+). Use a software wallet for amounts you actively spend in DeFi or need quick mobile access to. The answer for most people: both. Hardware for savings, software for spending. The hardware wallet protects against remote theft; the software wallet provides daily convenience.

CEX vs. DEX: When to Use Which

Use a CEX (Coinbase, Kraken) for fiat on/off ramps, large trades with tight spreads, and when you need customer support. Use a DEX (Uniswap, Curve) when you want to keep custody of your funds, access tokens not listed on exchanges, or interact with DeFi protocols. Most active crypto users rely on both for different purposes.

Before You Buy Your First Crypto (Checklist)

Before buying any cryptocurrency: set up a self-custody wallet, learn what a seed phrase is and how to store it, decide on an exchange with fiat support, understand that crypto is volatile and you can lose your entire investment, know your tax obligations, and never invest money you need for rent or emergencies. This checklist covers each step in order.

Hardware Wallet Setup Checklist

Setting up a hardware wallet correctly: unbox and verify authenticity, install companion software, generate your seed phrase on the device (never on a computer), write it down on the included cards, verify the backup by checking a few words, set a strong PIN, transfer a small test amount, verify receipt, then transfer your main holdings. Takes about 30 minutes total.

DeFi Security Checklist Before Depositing

Before depositing into any DeFi protocol: verify the contract is audited, check TVL and time live without incident, review your token approvals (set specific amounts not unlimited), confirm you are on the correct URL (bookmark it), check the protocol on DefiLlama for legitimacy, and never deposit more than you can afford to lose in a single protocol.

The Hidden Costs of Yield Farming

The advertised APY on a yield farm is almost never what you actually earn. After accounting for gas costs (deposits, claims, compounds, withdrawals), impermanent loss, reward token price decline, and tax obligations on every harvest, your real return can be 50-80% lower than the headline number. On small positions, these hidden costs can make farming net negative.

What Nobody Tells You About Running a Validator

Running an Ethereum validator earns ~4% APR on 32 ETH, but the operational reality involves: 24/7 uptime requirements with real penalties for downtime, mandatory software updates on tight timelines (miss one and you fork off the network), hardware failures at 3 AM, the psychological stress of having $96,000+ locked in a system you must babysit, and the tax complexity of receiving income in fractions every 6 minutes.

Ethereum vs. Solana Compared

Ethereum is the most established smart contract platform with the deepest liquidity, strongest security (900K+ validators), and largest developer ecosystem. Solana is the fastest mainstream L1 with 4,000+ TPS at sub-cent fees and near-instant finality. Ethereum scales via L2 rollups (Arbitrum, Base). Solana scales on a single layer via parallel execution. Most serious crypto participants use both for different purposes.

Ledger vs. Trezor vs. Coldcard Compared

Ledger (Nano S Plus $79, Nano X $149): supports 5,500+ tokens, secure element chip, closed-source firmware, Bluetooth option. Trezor (Safe 3 $79, Model T $219): open-source firmware, supports 1,000+ tokens, no secure element (different security model), touchscreen on premium model. Coldcard (Mk4 $150): Bitcoin-only, fully air-gapped (no USB data), open-source, maximum Bitcoin security. Choose Ledger for multi-chain, Trezor for open-source transparency, Coldcard for Bitcoin maximalism.

Staking vs. Lending vs. LP: Which Yield Strategy?

Staking (3-5% on ETH, lowest risk): lock tokens to secure a network, earn protocol rewards. No impermanent loss. Lending (3-8% on stables, low-medium risk): supply tokens to borrowers, earn interest. No IL, but smart contract risk. Liquidity providing (5-50%+ variable, medium-high risk): deposit token pairs into DEX pools, earn trading fees. Subject to impermanent loss and requires active management for concentrated positions.

L1 vs. L2 vs. Sidechain: Where to Put Your Money

L1 (Ethereum mainnet): maximum security for large amounts ($50K+), highest fees ($5-20/tx). L2 rollups (Arbitrum, Base): Ethereum-level security at 100x lower cost, best for active DeFi ($1K-$50K). Sidechains (Polygon PoS): cheapest fees but own validator security, good for casual use and small amounts (under $5K). Match the security level to how much you have at stake.

Practical Guides

Hands-on walkthroughs: using a DEX for the first time, bridging between chains, revoking approvals, reading block explorers, and more.

10

How to Read a Block Explorer Transaction

A block explorer transaction page shows: status (success/fail), the block it was included in, sender and receiver addresses, value transferred, gas used and fee paid, and input data (what function was called on a smart contract). Learning to read these fields takes five minutes and lets you verify any transfer, debug failed transactions, and confirm DeFi interactions independently.

How to Revoke Token Approvals

Go to revoke.cash, connect your wallet, review all active approvals (sorted by risk), and click Revoke on any you no longer need. Each revocation costs one small gas transaction. Do this monthly or after interacting with any new protocol. Unlimited approvals on forgotten contracts are the number one way drainer exploits steal tokens you thought were safe in your wallet.

How to Bridge Assets Between Chains

To bridge assets: choose a bridge (official rollup bridge for max security, or Across/Stargate for speed), connect your wallet, select source and destination chains, pick the token and amount, approve the transaction, and wait for confirmation on the destination. Costs range from $0.50 to $15 depending on the bridge and chains involved. Always use the correct bridge for your security needs.

How to Read Tokenomics Before Buying

Before buying any token, check five numbers: circulating supply vs. max supply (how much dilution is coming), FDV-to-market-cap ratio (over 10x means massive unlocks ahead), top holder concentration (one wallet over 10% is a dump risk), vesting schedule (when do team/investor tokens unlock), and revenue vs. emissions (is yield real or just printing). These five checks take under 10 minutes and catch most bad investments before you make them.

How to Use Uniswap for Your First Swap

Connect your wallet to app.uniswap.org, select the token you have (ETH or USDC) and the token you want, enter the amount, review the price impact and minimum received, click Swap, and confirm in your wallet. The whole process takes under 60 seconds once your wallet is connected. You keep custody of your tokens the entire time.

How to Set Up MetaMask Correctly

Download MetaMask only from metamask.io (never app stores for desktop). Create a new wallet, write down the 12-word seed phrase on paper, set a strong password, then configure security settings: enable phishing detection, add custom networks (Arbitrum, Base) via chainlist.org, and connect a hardware wallet for signing high-value transactions. The whole setup takes 10 minutes and prevents the most common attack vectors.

How to Calculate Your Crypto Taxes

Gather all transaction history from every exchange and wallet you used (export CSVs or connect APIs). Import into crypto tax software (Koinly, CoinTracker, or TokenTax). Select your cost basis method (HIFO minimizes taxes for most people). Review the generated report for accuracy. File the resulting capital gains and income totals with your regular tax return. The software handles the hard part; you provide the data.

How to Check if a Token Is Safe Before Buying

Before buying any new token: verify the contract address against official sources, check Token Sniffer for scam patterns, review holder distribution on Etherscan, confirm liquidity is locked and adequate, look at the team and GitHub activity, and simulate a buy+sell on honeypot.is. These six checks take under five minutes and filter out the vast majority of scam tokens and rug pulls.

How to Stake ETH (All Options Compared)

Four ways to stake ETH, ranked by effort: (1) Exchange staking (Coinbase, Kraken): click a button, earn 2.5-3.5% APR, fully custodial. (2) Liquid staking (Lido stETH, Rocket Pool rETH): swap ETH for a receipt token earning 3-4% APR, non-custodial, usable in DeFi. (3) Pooled node operation (Rocket Pool minipool): deposit 8 ETH, run a node, earn 5-7% APR. (4) Solo staking: deposit 32 ETH, run your own validator, earn 4-5% APR plus MEV tips, maximum sovereignty.

How to Verify a Smart Contract on Etherscan

Contract verification publishes your Solidity source code on Etherscan so anyone can read it and confirm it matches the deployed bytecode. To verify: go to etherscan.io/verifyContract, paste your contract address, select the compiler version and optimization settings that match your deployment, upload your source code (or paste it), and submit. Etherscan compiles your source and checks if the output matches what is on-chain.

Ecosystem Deep Dives

Specific chains and protocols up close: architecture, fees, tooling, and what makes each ecosystem different in practice.

8

What Is Arbitrum (And How to Use It)?

Arbitrum is the largest Ethereum Layer 2 rollup by TVL ($13B+ as of mid-2024). It processes transactions off Ethereum mainnet at 10-100x lower cost while inheriting Ethereum security through optimistic fraud proofs. You use it exactly like Ethereum (same wallet, same dApps) but pay cents instead of dollars for transactions.

What Is Solana (How It Differs From Ethereum)?

Solana is a high-performance Layer 1 blockchain processing 4,000+ transactions per second at sub-cent fees. Unlike Ethereum (which relies on Layer 2s for scaling), Solana scales on a single layer using parallel execution and a novel proof-of-history clock. The tradeoff: faster and cheaper than Ethereum L1 but with fewer validators, occasional outages, and a different developer ecosystem (Rust instead of Solidity).

What Is Aave (And How DeFi Lending Works)?

Aave is a decentralized lending protocol where you can supply crypto to earn interest (currently 3-8% on stablecoins) or borrow against your deposits as collateral. No bank, no credit check, no application. You deposit ETH, borrow USDC against it, and pay interest by the second. If your collateral value drops below the liquidation threshold, your position is automatically sold to repay the loan.

What Is the Lightning Network?

The Lightning Network is a Layer 2 payment system built on top of Bitcoin that enables instant, nearly-free transactions by routing payments through pre-funded channels between participants. Instead of recording every coffee purchase on the Bitcoin blockchain (slow and expensive), Lightning settles thousands of payments off-chain and only touches the blockchain to open or close channels.

What Is MakerDAO (And How DAI Works)?

MakerDAO is the protocol behind DAI, a decentralized stablecoin maintained at $1 through overcollateralized crypto vaults and algorithmic interest rates. You deposit ETH or other approved assets, borrow DAI against them (at 150%+ collateralization), and pay a stability fee (interest). Governance is handled by MKR token holders who set risk parameters, approve collateral types, and manage the $5B+ DAI supply.

What Is Base (Coinbase L2)?

Base is an Ethereum Layer 2 built by Coinbase using the OP Stack (same technology as Optimism). It offers sub-cent transaction fees, direct onboarding from Coinbase accounts, and growing DeFi/NFT ecosystem. Base has no native token. Gas is paid in ETH. It is designed as the easiest path from a Coinbase account into on-chain activity without needing to understand bridging or complex wallet setup.

What Is Cosmos / IBC?

Cosmos is a network of independent blockchains (app-chains) connected through IBC (Inter-Blockchain Communication), a protocol that lets them transfer tokens and data between each other trustlessly. Instead of one chain doing everything (Ethereum model), Cosmos lets each application run its own sovereign chain optimized for its needs, with IBC providing the interoperability layer. ATOM is the token of the Cosmos Hub, the first and central chain in the ecosystem.

What Is Polygon?

Polygon is an ecosystem of Ethereum scaling solutions. The original Polygon PoS is a sidechain (its own validators securing ~$5B in TVL) with low fees and fast blocks. Polygon also builds a ZK rollup (Polygon zkEVM) that inherits Ethereum security directly. Most users interact with Polygon PoS (the cheaper, faster option for casual DeFi and NFTs) while higher-value applications increasingly use the zkEVM.

DeFi Mechanics

Under the hood of decentralized finance: lending protocols, liquidity pools, yield strategies, and how DeFi primitives actually work.

7

What Is a Liquidation (DeFi Lending)?

A liquidation happens when your collateral value drops below the minimum required to support your loan, and the protocol automatically sells your collateral to repay the debt. On Aave, this triggers when your health factor falls below 1.0. On MakerDAO, when your collateralization ratio drops below the minimum (e.g., 150% for ETH). You lose your collateral plus a liquidation penalty (5-13%), and the protocol stays solvent.

What Is Concentrated Liquidity (Uniswap V3)?

Concentrated liquidity lets you provide liquidity within a specific price range instead of across all prices (0 to infinity). Your capital earns fees only when the market trades within your chosen range, but it earns proportionally more fees because it is not diluted across prices where trading never happens. It is like choosing which section of the highway to maintain rather than paving the entire continent.

What Is a Governance Attack?

A governance attack uses flash-borrowed or temporarily accumulated governance tokens to pass a malicious proposal that drains the protocol treasury or changes parameters in the attacker favor. The most famous example: the Beanstalk attack (April 2022) where an attacker flash-borrowed enough BEAN/governance power to pass a proposal stealing $182M from the treasury, all in one transaction.

What Is a Flash Loan Attack (Step by Step)?

A flash loan attack uses zero-capital borrowing to manipulate a protocol in a single transaction: borrow millions, manipulate a price oracle or exploit a logic flaw, extract profit from the manipulated state, repay the loan, and keep the difference. The entire sequence executes atomically. If any step fails, everything reverts and the attacker loses only the gas fee for the failed attempt.

What Is a Dutch Auction (For NFTs and Tokens)?

A Dutch auction starts at a high price and decreases over time until someone buys. For NFT mints, the price might start at 5 ETH and drop by 0.5 ETH every 10 minutes until it reaches a floor (say 0.5 ETH) or sells out. Buyers wait for a price they consider fair and then purchase. It eliminates gas wars (no need to spam transactions at a fixed low price) and lets the market find the true clearing price organically.

What Is Protocol-Owned Liquidity (POL)?

Protocol-owned liquidity means the protocol itself owns the trading pool liquidity rather than renting it from yield farmers through token emissions. Instead of paying mercenary LPs (who leave the moment rewards stop), the protocol buys its own LP tokens permanently. This makes liquidity a balance sheet asset rather than an ongoing expense, dramatically improving long-term sustainability.

What Is a Bonding Curve?

A bonding curve is a mathematical formula that automatically sets a token price based on its current supply. As more tokens are minted (bought), the price increases along the curve. As tokens are burned (sold back), the price decreases. There is no order book and no counterparty. You buy from and sell to the curve itself, with pricing determined purely by math. Early buyers get cheaper prices; later buyers pay more.

Trending Topics

The newest concepts people are searching for: Bitcoin ETFs, memecoins, account abstraction, paymasters, and intent-based trading.

5

What Is a Bitcoin ETF?

A Bitcoin ETF (Exchange-Traded Fund) is a traditional stock market product that holds actual Bitcoin and lets you buy exposure through your existing brokerage account (Fidelity, Schwab, Robinhood). You buy shares of the ETF like any stock. The fund manager (BlackRock, Fidelity, etc.) buys and custodies the real Bitcoin backing those shares. You get BTC price exposure without dealing with wallets, exchanges, or private keys.

What Is a Memecoin?

A memecoin is a cryptocurrency with no intended utility beyond community speculation and social signaling. Dogecoin, Shiba Inu, PEPE, and WIF are examples. They have no protocol revenue, no product roadmap, and no fundamental value proposition beyond people agreeing they are fun to trade. Some generate extraordinary short-term returns. Most go to zero. They are pure social coordination games with financial stakes.

What Is a Bitcoin Ordinal / Inscription?

Ordinals are a numbering system that assigns a unique identity to each individual satoshi (the smallest unit of Bitcoin). Inscriptions use this system to permanently attach data (images, text, code) directly to specific satoshis on the Bitcoin blockchain. The result: NFT-like digital artifacts stored on Bitcoin itself, with no separate metadata server needed. They are as permanent as Bitcoin.

What Is an Intent-Based Protocol?

An intent-based protocol lets users declare what they want (swap 1 ETH for the best price across all chains) without specifying how to execute it. Professional solvers compete to fill the intent optimally. You sign what you want; the solver figures out the routing, bridging, and execution. UniswapX, Across Protocol, and CoW Swap are leading examples. The result: better prices, MEV protection, and cross-chain execution without the user managing complexity.

What Is a Paymaster (Gas Sponsorship)?

A paymaster is a smart contract (within the ERC-4337 Account Abstraction framework) that pays gas fees on behalf of users. Instead of needing ETH for gas before you can do anything on Ethereum, a paymaster can sponsor your transaction entirely (free for you) or let you pay gas in a different token (USDC, the app own token, etc.). It removes the biggest onboarding friction in crypto: needing the native token before you can use the chain.

How This Works

Each guide on martin.bot covers exactly one question in plain language. You get a direct answer up front, a worked example using actual numbers, a list of common mistakes people make, and links to primary sources you can check yourself.

Topics range from Bitcoin fundamentals and Ethereum smart contracts to DeFi mechanics, wallet security, staking yield, NFTs, DAOs, Layer 2 scaling, and crypto tax concepts. Trying to understand what a seed phrase is, how impermanent loss works, what gas fees actually pay for, or how to spot a rug pull? There is a page for that.

The structure is consistent across every page: answer first, then a plain-language analogy, then the mechanics step by step, then a worked example with real numbers, then misconceptions corrected, then links to related pages and primary sources.

The resource directory links directly to regulatory sources (IRS, SEC, FCA, ESMA), protocol documentation (Bitcoin.org, Ethereum.org, GitHub repos), and live blockchain tools (Etherscan, Mempool.space, Chainlist). URLs are checked and annotated with their status.

One question, one page

Each article answers a single question with the depth it needs. No 5,000-word catch-alls.

Worked examples with real math

Actual transaction costs, APY calculations, and liquidation scenarios on real chains. Not "imagine Alice sends Bob 1 ETH."

Structural, not speculative

Concepts that remain valid regardless of what the market does tomorrow. Last-reviewed dates on every page.

On-chain data we reference

Every worked example in our guides uses real blocks, transactions, or contracts you can look up on a block explorer. Here are some of them, grouped by network.

BitcoinJan 3, 2009

Genesis Block #0

The first block ever mined. Contains the message "Chancellor on brink of second bailout for banks" embedded in the coinbase field. The block reward was 50 BTC, though this particular reward is unspendable due to a quirk in the original code.

BitcoinMay 22, 2010

Pizza Transaction: 10,000 BTC for Two Pizzas

Laszlo Hanyecz paid 10,000 BTC to have two pizzas delivered. The first documented real-world purchase using Bitcoin, establishing that BTC had exchange value beyond mining costs. At 2024 prices, those pizzas cost over $600 million.

BitcoinNov 28, 2012

First Halving: Block #210,000

Block reward dropped from 50 BTC to 25 BTC. The first time the halving mechanism activated, proving the programmatic supply schedule works exactly as designed. Bitcoin price was around $12 at the time.

BitcoinApril 19, 2024

Fourth Halving: Block #840,000

Reward dropped from 6.25 to 3.125 BTC. Daily new supply fell from 900 to 450 BTC. This block was notably large due to Ordinals inscriptions, with the miner earning over 37 BTC in fees on top of the 3.125 BTC subsidy.

BitcoinAug 24, 2017

SegWit Activation: Block #481,824

Segregated Witness moved signature data outside the base block, increasing effective capacity to ~2.3MB without changing the 1MB base limit. This fixed transaction malleability, making Lightning Network possible.

BitcoinAug 1, 2017

Bitcoin Cash Fork: Block #478,558

The last block shared by Bitcoin and Bitcoin Cash. After this, BCH nodes began accepting 8MB blocks while BTC kept 1MB with SegWit. Anyone holding BTC at this block height had an equal BCH balance on the new chain.

EthereumAug 7, 2015

First Ethereum Transaction

The first value transfer on Ethereum mainnet, in block 46. Gas price: 50 Gwei. Gas used: 21,000 (the base cost of a simple ETH transfer, still the same today). This structure is how every ETH send works.

EthereumAug 5, 2021

EIP-1559 Activation: Block #12,965,000

The London hard fork introduced base fee burning. Before this block, all gas fees went to miners. After it, the base fee gets permanently destroyed and only the priority tip goes to validators. ETH supply became partially deflationary during high network usage.

EthereumSept 15, 2022

The Merge: Block #15,537,393

The last proof-of-work block on Ethereum. The execution layer merged with the Beacon Chain at terminal total difficulty. Mining stopped instantly. Validators took over. Energy usage dropped 99.95% in a single block transition.

StakingContract

Beacon Chain Deposit Contract

Every Ethereum validator sends exactly 32 ETH here to activate. The contract is one-way: deposits cannot be withdrawn through it (withdrawals happen at the consensus layer since Shapella). Over 34 million ETH locked across 1,000,000+ validators.

DeFiContract

WETH: Wrapped Ether

Native ETH predates ERC-20, so it cannot interact directly with DeFi protocols. This contract wraps ETH into WETH at 1:1 so it works with Uniswap, Aave, and every other protocol. Nearly every DeFi swap touches this contract.

DeFiContract

Uniswap V2 Router

The entry point for every Uniswap V2 swap. Your transaction calls this router, which finds the right pool, calculates output using the constant product formula (x * y = k), and executes the swap atomically in one transaction.

These examples appear throughout our guides. Start exploring the topics →

Common questions

Is martin.bot free to use?
Yes, completely. Every guide, the glossary, and all of the calculators are free. There is nothing to buy and no premium tier.
Do I need an account or to sign up?
No. There are no accounts, no sign-ups, and no email required. You can read every page and use every tool without giving us anything.
Is any of this financial advice?
No. Everything here is educational. We explain how things work and show the math, but we never tell you what to buy, when to sell, or where to put your money. Those decisions are yours.
Do the calculators send my numbers anywhere?
No. Every calculator runs entirely in your browser. Your inputs are never sent to a server. You can even copy a link that reproduces your scenario, but that link is built on your device.
How is the content kept accurate?
Each page follows one structure: a direct answer, a plain-language analogy, the mechanics, a worked example with real numbers, common misconceptions, and links to primary sources you can verify yourself. Every page shows the date it was last checked.
Where does the live price data come from?
The price ticker uses the free CoinGecko public API and refreshes periodically. It is for reference only and hides itself if the data is unavailable, so it never blocks the page.

Resource Directory

Links to regulators, protocol docs, block explorers, and security tools. Every URL goes to a primary source.

See All Resources