Blockchain Basics: What Actually Happens When You Send Crypto
Strip away the buzzwords and a blockchain is a shared spreadsheet plus a rule for who gets to write the next row. Here's how that mechanism actually works.
When people say "the blockchain", they usually mean some mix of three distinct things: a data structure, a network, and an economic mechanism. Conflating them is what makes the topic feel mystical. Separate them and the whole thing becomes mechanical.
A blockchain is a spreadsheet you can't quietly edit
At the bottom layer, a blockchain is just an append-only ledger. Every row is a transaction, "address A sent 0.5 BTC to address B", and rows are bundled into blocks. Each block contains a cryptographic fingerprint (a hash) of the previous block. Change a single character in an old block and every block after it has the wrong fingerprint. Tampering becomes detectable instantly.
This is the "chain" part. It's not magic, it's just hashing. The property it gives you is immutability: once a transaction is buried under a few thousand more blocks, rewriting it would require redoing every hash from that point onward, faster than the rest of the network is producing new ones. Possible in theory, prohibitive in practice.
A blockchain is a peer-to-peer network
Now imagine that ledger isn't sitting on one server. It's replicated across thousands of independent computers, nodes, anywhere in the world. Each node holds a full copy. When a new transaction comes in, every node checks it against its own copy, and if it's valid (sender has the funds, signature matches), it's eligible to be included in the next block.
The network exists so that no single party can decide what's true. A bank's database is fast and cheap, but the bank decides what it says. A blockchain is slower and more expensive, but no single party can decide what it says. That trade-off is the entire pitch.
A blockchain is an economic game for "who writes next"
The hard problem is: across thousands of nodes scattered around the world, who actually writes the next block? You can't have everyone write at once, and you can't pick a leader, because picking a leader recreates exactly the central authority you were trying to avoid.
The solution is a consensus mechanism, a rule that randomly picks the next writer in a way that's expensive to game.
Proof of work (Bitcoin): writers compete to solve a meaningless math puzzle. The first to solve it earns the right to write the next block and gets a block reward. The puzzle is hard enough that solving it requires real-world energy, which costs real-world money. To cheat the ledger you'd need more compute than the rest of the network combined, expensive in a way that's economically unprofitable to attempt.
Proof of stake (Ethereum after 2022): writers lock up some of their own crypto as a deposit. The protocol pseudo-randomly picks a writer weighted by how much they staked. If they cheat, they lose their stake ("slashing"). The skin in the game replaces the energy cost.
Both mechanisms are doing the same thing: making it expensive to be dishonest, so that being honest is the rational strategy.
What changes when a transaction "confirms"
When you send a transaction, it sits in a public waiting room (the mempool) until a writer picks it up and includes it in the next block. Once that block is added to the chain, your transaction has 1 confirmation. As more blocks are added on top, it gets buried deeper and becomes effectively impossible to reverse.
Different chains have different "settled" thresholds:
- Bitcoin: usually wait for 6 confirmations (~1 hour) for high-value transfers
- Ethereum: 1-2 epochs (~12-25 minutes) is considered final
- Solana: ~13 seconds, but with weaker finality guarantees than the above
Exchanges set their own confirmation requirements before crediting deposits. This is why a deposit can take 30 minutes to show up even though it "happened" instantly on-chain, the exchange is waiting for enough confirmations to make a chain reorganization economically implausible.
A common mistake: thinking "decentralized" means "no one is in charge"
Decentralized doesn't mean ungoverned. Bitcoin's protocol is governed by the developers who write the reference client, the miners who choose which version to run, and the economic majority of holders. Ethereum has a more visible foundation, ongoing roadmap, and contentious upgrades. Newer chains (Solana, Avalanche, Sui) are more centralized than they present, small validator sets, fast-moving upgrade processes, sometimes single companies behind the core team.
Decentralization is a spectrum, not a yes/no. It matters for trades because the kind of decentralization an asset has changes how it behaves under stress. A heavily-staked, broadly-distributed L1 with slow upgrades behaves differently in a bear market than a foundation- controlled L1 that can ship a fix overnight. Neither is automatically better, but if your trade thesis depends on "no one can shut this down", check whether that's actually true for the specific chain.
Mental model, the blockchain as a shared notebook
Picture a notebook in the middle of a room full of people. Anyone can read it. Anyone can propose a new entry. But before an entry is added, everyone in the room has to agree it follows the rules, and the act of agreeing is itself expensive (energy, money, time). Once an entry is in the notebook, ripping it out would require everyone to also rip out every later page, which is impossible in practice because new pages keep getting added.
That's it. The "magic" is just the cost of disagreeing being higher than the value of cheating. Every other property, censorship resistance, self-custody, programmability, falls out of that one mechanism.
Why this matters for trading
Blockchain mechanics determine settlement risk and withdrawal speed, which are real costs in active trading. A perpetual on Binance settles instantly within their database, but moving the resulting profits to your own wallet requires an on-chain withdrawal that depends on the network's confirmation time and current gas prices. During a market panic, both spike at the same time you most want to move funds. Knowing how this works lets you size that risk.
Takeaway
A blockchain is three things stacked: an append-only ledger, a network that replicates it, and an economic game that decides who writes next. You don't need to understand the cryptography to trade well, but you do need to understand that on-chain settlement has its own physics, separate from exchange-internal trades, and that "decentralized" is a spectrum that affects how an asset behaves under stress.
Related chapters
- Crypto Fundamentals8 min read
What Is Money? A First-Principles Look at Crypto
Money has three jobs, store of value, medium of exchange, unit of account. Crypto inherits, breaks, and rebuilds each one. Here's how to think about it.
Read chapter - Crypto Fundamentals7 min read
Public Keys and Wallets: How Crypto Ownership Actually Works
A wallet doesn't 'hold' your crypto. It holds the private key that proves you own crypto on a public ledger. Understanding the distinction prevents the mistakes that destroy holdings.
Read chapter