HomeBlogVideo Help Guide
Log inSign up
Basics

What is blockchain? Simple explanation

A silver chain coiled around a gold Bitcoin coin, in YimmiT pink light

Blockchain is a way to keep a shared record of "who owns what" (or "what happened when") across many computers, so no single person or company can quietly rewrite the history. Instead of trusting one central database, participants follow a set of rules that makes the ledger tamper-evident and, in practice, hard to change once it's widely accepted.

That's the core. Everything else, crypto, NFTs, enterprise networks, is a variation on how that notebook is managed.

What is blockchain technology

Blockchain technology is a type of distributed ledger: data is stored and updated across multiple participants instead of living in one central repository. Many sources summarize it as a shared, (typically) immutable ledger for recording transactions and tracking assets.

What makes a blockchain different from a regular database

A regular database (like a bank's ledger) is controlled by one organization:

  • one party decides who can write data
  • one party can edit or roll back entries (within their policies)
  • other parties trust that organization to keep it accurate

A blockchain flips that:

  • multiple parties maintain copies
  • new entries are added only if the network's consensus rules accept them
  • older entries become increasingly hard to alter without detection

The key parts of a blockchain (the pieces you'll hear about)

1) Blocks

Transactions (or records) get grouped into "blocks." Each block contains data plus metadata that helps the network verify it and connect it to the previous block.

2) Hashes (digital fingerprints)

A hash is a unique fingerprint of data. If even one character changes, the hash changes. Blockchains use hashes to link blocks together so tampering becomes obvious.

3) The chain (linking blocks in order)

Each block references the previous one. That linkage creates a chronological chain. If you try to change something in an older block, you break the links after it, which is easy for the network to detect.

4) Consensus (how everyone agrees)

Consensus is the process the network uses to agree on:

  • which transactions are valid
  • which block gets added next
  • how to handle conflicts if two versions appear

Different blockchains use different consensus mechanisms. Bitcoin uses proof of work and a "longest chain" rule to establish an ordering of transactions.

5) Nodes (the computers running the network)

Nodes keep copies of the ledger, verify rules, and share updates. Some nodes do more work than others depending on the blockchain design.

How blockchain works step by step

Here's a practical, step-by-step flow using a simple "send value" example. Even if you never touch crypto, the flow explains how blockchains coordinate shared truth.

Step 1: A transaction is created

Someone requests an update to the ledger. In crypto, that might be "send 0.01 BTC from A to B." In supply chain, it might be "container X arrived at port Y."

Step 2: The network checks basic validity

Nodes validate the request against the rules:

  • Is the sender allowed to do this?
  • Is the format correct?
  • Is the record consistent with the current ledger state?

Step 3: The transaction is broadcast

The request spreads across the network so other participants can see and verify it.

Step 4: Transactions are grouped into a block

A set of pending transactions gets assembled into a candidate block.

Step 5: Consensus selects the next accepted block

This is where blockchains differ most:

  • In proof of work systems, miners compete to publish the next valid block, and the network follows the chain with the most accumulated work.
  • In other systems, validators might be chosen differently (proof of stake designs), but the goal is the same: agree on one history.

Step 6: The block is added and replicated

Once accepted, the block is added to the chain and shared across nodes. Older blocks become harder to modify as more blocks stack on top of them, increasing tamper resistance.

Step 7: Finality grows over time

Many blockchains treat "more confirmations" (more blocks after yours) as more confidence that the record is permanent.

Blockchain vs traditional database (a clear comparison)

QuestionTraditional databaseBlockchain
Who controls writes?One organizationShared rules across participants
Can old records be edited?Often yes (with admin rights)Typically tamper-evident and hard to change
Do participants need to trust one party?YesLess, trust is shifted to protocol + consensus
PerformanceOften fasterCan be slower (consensus adds overhead)
Best forInternal systemsMulti-party systems with low trust

Public vs permissioned blockchains

Not all blockchains are open to everyone.

Public (permissionless) networks

  • Anyone can usually read the ledger.
  • Anyone may be able to participate in validation (depending on rules).
  • Examples: Bitcoin and many major crypto networks.

Bitcoin's design uses an ongoing chain of proof of work to create a record that is extremely hard to change without redoing the work.

Permissioned (private or consortium) networks

  • Participation is restricted to approved entities.
  • Useful when businesses want shared data without fully public access.
  • Often used for enterprise workflows where participants are known.

A practical way to choose:

  • If your problem is "multiple organizations must share a trusted log," permissioned can fit.
  • If your problem is "anyone should be able to verify, globally," public networks shine.

Smart contracts in one paragraph

Some blockchains let you run "smart contracts," which are programs stored on the blockchain that execute when conditions are met. Think of them as "if this, then that" logic the network enforces.

Example:

  • If payment is received, release a digital receipt.
  • If a vote passes, update a governance setting.
  • If collateral falls below a threshold, liquidate a loan.

This is where blockchain becomes more than a ledger and turns into a programmable settlement layer.

Real-world examples that make blockchain click

Example 1: Tracking a product through a supply chain

Problem: multiple companies touch the same shipment, and each has its own database.

Blockchain approach:

  • Every handoff is recorded as a new entry
  • All parties see the same timeline
  • Disputes are easier to audit because the history is shared

This can reduce "version-of-truth" fights between vendors.

Example 2: Cross-border settlement records

Even if money moves through traditional rails, some organizations use shared ledgers to synchronize settlement instructions and reduce reconciliation overhead.

The value is not "magic speed." It is reducing mismatched records.

Example 3: Verifiable credentials (like a diploma)

A university could publish a credential hash to a ledger. An employer can verify that the credential matches what the university issued without the university emailing back every time.

The blockchain stores proof, not necessarily the private data.

When blockchain is the wrong tool

Blockchain is not automatically better. It is often worse when:

  • You only have one organization writing data
  • You need fast updates (thousands per second) with low latency
  • Data must be private and deletable on demand
  • Participants already trust a central authority

Risks and limitations you should know early

Immutability cuts both ways

Many explain blockchains as "immutable," meaning records should not be altered. In practice, errors are often corrected by adding new entries that reverse or supersede the old ones, not by deleting history.

Privacy is not automatic

Public blockchains can be transparent by design. Depending on how you use them, transaction data can be visible.

Governance is messy

Who upgrades the software? How do participants coordinate changes? Real networks evolve through governance processes that can create forks or disputes.

Cost and scalability

Consensus can be expensive and slower than centralized systems. That's the tradeoff for shared trust.

A simple way to "see" blockchain yourself

If you want hands-on understanding, do this exercise:

  1. Open a block explorer for any major public chain.
  2. Look up a transaction ID.
  3. Note: timestamp, sender/receiver addresses, fee, and confirmations.
  4. Compare two transactions: one with a low fee, one with a higher fee.

You will immediately see that blockchains are not abstract. They are public accounting systems with real constraints.

FAQ

What is blockchain? Simple explanation in one sentence

A blockchain is a distributed ledger where transactions are grouped into blocks that are cryptographically linked, making changes to history tamper-evident and increasingly difficult over time.

What is blockchain technology used for

It's used when multiple parties need a shared record without relying on a single controller, such as auditing workflows, supply chain tracking, and certain financial settlement processes.

How blockchain works step by step for a transaction

A transaction is created, broadcast to the network, validated by nodes, grouped into a block, accepted through consensus, and replicated so the ledger converges on one history.

Is blockchain the same as Bitcoin

No. Bitcoin is one application that uses blockchain-like technology. The Bitcoin paper describes a chain of proof of work that timestamps transactions into an ongoing record.

Is blockchain always immutable

Blockchains are typically designed to be tamper-evident and tamper-resistant, but "immutability" is a practical property that depends on consensus, participation, and the network's security assumptions.

Sources and further reading

Related guides: What are cryptocurrencies? · What is Bitcoin?

This article is educational and is not financial, investment, or tax advice. Crypto assets are volatile and carry risk; do your own research and consider a licensed professional before making decisions. About our editorial process.