BitcoinLightning beginner

What is the Lightning Network? How Bitcoin Fees Drop by 99%

How the Lightning Network works and enables 99% lower Bitcoin fees. Payment channels, HTLC, and real-world use cases explained for beginners.

· 6min

Buying coffee with Bitcoin costs more in fees than the coffee itself. Confirmation takes 10 minutes or more. The Lightning Network solves both problems at once.

Why Bitcoin is Slow and Expensive by Design

The Bitcoin blockchain produces one block roughly every 10 minutes. Each block can hold about 2,000 to 4,000 transactions. That is approximately 7 transactions per second. When users worldwide send transactions simultaneously, competition drives fees up.

This is not a bug but an intentional design choice. Increasing block size would boost throughput, but also raise the hardware requirements for running a node. If ordinary people cannot run nodes on their own computers, decentralization collapses. Bitcoin chose security and decentralization over speed.

So how do we get fast, cheap payments? The answer is separating into layers.

The Layer 2 Concept

Think about the internet. At the base is TCP/IP, a foundational protocol. It is slow and simple but reliable. On top of it sit application layers like HTTP (web), SMTP (email), and WebSocket (real-time chat). They add diverse functionality without touching the foundation.

Bitcoin takes the same approach.

  • Layer 1 (on-chain): The Bitcoin blockchain itself. Handles security and final settlement. Slow but immutable.
  • Layer 2 (off-chain): Protocols built on top of the blockchain. Handle fast, cheap everyday transactions.

The Lightning Network is Bitcoin’s flagship Layer 2. Launched on mainnet in 2018, it currently has over 17,000 nodes and more than 5,000 BTC in network capacity.

Payment Channels: The Core Mechanism

The basic unit of Lightning is the payment channel. The principle is surprisingly simple.

Step 1: Open a Channel

Alice and Bob open a channel. One opening transaction is recorded on the Bitcoin blockchain. Alice deposits 0.01 BTC into the channel. She pays just this one on-chain fee.

Step 2: Off-Chain Transactions

Once the channel is open, Alice and Bob transact freely outside the blockchain.

TransactionAlice BalanceBob Balance
Initial state0.010 BTC0.000 BTC
Alice → Bob 0.0030.007 BTC0.003 BTC
Bob → Alice 0.0010.008 BTC0.002 BTC
Alice → Bob 0.0020.006 BTC0.004 BTC

During this process:

  • No blockchain records
  • No fees
  • No waiting (completes in milliseconds)

Both parties simply sign and store the new balance state. Whether this happens 10 times or 1,000 times a day, nothing is recorded on the blockchain.

Step 3: Close the Channel

When the channel closes, one closing transaction is recorded on the blockchain. The final balances are settled to each party.

The result: only 2 transactions (opening + closing) hit the blockchain, yet thousands of payments were made in between.

If you made 1,000 transactions, the effective on-chain fee per transaction is 1/1,000th of the original cost. This is the math behind “99% reduction.”

Sending Without a Direct Channel

“Do I need to open a channel with everyone I want to pay?”

No. Lightning’s key innovation is routing.

If channels are connected as Alice → Bob → Charlie, Alice can pay Charlie through Bob. Bob merely relays; his own funds do not leave.

“What if Bob steals the money in transit?” This is solved by HTLC (Hash Time-Locked Contracts). A structure combining cryptographic hash values with time limits makes it mathematically impossible for intermediary nodes to steal funds. Bob can only receive his relay fee by forwarding the payment to Charlie. If he does not forward, he gets nothing.

As the network grows, more routes become available, enabling faster and cheaper payments.

On-Chain vs Lightning: By the Numbers

MetricOn-Chain (Layer 1)Lightning (Layer 2)
Speed10 min to 1 hourMilliseconds (instant)
Fees$1 to $50+Less than $0.01
Throughput~7 tx/secMillions tx/sec (theoretical)
PrivacyPublic blockchain recordOff-chain, hard to trace
Minimum amountImpractical if fee > amountEven 1 satoshi is sendable

Lightning excels at small payments. Paying $0.10 for content, per-second streaming payments — these become realistic.

Getting Started in 5 Minutes

Using Lightning does not require deep technical knowledge.

Choose a Wallet

WalletFeaturesDifficulty
Wallet of SatoshiSimplest, custodialBeginner
PhoenixNon-custodial, auto channel managementIntermediate
BreezNon-custodial, POS featuresIntermediate
ZeusConnect your own nodeAdvanced

For beginners, Wallet of Satoshi is the easiest starting point. Install the app and you immediately get a Lightning address (e.g., username@walletofsatoshi.com). You can send and receive bitcoin with this address.

As you become comfortable with Bitcoin custody principles, moving to a non-custodial wallet like Phoenix or Breez is advisable. Non-custodial means you control your own private keys: “your keys, your coins.”

Lightning Addresses

Traditional Lightning payments required generating an invoice and scanning a QR code. Recently, Lightning addresses have become standard, allowing simple transfers in email-like user@domain.com format.

Practical Limitations

No technology is perfect. Here is what to keep in mind.

Liquidity constraints. Bitcoin locked in a channel cannot be used elsewhere while the channel is open. If the balance shifts too far to one side, payments in that direction may fail.

Large payments are harder. If intermediate nodes lack sufficient channel capacity, routing large amounts can fail. Lightning suits small to medium payments; large amounts are better served on-chain.

Must be online. To receive Lightning payments, your node must be online. Mobile wallets address this with background services, but receiving while fully offline (as with on-chain) is not possible.

Despite these limitations, Lightning is maturing rapidly. It is used in Nostr (decentralized social network) micro-tips, in-game payments, international remittances, and more.

Summary

  • The Lightning Network is Bitcoin’s Layer 2 payment protocol
  • Payment channels enable off-chain transactions; only final settlement hits the blockchain
  • Fees are reduced by over 99% and payments complete in milliseconds
  • HTLC mathematically prevents intermediary fraud
  • Wallets like Wallet of Satoshi and Phoenix let anyone get started

Lightning is the bridge from Bitcoin as “digital gold” to Bitcoin as “digital cash.” A currency that stores value and works for everyday spending. That is the future Lightning is building.


Related posts:

Related