Crypto Glossary: Essential Terms Every Developer Should Know

Crypto moves fast. New terms appear every cycle, and old ones get redefined. Whether you're building on blockchain, investing, or just trying to follow the conversation, you need a solid foundation.
This is not a "top 500 crypto terms" listicle. It's a curated glossary of the concepts that actually matter — the ones you'll encounter in real codebases, whitepapers, and technical discussions.
Blockchain Fundamentals
Blockchain — A distributed ledger where data is stored in blocks, cryptographically linked in sequence. Each block references the hash of the previous one, making the chain tamper-evident. Not every distributed database is a blockchain, and not every blockchain is decentralized.
Block — A container of transactions. Each block includes a timestamp, a reference to the previous block (hash), and a merkle root of all transactions it contains.
Hash — A fixed-length fingerprint of data produced by a cryptographic function (SHA-256, Keccak-256). Change one bit of input, and the entire hash changes. Hashing is one-way: you can't reverse it.
Merkle Tree — A binary tree of hashes used to efficiently verify data integrity. The root hash represents all transactions in a block. You can prove a transaction exists without downloading the entire block.
Node — A computer running blockchain software. Full nodes validate every transaction and store the complete chain. Light nodes verify headers only.
Consensus — The mechanism by which nodes agree on the state of the ledger. Without consensus, distributed systems can't function.
Consensus Mechanisms
Proof of Work (PoW) — Miners compete to solve a cryptographic puzzle. The first to find a valid hash earns the right to propose the next block and receives a reward. Energy-intensive by design — the cost of attacking the network must exceed the reward.
Proof of Stake (PoS) — Validators lock up tokens as collateral ("staking"). The protocol selects validators based on their stake to propose and validate blocks. Slashing punishes dishonest validators by burning their stake.
Delegated Proof of Stake (DPoS) — Token holders vote for delegates who validate on their behalf. Faster consensus, but more centralized.
Cryptography
Public Key — Your address. Derived from your private key using elliptic curve cryptography. Safe to share.
Private Key — Your password. Whoever has this controls the funds. Lose it, and your assets are gone forever. There is no "forgot password."
Seed Phrase (Mnemonic) — A human-readable representation of your private key. Usually 12 or 24 words following the BIP-39 standard. Write it on paper. Never store it digitally.
Digital Signature — Proof that a transaction was authorized by the holder of the private key, without revealing the key itself. Every transaction on every blockchain uses digital signatures.
Zero-Knowledge Proof (ZKP) — A method to prove you know something without revealing what you know. Used in privacy coins (Zcash) and Layer 2 scaling (zkSync, StarkNet).
Tokens and Standards
Fungible Token — Interchangeable units. One ETH equals any other ETH. ERC-20 is the standard on Ethereum.
Non-Fungible Token (NFT) — Unique tokens representing ownership of a specific asset. ERC-721 on Ethereum. The hype died; the technology is sound.
ERC-20 — The standard interface for fungible tokens on Ethereum. Defines transfer, approve, balanceOf, and other functions that wallets and exchanges expect.
ERC-721 — The standard for non-fungible tokens. Each token has a unique ID.
ERC-1155 — A multi-token standard that supports both fungible and non-fungible tokens in a single contract. More gas-efficient for batch operations.
Gas — The unit measuring computational effort on Ethereum. Every operation (transfer, contract call, storage write) costs gas. Gas price fluctuates with network demand.
Wei — The smallest unit of ETH. 1 ETH = 10^18 Wei. Like satoshis to Bitcoin.
DeFi (Decentralized Finance)
DEX (Decentralized Exchange) — A trading platform that operates through smart contracts instead of a central authority. Uniswap, SushiSwap, PancakeSwap. No KYC, no custody, no downtime.
AMM (Automated Market Maker) — The algorithm that DEXs use instead of order books. Liquidity providers deposit token pairs into pools. Price is determined by the ratio of tokens in the pool (constant product formula: x * y = k).
Liquidity Pool — A smart contract holding token pairs that traders swap against. Providers earn fees proportional to their share of the pool.
Impermanent Loss — The difference between holding tokens in a liquidity pool vs. holding them in a wallet. When prices diverge, pool providers lose relative value. It's "impermanent" only if prices return to the original ratio — which they often don't.
Yield Farming — Moving assets between protocols to maximize returns. High APY often means high risk, token inflation, or both.
TVL (Total Value Locked) — The total value of assets deposited in a DeFi protocol. A rough measure of trust and adoption.
Flash Loan — An uncollateralized loan that must be borrowed and repaid within a single transaction. If repayment fails, the entire transaction reverts. Used for arbitrage, liquidations, and exploits.
Wallets
Hot Wallet — Connected to the internet. Convenient, but vulnerable. MetaMask, Trust Wallet.
Cold Wallet — Offline. Hardware wallets (Ledger, Trezor) or paper wallets. Secure, but less convenient.
Custodial Wallet — A third party holds your keys. Exchanges like Coinbase, Binance. "Not your keys, not your coins."
Non-Custodial Wallet — You control your keys. MetaMask, Ledger. Full ownership, full responsibility.
Scaling
Layer 1 (L1) — The base blockchain. Bitcoin, Ethereum, Solana. Where final settlement happens.
Layer 2 (L2) — Protocols built on top of L1 to increase throughput and reduce fees. Transactions execute on L2 and settle on L1. Polygon, Arbitrum, Optimism, zkSync.
Rollup — An L2 scaling technique that bundles multiple transactions into a single L1 transaction. Two types: optimistic (assumes valid, challenged if disputed) and ZK (proves validity with zero-knowledge proofs).
Sidechain — A separate blockchain connected to the main chain via a bridge. Processes transactions independently but can transfer assets to/from the main chain.
Sharding — Splitting the blockchain into parallel segments (shards) that process transactions simultaneously. Ethereum's long-term scaling strategy.
Security
51% Attack — If an entity controls more than half the network's mining/staking power, they can rewrite transaction history. Expensive on large networks, feasible on small ones.
Rug Pull — Developers drain liquidity or abandon a project after raising funds. Common in DeFi and NFT projects with anonymous teams.
Reentrancy Attack — A smart contract vulnerability where a malicious contract calls back into the victim contract before the first execution completes. The DAO hack (2016, $60M) was a reentrancy attack.
Front-Running — Inserting a transaction ahead of a known pending transaction to profit from the price impact. Bots monitor the mempool and pay higher gas to get priority.
MEV (Miner/Maximal Extractable Value) — The profit that miners/validators can extract by reordering, inserting, or censoring transactions. A fundamental challenge in blockchain fairness.
The Bottom Line
Crypto's vocabulary is dense, but it maps to real computer science and economics concepts. Understanding these terms isn't about following trends — it's about understanding the infrastructure being built.
The technology survives every crash. Learn the fundamentals, not the hype.
By estebanrfp — Full Stack Developer, dWEB R&D

