At its simplest, a blockchain is a record of transactions that many computers keep copies of at the same time. Instead of one bank or company holding the official ledger, thousands of independent machines each store the same list and constantly check one another's work. When those machines agree on what the list says, that agreement becomes the shared truth. This is why blockchains are often described as decentralized: no single party owns the record or can quietly rewrite it.
The name comes from how the data is organized. Transactions are gathered into groups called blocks. Each block holds a batch of transactions, a timestamp, and a reference to the block that came before it. That reference is what turns a pile of blocks into a chain. Because every block points backward to its predecessor, the blocks form a single ordered history running from the very first block, often called the genesis block, up to the most recent one.
The reference between blocks is not just a label. It is a cryptographic hash, which is the output of a mathematical function that takes any amount of data and produces a fixed-length string of characters. Hash functions have two useful properties. First, the same input always produces the same output. Second, changing even one character of the input produces a completely different output, and there is no practical way to work backward from the output to the input. Each block contains the hash of the block before it, so if someone altered an old transaction, that block's hash would change, which would break the link to the next block, and the next, and so on down the chain. Tampering with history is not impossible in theory, but it becomes obvious and computationally expensive very quickly.
That still leaves a question: who decides which new block gets added? This is the job of a consensus mechanism, the set of rules the network follows to agree on the next block. Two families of consensus are widely used. Proof of work asks participants, often called miners, to spend computing power solving a difficult mathematical puzzle. The first to solve it proposes the next block, and everyone else can verify the answer cheaply. The cost of electricity and hardware is what makes cheating unattractive. Proof of stake instead asks participants, called validators, to lock up units of the network's own asset as collateral. The protocol selects validators to propose and confirm blocks, and a validator who tries to approve invalid transactions can lose part of that collateral. Both approaches aim at the same goal: making honest behavior cheaper and more rewarding than dishonest behavior.
Ownership on a blockchain is handled with public key cryptography. Each user has a private key, which is a secret number, and a public address derived from it that others can see and send funds to. To move funds, you use the private key to produce a digital signature on the transaction. Anyone on the network can verify that the signature matches the address without ever learning the private key itself. This is why the phrase "not your keys, not your coins" circulates in crypto communities: control of the private key is control of the assets, and if a key is lost, there is usually no customer service line that can restore access.
Most blockchains are public and permissionless, meaning anyone can download the software, view the entire history, and take part in validating. Others are permissioned, run by a defined group of organizations that want shared record-keeping without a fully open network. Some blockchains also support smart contracts, which are programs stored on the chain that execute automatically when their conditions are met, enabling applications beyond simple transfers.
Blockchains involve real trade-offs. Because every participant processes and stores the same data, throughput is limited compared with a centralized database, and storage requirements grow over time. Transactions typically carry a fee paid to whoever secures the network, and those fees rise when demand for block space is high. Confirmation is probabilistic rather than instant: a transaction becomes progressively harder to reverse as more blocks are built on top of it. Understanding these mechanics, rather than any particular application built on them, is the foundation for making sense of everything else in the space.
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.