A blockchain is a record of transactions that is stored and maintained by many computers at once, rather than by a single company or institution. Think of it as a shared notebook. Everyone participating has an identical copy, everyone can see the entries, and new entries can only be added according to rules that all participants agree on in advance. The word "blockchain" describes the structure of that notebook: entries are bundled into groups called blocks, and each block is linked to the one before it, forming a chain that stretches back to the very first block.
The linking is done with cryptography. Every block passes its contents through a mathematical function called a hash function, which turns any amount of data into a short, fixed-length string of characters. That string acts like a fingerprint. Change even one character of the underlying data and the fingerprint changes completely. Each new block includes the fingerprint of the block before it, so the blocks are chained together by their hashes. If someone tried to quietly edit an old transaction, that block's fingerprint would no longer match the reference stored in the next block, and the mismatch would cascade through every block that followed. This is why blockchain records are often described as tamper-evident: alterations do not go unnoticed.
The computers that store and check the ledger are called nodes. Anyone running the appropriate software can operate one on many public networks. When a user sends a transaction, it is broadcast to nearby nodes, which pass it along until it has spread across the network. Each node independently verifies that the transaction follows the rules: that the digital signature is valid, that the sender actually controls the funds being spent, and that the same funds are not being spent twice. Transactions that fail these checks are simply discarded. Because every node applies the same rules, no single participant has to be trusted.
Verified transactions still need to be ordered and finalized, and that is where consensus mechanisms come in. A consensus mechanism is the procedure a network uses to decide which block gets added next when many participants might propose one at the same time. Two designs are widely used. In proof of work, participants called miners compete to solve a computational puzzle, and the winner earns the right to publish the next block. Solving the puzzle requires enormous amounts of trial-and-error computation, which makes rewriting history expensive. In proof of stake, participants lock up units of the network's native asset as collateral, and the protocol selects among them to propose and attest to blocks. Validators who behave dishonestly can lose part of their collateral. Both approaches aim at the same goal: making honest participation cheaper and more rewarding than cheating.
Ownership on a blockchain rests on public-key cryptography. A user holds a private key, a secret number, and from it the software derives a public address that others can send funds to. Signing a transaction with the private key proves control of the associated address without ever revealing the key itself. This is the origin of the phrase "not your keys, not your coins." Whoever holds the private key can move the associated assets, and because most blockchain transactions are final once confirmed, there is no administrator who can reverse a mistaken or unauthorized transfer.
Not all blockchains are open to the public. Permissionless networks let anyone read the ledger, submit transactions, and run a node. Permissioned or private blockchains restrict participation to approved organizations, and are used in settings such as supply-chain tracking or interbank record keeping where the participants are known to one another. Some blockchains also support smart contracts, which are programs stored on the ledger that run automatically when conditions are met, enabling applications beyond simple payments.
Blockchains have real trade-offs. Because every node processes and stores the same data, throughput is limited compared with a centralized database, and storage requirements grow over time. Public networks charge fees that fluctuate with demand for block space, and transactions may wait during busy periods. Designers often describe a tension between decentralization, security, and scalability, where strengthening one tends to strain the others. Understanding these mechanics, rather than any particular network's marketing, is the most useful foundation for making sense of the wider crypto landscape.
This article is for general education only — not financial advice, and nothing here is a recommendation to buy, sell, or hold any asset. Cryptocurrency carries real risk of loss; always do your own research before making a financial decision.