The Lightning Network is a payment channel network built on top of Bitcoin that enables near-instant, low-fee transactions without putting every payment on the blockchain. Two participants open a channel by funding a multisig Bitcoin address on-chain. They can then send payments between themselves instantly by updating a shared balance sheet, with no on-chain transactions required until the channel is closed. Lightning extends this to a network: you can pay anyone connected to the network through a path of channels, not just your direct channel partners.

How Lightning payment channels work

Opening a channel requires one on-chain Bitcoin transaction (the funding transaction) that locks a specific amount of BTC in a 2-of-2 multisig. Both parties must sign any settlement. Inside the channel, payments are instant: the two parties exchange cryptographically signed commitment transactions that represent the current balance split. Neither party needs to broadcast these to the blockchain; they simply update their local balance records and keep the latest commitment transaction in case of dispute.

Closing a channel publishes the latest commitment transaction to the blockchain. If both parties agree, this is a cooperative close in one transaction. If one party disappears or tries to cheat by broadcasting an old state (where they had more BTC), the other party has a 1 to 2 week window to broadcast a “justice transaction” that takes all the channel funds as punishment for the attempted fraud.

What this means for traders

Lightning solves Bitcoin’s throughput problem for small payments. Bitcoin mainnet processes 7 transactions per second at $1 to $30 per transaction during high-fee periods. Lightning processes payments in 100 to 500 milliseconds at fees below $0.01. As of 2026, Lightning has roughly 50,000 to 70,000 active channels and approximately 5,000 to 6,000 BTC ($450 to $540 million) in channel capacity. This is still small compared to Ethereum L2 TVL but represents a growing base for Bitcoin payments.

Lightning is not used for trading or DeFi in the traditional sense: there is no way to run a smart contract on Lightning. It is a payment rail. Its relevance for traders is primarily in Bitcoin’s long-term narrative as a medium of exchange and in understanding why Bitcoin’s transaction fee economics differ from Ethereum’s: Lightning offloads payment volume, which affects how much fee revenue Bitcoin miners earn from on-chain transactions long-term. For Bitcoin’s base-layer economics, see proof of work and miner economics and Bitcoin halving explained.

A concrete example

You want to pay for a $5 coffee with Bitcoin. On-chain: fee of $2 to $20 depending on mempool congestion. Confirmation time: 10 minutes. Impractical. On Lightning: open a channel once with $200 to a well-connected node (one on-chain transaction), then pay any merchant connected to the network for $0.001 per transaction, settled in under 1 second. Strike and Phoenix Wallet handle the channel management automatically so users do not need to understand the underlying mechanics. El Salvador’s Chivo wallet uses Lightning for its bitcoin payment infrastructure, and Strike has processed millions in Lightning payments globally since 2021.

Frequently asked questions

What happens if your Lightning node goes offline?
If you are offline, you cannot receive payments in channels where you are a routing node. Your existing channel balances are safe: the counterparty cannot steal from you while you are offline because any old state they try to broadcast can be disputed within the timeout window when you come back online. Watchtower services monitor channels on your behalf while you are offline and submit justice transactions if a counterparty attempts to cheat.

What limits Lightning’s capacity?
Channel liquidity is the primary constraint. A payment route requires that each intermediate channel has enough inbound and outbound capacity to forward the payment. If you want to send 0.5 BTC through a path, every channel in that path needs 0.5 BTC of capacity in the correct direction. Large payments often fail to route because no path with sufficient liquidity exists. This is why Lightning is more practical for small payments (under $1,000) and why some proposed solutions (channel splicing, liquidity advertisements) aim to make capacity allocation more dynamic.

Is Lightning the same as Ethereum’s Layer 2s?
No. Lightning is a payment channel network specific to Bitcoin payments. Ethereum L2s (Arbitrum, Base, Optimism) are rollups that run full EVM environments, enabling smart contracts, DeFi, and arbitrary computation. Lightning has no smart contract support and is optimized exclusively for payments. Bitcoin also has the Stacks blockchain and RGB protocol exploring smart contract functionality, but these are separate from Lightning and have different security models.