Module 4 of 4

The Lightning Network

How Lightning scales Bitcoin for everyday payments without compromising base-layer settlement, in concrete terms.

The Bitcoin base layer is optimised for final settlement. It does not scale to billions of daily payments, and it was never designed to. The Lightning Network is a second layer that handles high-volume, low-value payments off-chain, settling only the net result back to the base layer when necessary.

Payment Channels

Two parties open a Lightning channel by creating a bitcoin transaction that locks some funds into a multi-signature output — an output that requires both parties to sign before the funds can move. Once the channel is open, the two parties can update their respective balances by exchanging signed transactions back and forth between themselves, privately, without touching the base layer.

Each update revokes all previous states, so either party can always force the latest state onto the base layer if the other tries to cheat. This is enforced by penalty transactions — a cheater who tries to publish an old state loses the entire channel balance to the honest counterparty. The game theory makes cheating unprofitable.

Routing

You do not need a direct channel with everyone you want to pay. If Alice has a channel with Bob, and Bob has a channel with Carol, Alice can pay Carol by routing a payment through Bob. Bob never takes custody of the funds; the routing is atomic, enforced by cryptographic hash-locked contracts. Either the full payment completes across all hops, or none of it does.

This turns the Lightning Network into a global graph of channels. A payment from London to Lagos might route through a dozen different nodes, each operated independently, none of them knowing the full path or holding funds as an intermediary. The protocol finds the cheapest route automatically.

What This Enables

  • Instant settlement — Lightning payments confirm in about one second, regardless of geographic distance
  • Low fees — typical routing fees are a fraction of a cent, with many routes costing effectively zero
  • No chargebacks — once a payment completes, it is final; there is no intermediary who can reverse it
  • Micropayments — it is practical to pay a cent or less, enabling use cases (streaming payments for content, per-API-call billing) that were economically impossible with traditional payment rails
  • No identity requirement — Lightning payments do not require the payer to identify themselves; there is no KYC at the protocol level

What It Does Not Do

Lightning is not a replacement for base-layer settlement. For large payments, for final settlement, for long-term holding, the base layer is the correct place. Lightning is for the transactions that would otherwise happen on credit card rails — small amounts, many per day, where speed and cost matter more than the absolute finality of base-layer confirmation.

The two layers together form a complete payment system. The base layer is the reserve and the final settlement network. Lightning is the spending layer. Neither works alone, and neither needs to do everything. The architectural decision to separate them is what allows Bitcoin to scale without compromising its base-layer guarantees.