Skip to content
recaplica

    One moment: security check

    Cloudflare wants to make sure you're not a robot. Tick the box below and your search will continue on its own.

    IT
    recaplica Blockchain: What It Is and How It Works
    © 2026 Recaplica · recaplica.com — All rights reserved
    Home › Technology

    Blockchain: What It Is and How It Works

    By Recaplica Newsroom · Updated on September 17, 2026

    What to print

    Page numbers appear when printing with default margins.

    Slides

    Choose a cut

    Flash10 slidesThe essential thread, to present in classFull15 slidesEvery chapter and the deeper detail

    Both come with speaker notes.

    Telegram channel
    recaplica Clear in 30 seconds, yours in 10 minutes.
    In 30 seconds Key points Figures Deep dive Slides Myths Mind map Quiz Flashcards FAQ

    In 30 seconds quick read

    Blockchain is a digital ledger split into blocks that link together through cryptographic hashes, kept by many computers instead of one central authority. NIST (the National Institute of Standards and Technology) describes it as tamper-resistant, because each block carries the fingerprint of the one before it. Getting a new block onto the chain requires agreement, and different networks reach that agreement differently: Bitcoin relies on the proof of work laid out in Satoshi Nakamoto's 2008 whitepaper, while Ethereum switched to proof of stake in 2022. The technology started with Bitcoin but now also underpins smart contracts, supply-chain tracking and business-to-business transactions.

    Key Points

    • A block is made of a header holding metadata, plus the actual data, meaning the transactions, per NIST's definition.
    • Each block stores the hash of the block before it, so editing something already written would change that hash and every hash that follows.
    • Bitcoin runs on proof of work: nodes search for a nonce that produces a valid hash, and the network resets the difficulty every 2,016 blocks.
    • Ethereum moved to proof of stake in 2022, so validators put up 32 ETH instead of racing to compute a hash.
    • Nobody sits at the center of the network: NIST notes that Bitcoin's nodes are scattered around the world and no single party controls the chain.
    • Beyond payments, blockchains run smart contracts, track goods through supply chains, and record business-to-business transactions, again per NIST.

    Key figures

    • 2,016 blocks Bitcoin recalculates its proof-of-work difficulty every 2,016 blocks, to keep new blocks arriving at a steady pace. Source: NIST, NISTIR 8202 (2018)
    • 70 TWh a year In July 2022, the Ethereum network, still running on proof of work at the time, was burning through roughly 70 TWh a year worldwide according to Digiconomist, about as much as the Czech Republic. Source: Digiconomist, cited by Ethereum.org (2022)
    • 32 ETH Since 2022, under proof of stake, a participant has to lock up 32 ETH in the deposit contract to become a validator on the Ethereum network. Source: Ethereum.org (2022)

    Deep Dive

    What a Block Actually Contains

    According to NIST (the National Institute of Standards and Technology, 2018), a blockchain is a distributed digital ledger organized into blocks of cryptographically signed transactions, chained together. The technical definition rests on two properties: tamper resistance and tamper evidence. In practice, anyone who edits the ledger leaves a visible trace for whoever compares copies.

    Every block splits into two parts, as NIST explains: a header holding the metadata, and the actual data, meaning the batch of transactions collected in that block. The header does the linking work: it carries the hash digest, the cryptographic fingerprint, of the previous block’s header. Change something inside a block that’s already published, and its hash changes, a change that then ripples forward through every block that comes after, because each one carries the hash of the block before it.

    Real-world example: picture a notebook with numbered pages, where the top of each page prints a fingerprint of the page before it. Tear out a page in the middle to rewrite it, and the code at the top changes, which throws off the codes on every page after it. Anyone comparing the notebook against another copy would notice right away.

    The practical result is a ledger that’s hard to falsify without leaving a trace, the property NIST calls tamper resistance.

    A Network With No Center

    The Bitcoin blockchain, per NIST, is independently maintained by a distributed group of participants, with nodes that can sit anywhere in the world. There’s no single server holding the “correct” copy: each node keeps its own ledger and checks it against everyone else’s. It’s an arrangement that echoes how the internet works more broadly, where no central authority is needed to move data from one point of the network to another: blockchain applies that same distributed logic to the problem of keeping a shared, trustworthy record.

    The Consensus Problem: Who Gets to Write the Next Block

    If no one runs the network, there still has to be a rule for deciding who earns the right to add the next block. Satoshi Nakamoto’s Bitcoin whitepaper, published in 2008, settles this with proof of work: nodes compete to find a nonce, a number used only once, which combined with the block’s data produces a hash starting with a set number of zero bits via SHA-256. Finding it takes many attempts; checking it, once found, is instant. The consensus rule itself is simple: nodes always treat the longest chain, the one backed by the most computational work, as the correct one.

    Ethereum ran on the same principle, using the Ethash algorithm, until 2022, when it switched to proof of stake, as Ethereum.org documents. Instead of heavy computation, anyone who wants to become a validator deposits 32 ETH into a dedicated contract and runs three separate pieces of software: an execution client, a consensus client, and a validator client. In every slot, one validator gets picked at random to propose the next block. Act dishonestly, and a validator risks slashing: a penalty ranging from under 0.1% of its deposit, if it’s the only validator involved, up to 100% in a mass-slashing event touching many validators at once.

    Proof of work (Bitcoin)Proof of stake (Ethereum, since 2022)
    How you earn the right to writeSolving a cryptographic puzzle (nonce + hash)Depositing ETH as collateral (32 ETH)
    Main costElectricity: about 70 TWh a year for Ethereum on proof of work in 2022Capital locked up in the deposit
    Penalty for misbehaviorThe work invested is lost if the chain forksSlashing, from 0.1% to 100% of the deposit

    More Than Payments

    Bitcoin’s whitepaper describes a system built to let two parties pay each other directly, with no financial institution in between. NIST lists non-financial uses too: business-to-business transactions that record activity on digital or physical assets, supply-chain traceability (tracking a shipment’s location, for instance) and smart contracts, where a transaction sends data, processes it, and stores the result. These sit apart from cryptocurrency, which remains the best-known use case but far from the only one: blockchain remains the underlying technical structure, and cryptocurrency is just one application built on it.

    Seeing that distinction also helps make sense of what an algorithm actually is: proof of work and proof of stake are, in the end, procedures: defined sequences of steps applied to a specific problem, that of getting thousands of computers to agree without a boss.

    The Limits, According to the People Who Studied It

    NIST is blunt on one point: blockchain isn’t a cure-all, and it comes with trade-offs to weigh case by case. The resource demands of proof-of-work systems, NIST notes, have pushed publishing nodes toward regions with a surplus of cheap electricity. User security isn’t automatic either: an attacker who wants to target people using the network still has to track down each participant individually.

    Slide deck

    Slides ready to download and make your own in PowerPoint or Google Slides, with speaker notes. Pick the Flash cut or the Full one.

    Slide 1 of the presentation on Blockchain: BlockchainSlide 2 of the presentation on Blockchain: Who gets to decide what goes into a blockchain?Slide 3 of the presentation on Blockchain: Where we're headedSlide 4 of the presentation on Blockchain: Chapter 01: The block and its hashSlide 5 of the presentation on Blockchain: What's inside a blockSlide 6 of the presentation on Blockchain: Change an old block, and every block after it changes tooSlide 7 of the presentation on Blockchain: Chapter 02: A network with no centerSlide 8 of the presentation on Blockchain: Who's on the network: The nodes, Block publishers, The usersSlide 9 of the presentation on Blockchain: Chapter 03: Two ways to reach consensusSlide 10 of the presentation on Blockchain: Two consensus mechanismsSlide 11 of the presentation on Blockchain: The cost, before and afterSlide 12 of the presentation on Blockchain: Chapter 04: Myths worth bustingSlide 13 of the presentation on Blockchain: Immutability · Governance · AnonymitySlide 14 of the presentation on Blockchain: What makes it hard to edit a block that's already been published?Slide 15 of the presentation on Blockchain: Go deeper
    Flash10 slidesThe essential thread, to present in classFull15 slidesEvery chapter and the deeper detail

    Common myths

    • ✗ Myth Blockchain data is permanently unchangeable, full stop.

      ✓ Reality NIST (2018) points out that altering data already on the chain is difficult but not impossible in principle: applications that use a blockchain as a data layer work around this by treating later blocks as updates, not erasures. What blockchain offers is practical resistance to tampering, not an absolute mathematical guarantee.

    • ✗ Myth A blockchain runs itself, with no rules or authority needed.

      ✓ Reality NIST (2018) notes that if a single entity controls who can publish blocks, users still have to trust that entity. Removing a central server doesn't remove the need for rules about who gets to participate; it just moves the question of who sets them.

    • ✗ Myth Using a blockchain makes you anonymous, so attackers can't touch you.

      ✓ Reality According to NIST (2018), anyone wanting to target blockchain users still has to identify them individually. Addresses that carry no name (pseudonymity) are not the same as true anonymity, and they don't protect against a targeted attack.

    Mind map

    Drag the background to move around and the nodes to reposition them; use − and + to collapse and expand branches.

    Customize
    Mind map: Blockchain: What It Is and How It Works
    • Blockchain
      • Block structure
        • Block Header with metadata plus the actual transaction data
        • Hash Cryptographic fingerprint computed on the block
        • Chaining Each block stores the hash of the one before it
      • Decentralized network
        • Distributed nodes Spread around the world, per NIST
        • No central authority The ledger is run by a distributed group of participants
      • Consensus
        • Proof of work
          • Nonce and hash
          • Adjustable difficulty Every 2,016 blocks in Bitcoin
        • Proof of stake
          • Validators and staking 32 ETH deposited
          • Penalties Slashing from 0.1% to 100%
      • Applications
        • Direct payments No financial institution in between
        • Smart contracts
        • Traceability Supply chains and B2B transactions
      • Common myths
        • Absolute immutability
        • No governance needed
        • Total anonymity

    Quiz: test yourself

    Answer the questions to check what you have learned: you get instant feedback and a short explanation.

    Grade 0/10 0/5
    1 What links a block to the one before it in the chain?

    Per NIST, blocks are chained together because each one stores the hash digest of the previous block's header: changing an old block would change its hash, and with it every hash that follows.

    2 How often does the Bitcoin protocol recalculate its proof-of-work difficulty?

    NIST reports that Bitcoin, which runs on proof of work, adjusts its cryptographic puzzle difficulty every 2,016 blocks, to keep the chain growing at a steady pace.

    3 True or false: under proof of stake, a participant has to solve heavy cryptographic calculations to propose a new block.

    That's proof of work's job. Proof of stake, which Ethereum adopted in 2022, replaces the computation with a 32 ETH deposit that a validator risks losing if it misbehaves.

    4 What can happen to an Ethereum validator that acts dishonestly under proof of stake?

    Ethereum.org explains that the slashing penalty scales with how many validators are slashed around the same time: from under 0.1% of the stake for a lone validator up to 100% in a mass-slashing event.

    5 According to NIST, which of these is NOT actually true of blockchain?

    NIST makes clear that tamper resistance is practical, not absolute: some applications handle corrections by recording a new update on top of old data, rather than truly deleting it.

    Answers: 1-A · 2-B · 3-B · 4-A · 5-A

    Flashcards

    Tap the card to flip it and check whether you remember the answer, then move to the next one.

    1 / 8

    Explain it in your own words

    The ultimate test: if you can explain it in simple words, you've truly understood it. Write your explanation, then compare it with the Recap.

    Your explanation is saved only on this device.

    Blockchain is a digital ledger split into blocks that link together through cryptographic hashes, kept by many computers instead of one central authority. NIST (the National Institute of Standards and Technology) describes it as tamper-resistant, because each block carries the fingerprint of the one before it. Getting a new block onto the chain requires agreement, and different networks reach that agreement differently: Bitcoin relies on the proof of work laid out in Satoshi Nakamoto's 2008 whitepaper, while Ethereum switched to proof of stake in 2022. The technology started with Bitcoin but now also underpins smart contracts, supply-chain tracking and business-to-business transactions.

    Frequently asked questions

    Are blockchain and Bitcoin the same thing?

    No. Bitcoin was the first application built on a blockchain, described in Satoshi Nakamoto's 2008 whitepaper, but the underlying technology, a ledger of chained, hash-linked blocks, also powers things like Ethereum's smart contracts and supply-chain traceability, as NIST's 2018 report lays out.

    What's the difference between proof of work and proof of stake?

    Under proof of work, which Bitcoin uses, nodes compete to solve a cryptographic puzzle that burns electricity. Under proof of stake, which Ethereum has run since 2022, validators put up cryptocurrency as collateral instead of computing, and lose it if they misbehave.

    Who controls the data written to a blockchain?

    It depends on the network: in Bitcoin and Ethereum, no single entity does, according to NIST, but if one organization controls who can publish blocks, users still have to trust that organization.

    Can data already written to a blockchain be deleted or changed?

    Changing it is very hard, because it would alter the hash of that block and every one after it, but NIST is careful to note it isn't impossible in absolute terms: some applications handle corrections by recording a new update on top of the old data, instead of erasing it.

    How much energy does a proof-of-work blockchain use?

    It varies a lot by network: in July 2022, Ethereum, while it still ran on proof of work, was using about 70 TWh a year according to Digiconomist, roughly comparable to the Czech Republic's electricity consumption.

    Sources

    • NISTIR 8202, Blockchain Technology Overview (NIST)
    • Bitcoin: A Peer-to-Peer Electronic Cash System (Satoshi Nakamoto)
    • Proof-of-work (PoW) — Ethereum.org
    • Proof-of-stake (PoS) — Ethereum.org

    Every Recap goes through an independent review before publication.

    Every evening, the day's new Recaps on our Telegram channel. Join the channel →

    Keep learning

    • Technology ASCII Table: What Is It? The ASCII table assigns a fixed number to every letter, digit, punctuation mark, and keyboard control command, so that a computer, which only handles numbers, can represent text. Published in 1963 by the ANSI X3.4 committee and adopted for U.S. federal computers in 1968, it uses 7 bits and covers 128 characters, almost all of them from the English alphabet, according to the IEEE's Engineering and Technology History Wiki. RFC 20 shows how those 7 bits fit neatly inside an 8-bit byte, with the highest bit left unused; putting that extra bit to work opens up more combinations, the basis for the variants known as Extended ASCII. Because it only covers English, though, standard ASCII falls short for languages with accents, ideograms, or other alphabets — a gap Unicode was built to close. Read the Recap →
    • Technology Binary Code: What It Is and How Computers Write Numbers Binary code is how a computer represents numbers using only two digits, 0 and 1. The reason is physical: a computer's circuits reliably tell apart only two electrical states, current off or current on, and we label them 0 and 1 for convenience. Just like the decimal system, each digit's value depends on its position, but here positions are worth powers of two instead of powers of ten: the number 101 works out to (1×4)+(0×2)+(1×1), which is 5. Eight of these digits together form a byte, the unit a computer typically uses to hold one number. Binary alone covers numbers; writing letters needs an extra convention, such as ASCII or Unicode, covered in their own Recaps. Read the Recap →
    • Technology Unicode: What Is It? How It Replaced ASCII Unicode is the standard that gives a unique number, called a code point, to every character in every written language. It replaced ASCII, the 1963 code whose 128 characters covered only the English alphabet, with no accents and no other scripts. Text online travels almost always as UTF-8, one of the forms Unicode uses to turn those numbers into bytes, and it's backward compatible: a file written purely in ASCII is already valid UTF-8. Version 18.0 of the standard, published in September 2026, covers 172,808 characters. Read the Recap →

    recaplica

    Clear in 30 seconds, yours in 10 minutes.

    Recaps Mind maps Request a Recap Telegram channel Mind map maker Our method About Privacy & cookies Legal notes & terms of use

    © 2026 Recaplica · A project by Curi S.r.l. — VAT IT05472000750

    Statistics, only if you say so

    To learn which Recaps help most we would use Google Analytics, with aggregate, anonymous data. It starts only with your OK, and you can change your mind anytime. Privacy policy