tupicAcademy

Module 2 — Blockchain Basics

·course·2026-06-11

Now that you understand why shared control matters (Module 1), let's open the box and see how a blockchain actually keeps a shared, tamper-proof record. We'll use plain language and analogies throughout.

2.1 Blockchain in one sentence

A blockchain is a shared digital ledger — a record book of transactions — that is copied across many participants and built so that past entries cannot be secretly changed.

That's it. Everything else is detail. Keep that sentence in mind as we go deeper.

2.2 What "block" and "chain" actually mean

Transactions don't get written one at a time forever. They're grouped into blocks — think of a block as a single page in the ledger that holds a batch of recent transactions.

When a page fills up, it's "sealed" and a new page begins. The clever part: each new page contains a fingerprint of the page before it. That's the chain — every block points back to the previous one, all the way to the very first block. Pages linked in order, each locked to the one before.

Picture a stack of paper where each new sheet has the previous sheet's unique fingerprint printed at the top. If someone swaps out an old sheet, its fingerprint changes — and suddenly it doesn't match what the next sheet expected. The tampering is obvious.

2.3 The hash — a fingerprint for data

A hash is the tool that makes those "fingerprints" possible. A hash function takes any input — a word, a paragraph, an entire block of transactions — and produces a short, fixed-length string of characters that uniquely represents it.

Two important properties, in plain terms:

  • The same input always gives the same hash. Hash the word "hello" today or next year, you get the identical result.
  • Even a tiny change to the input completely changes the hash. Change one letter and the output looks totally different — there's no "close." This is why a hash works like a tamper-detector.

Example in spirit (not real values): hashing "I owe you 10" might give a3f9..., while hashing "I owe you 100" gives 7c1b... — wildly different, even though only one character changed. So if anyone edits a past transaction, its hash no longer matches, and the whole chain notices.

2.4 Immutability — why you can't rewrite the past

Immutability means: once something is recorded and confirmed, it's practically impossible to change.

Here's the chain reaction (literally) that protects the past:

  1. Each block's fingerprint depends on its contents.
  2. Each block also contains the previous block's fingerprint.
  3. So to alter an old transaction, you'd have to recompute that block's fingerprint…
  4. …which breaks the next block, so you'd have to redo that one too…
  5. …and every single block after it, on a majority of the many copies, faster than the rest of the network keeps adding new blocks.

In a healthy network, that's effectively impossible. The result is a record everyone can trust to reflect what really happened — without anyone needing to trust a single central keeper.

2.5 Public keys, private keys, addresses, and signatures

Blockchains let you prove "this is really me" without a username and password held on some company's server. They use a pair of keys:

  • A private key — a secret only you hold. Think of it as the master key to your funds. Whoever has it controls what it controls. You never share it.
  • A public key / address — derived from your private key and safe to share. Think of it like an account number people can send to.

When you make a transaction, you sign it with your private key. Everyone else can verify the signature using your public key — confirming the transaction genuinely came from you — without ever seeing your private key. It's like a wax seal only you can stamp but anyone can recognize.

This is why, across every wallet in every ecosystem (a consumer wallet like the one in the Tupic ecosystem included), the number one safety rule is the same: never share your private key or recovery phrase. It is the one secret that controls everything.

2.6 How a transaction gets confirmed and recorded

Let's walk one transaction through its life:

  1. You create it. "Send 5 tokens from my address to Maria's address."
  2. You sign it with your private key, proving it's really you.
  3. You broadcast it to the network.
  4. The network checks it — Do you have the funds? Is the signature valid? Is it not a duplicate?
  5. It gets bundled into a block with other valid transactions.
  6. The network agrees the block is valid (how that agreement happens is Module 4's topic).
  7. The block is added to the chain. Now the transaction is part of the permanent, shared record. Maria can see her balance go up.

The whole thing usually takes seconds to minutes depending on the network. When a consumer app shows a brief "pending… confirmed" moment after you send, this is what's happening behind the scenes.

2.7 Common myths and misunderstandings

Let's clear up a few things people often get wrong:

  • "Blockchain = cryptocurrency." No. Cryptocurrency is one use of blockchain. Blockchains also track supply chains, records, in-app rewards, and more.
  • "It's completely anonymous." Usually it's pseudonymous — your address isn't your name, but activity tied to an address can often be analyzed. True anonymity takes extra effort.
  • "Once it's on the blockchain, it's private." The opposite is often true — many blockchains are very public and transparent by design.
  • "Blockchain can't ever be wrong." It faithfully records whatever it's told. If you send to the wrong address, the blockchain correctly records your mistake — and can't undo it. The accuracy is about tamper-resistance, not about protecting you from your own errors.
  • "All blockchains waste enormous energy." Only some consensus methods are energy-hungry. Others (Module 4) use almost none.

Key takeaway: A blockchain is a shared ledger, organized into linked blocks, locked together by hashes, made tamper-proof by immutability, and operated by people who prove their identity with keys instead of passwords.


⬅ Previous: Module 1 — Centralized vs Decentralized  |  Next: Module 3 — Types of Blockchain Networks


Tupic Academy — Education series. Free to learn, no login required.

    share