Knowing Bitcoin https://knowingbitcoin.com Get to know Bitcoin, step by step. Thu, 12 Feb 2026 18:48:28 +0000 en-US hourly 1 https://wordpress.org/?v=6.9.1 https://knowingbitcoin.com/wp-content/uploads/2025/01/cropped-image-32x32.png Knowing Bitcoin https://knowingbitcoin.com 32 32 Lightning Invoices Explained: BOLT11 and BOLT12 https://knowingbitcoin.com/lightning-invoices-bolt11-bolt12/ Thu, 12 Feb 2026 18:48:28 +0000 https://knowingbitcoin.com/lightning-invoices-bolt11-bolt12/ A Lightning invoice is the mechanism that makes Lightning Network payments possible. Every time you scan a QR code to pay someone over Lightning, you are reading an encoded invoice ... Read more

The post Lightning Invoices Explained: BOLT11 and BOLT12 appeared first on Knowing Bitcoin.

]]>
Reading Time: 7 minutes

A Lightning invoice is the mechanism that makes Lightning Network payments possible. Every time you scan a QR code to pay someone over Lightning, you are reading an encoded invoice that contains all the information your wallet needs to route the payment: the destination, the amount, the payment hash, an expiration time, and routing hints. Understanding how Lightning invoices work — and the differences between the BOLT11 and BOLT12 standards — gives you a clearer picture of how payments actually move through the network and why the protocol is evolving.

This guide explains both invoice formats at a practical level, covers their differences, and discusses what BOLT12 means for the future of Lightning payments.

What Is a Lightning Invoice?

A Lightning invoice is a payment request. Unlike an on-chain Bitcoin address where you send whatever amount you choose, a Lightning invoice typically specifies exactly how much to pay, where to send it, and how long the request remains valid. The recipient generates the invoice, shares it with the sender, and the sender’s wallet reads the encoded data to construct and route the payment.

The term “invoice” is precise — it is a request for a specific payment, not a persistent address. Once paid or expired, a standard Lightning invoice cannot be reused. This is fundamentally different from on-chain Bitcoin addresses, which can receive multiple payments over an indefinite time period.

BOLT11: The Current Standard

BOLT11 (Basis of Lightning Technology, specification #11) has been the dominant Lightning invoice format since the network’s early days. If you have used the Lightning Network at all, you have interacted with BOLT11 invoices — even if you only saw them as QR codes.

Anatomy of a BOLT11 Invoice

A BOLT11 invoice looks like a long string of alphanumeric characters, typically starting with lnbc (for mainnet Bitcoin) followed by encoded payment data. Here is what is packed inside:

  • Network prefix: lnbc (mainnet), lntb (testnet), or lnbcrt (regtest)
  • Amount: The payment amount, encoded in the string (e.g., lnbc50n = 50 satoshis). Can be omitted for “any amount” invoices.
  • Timestamp: When the invoice was created
  • Payment hash: A 256-bit hash that the payment is conditional on. The recipient knows the preimage (the secret that hashes to this value); the sender does not. This is the cryptographic glue that makes multi-hop payments atomic.
  • Destination (payee node ID): The public key of the recipient’s Lightning node
  • Description: A human-readable description of what the payment is for (e.g., “Coffee at Shop X”)
  • Expiry: How long the invoice remains valid (default: 1 hour, configurable)
  • Routing hints: Suggested routes for reaching the destination, particularly useful when the recipient’s node is not well-connected to the public graph
  • Signature: Cryptographic signature from the recipient, proving they created the invoice

How a BOLT11 Payment Works

  1. The recipient generates a random 32-byte secret (the preimage).
  2. The recipient hashes the preimage to produce the payment hash and encodes it into a BOLT11 invoice.
  3. The recipient shares the invoice with the sender (QR code, text, NFC, etc.).
  4. The sender’s wallet decodes the invoice, reads the destination and amount, and finds a route through the network.
  5. The payment travels hop by hop through intermediary nodes, each one holding funds conditional on receiving the preimage (these are Hash Time-Locked Contracts, or HTLCs).
  6. The final recipient reveals the preimage to the last hop, which reveals it back through the chain. Each hop resolves its HTLC, and the payment settles.

BOLT11 Limitations

BOLT11 has served the Lightning Network well but has several structural limitations:

  • Single-use by design. Each invoice contains a unique payment hash. Once paid, it cannot be paid again. Merchants generating thousands of invoices for web checkout need a backend that creates fresh invoices for each customer — adding complexity.
  • Recipient privacy leak. The invoice includes the recipient’s node public key. Anyone who sees the invoice knows which node is receiving the payment, which can potentially be linked to an IP address or real-world identity.
  • Size. BOLT11 invoices are cryptographically signed and can be quite long, especially with routing hints. This makes them harder to display in compact QR codes that lower-quality cameras might struggle to read.
  • No native reusability. Workarounds like LNURL exist to provide reusable payment endpoints, but these are add-on protocols, not part of the Lightning specification itself.
  • Requires an online recipient. The recipient must be online to generate an invoice. If a merchant’s node is temporarily offline, no invoices can be created and no payments can be received.

BOLT12: The Next Generation

BOLT12 (also called “Offers”) addresses BOLT11’s limitations with a fundamentally redesigned payment flow. Proposed by Rusty Russell (Core Lightning developer), BOLT12 introduces a two-step request-response model that enables reusable payment codes, recipient privacy, and more flexible payment interactions.

How BOLT12 Offers Work

Instead of generating a single-use invoice, the recipient creates an offer — a compact, reusable payment code. Here is the flow:

  1. The recipient creates a BOLT12 offer and publishes it (on their website, social media, printed on a card, etc.). The offer is identified by a string starting with lno.
  2. The sender scans or pastes the offer.
  3. The sender’s wallet sends an invoice request directly to the recipient’s node via an onion-routed message.
  4. The recipient’s node automatically generates a unique invoice in response and sends it back to the sender.
  5. The sender’s wallet pays the invoice using the standard HTLC mechanism.

The key difference: the offer itself does not contain a payment hash or amount. It is just a lightweight pointer that says “contact this node to get an invoice.” The actual invoice is generated on demand, uniquely for each payment.

BOLT12 Key Improvements

Property BOLT11 BOLT12
Reusability Single-use Reusable (same offer, many payments)
Recipient privacy Node ID exposed in invoice Blinded paths hide recipient identity
QR code size Large (signed invoice with full data) Compact (offer is smaller)
Offline generation No (requires online recipient) Offer can be created offline, but recipient must be online when payment arrives
Recurring payments Not natively supported Native support for subscriptions
Proof of payment Preimage proves payment Preimage proves payment + payer can be identified if needed
Refund flow No standard mechanism Built-in refund protocol

Blinded Paths: Privacy by Default

One of BOLT12’s most significant features is blinded paths. Instead of including the recipient’s node ID in the offer, the offer can contain a blinded route — a path where intermediate hops are encrypted so that only each hop knows the next step, not the final destination. The sender can route a payment to the recipient without ever learning the recipient’s node identity.

This is a meaningful privacy upgrade. With BOLT11, every invoice reveals the recipient’s node public key. Chain analysis firms and surveillance companies can build maps of which nodes receive payments. Blinded paths break this link, making Lightning payments more private at the protocol level.

Recurring Payments and Subscriptions

BOLT12 includes native support for recurring payments. A subscription offer can specify a payment schedule (e.g., monthly), and the payer’s wallet can automatically send payments at the defined interval. This eliminates the need for custom subscription management layers built on top of Lightning — a pain point for developers building paid services with BOLT11.

Current Adoption Status (2026)

BOLT12 support varies across implementations:

  • Core Lightning (CLN): Full BOLT12 support. CLN was the first major implementation to support offers natively.
  • Eclair (and Phoenix Wallet): BOLT12 support implemented. Phoenix can send and receive via BOLT12 offers.
  • LND: BOLT12 support is under active development. LND has historically been slower to adopt BOLT12 compared to CLN and Eclair.
  • LDK: BOLT12 support has been implemented, making it available to wallets built on the Lightning Dev Kit.
  • OCEAN mining pool: Supports BOLT12 offers for mining payouts — miners can receive regular small payouts to their Lightning wallet via a reusable offer.

The adoption is progressing but not yet universal. Most users in 2026 still primarily interact with BOLT11 invoices. BOLT12 is gaining traction as implementations mature and wallets expose the feature in their interfaces. The backward compatibility of the Lightning protocol means both formats coexist — your wallet can support both BOLT11 and BOLT12 simultaneously.

LNURL: The Bridge Protocol

Between BOLT11 and BOLT12, the community developed LNURL — a set of protocols that add missing functionality to BOLT11 without changing the core specification. LNURL-pay provides reusable payment links. LNURL-withdraw enables pull payments. LNURL-auth enables login with Lightning. Lightning Addresses ([email protected] format) are built on LNURL-pay.

LNURL solved many of BOLT11’s limitations before BOLT12 was ready. However, LNURL requires a web server to mediate the interaction, which introduces a centralized point of failure and a potential privacy leak. BOLT12 achieves similar functionality natively at the protocol level without requiring external infrastructure.

The long-term expectation is that BOLT12 will gradually absorb many LNURL use cases, but LNURL will persist for backward compatibility and specific web-integration scenarios.

Practical Implications for Users

What does all this mean if you are a regular Lightning user, not a protocol developer?

  • For paying invoices: Your wallet handles the technical details. Whether you scan a BOLT11 invoice or a BOLT12 offer, the payment experience is similar — scan, confirm amount, pay. Modern wallets like Phoenix support both formats transparently.
  • For receiving payments: BOLT12 offers mean you can publish a single payment code on your website or social profile. Anyone can pay you multiple times using the same code — no need to generate fresh invoices for each transaction.
  • For privacy: If privacy matters to you, prefer wallets and services that support BOLT12 with blinded paths. This prevents your node identity from being exposed in every payment request.
  • For subscriptions: When BOLT12 recurring payments are widely supported, subscribing to paid content or services over Lightning will work natively without custom infrastructure.

Frequently Asked Questions

Can I use BOLT11 and BOLT12 at the same time?

Yes. Wallets that support both formats can send and receive using either. BOLT11 remains the fallback for interacting with wallets and services that have not yet adopted BOLT12. There is no conflict between the two — they coexist on the same Lightning Network.

Do I need to do anything to switch to BOLT12?

No active migration is needed. As your wallet software updates to support BOLT12, you will gain the ability to create and pay offers alongside traditional invoices. Check your wallet’s release notes for BOLT12 support status.

Are BOLT12 payments faster than BOLT11?

The payment itself moves at the same speed — both use the same HTLC routing mechanism. BOLT12 adds one extra round trip (the invoice request/response exchange) before the payment is sent, but this typically takes less than a second over the Lightning Network’s onion-routed messaging.

What is a Lightning Address?

A Lightning Address looks like an email address ([email protected]) and is built on LNURL-pay. When someone pays your Lightning Address, their wallet contacts a web server at your domain to fetch a BOLT11 invoice. It is convenient but requires a web server and does not provide the privacy benefits of BOLT12 blinded paths.

Will BOLT11 stop working?

No. BOLT11 is deeply embedded in the Lightning ecosystem and will remain functional for the foreseeable future. BOLT12 is an addition, not a replacement. The Lightning specification is designed for backward compatibility — new features coexist with existing ones.

Part of our free Bitcoin course: This topic is covered in depth in
Lightning Channels and Routing from the
Lightning Network & Bitcoin Nodes course.

Related Articles

The post Lightning Invoices Explained: BOLT11 and BOLT12 appeared first on Knowing Bitcoin.

]]>
Alby Wallet Review: Lightning for the Browser https://knowingbitcoin.com/alby-wallet-review-lightning-browser/ Thu, 12 Feb 2026 18:48:27 +0000 https://knowingbitcoin.com/alby-wallet-review-lightning-browser/ Alby Wallet bridges the gap between Lightning Network payments and the web browser — a connection that no other wallet handles as seamlessly. Starting as a browser extension for one-click ... Read more

The post Alby Wallet Review: Lightning for the Browser appeared first on Knowing Bitcoin.

]]>
Reading Time: 5 minutes

Alby Wallet bridges the gap between Lightning Network payments and the web browser — a connection that no other wallet handles as seamlessly. Starting as a browser extension for one-click Lightning payments, Alby has evolved into Alby Hub: a self-custodial Lightning node that connects to web applications through Nostr Wallet Connect (NWC). If you use Nostr, tip content creators, or want to pay for web services with bitcoin, Alby is the wallet designed specifically for that workflow.

This review covers Alby Hub’s architecture, its NWC integration, deployment options, fee structure, and how it compares to mobile-first Lightning wallets in 2026.

Alby Hub Specifications

Specification Detail
Developer Alby Inc.
Lightning Backend LDK (default), also supports LND, Phoenixd, Cashu
Custody Model Self-custodial
Platforms Web app, Desktop (self-hosted), Cloud (Alby Cloud)
Browser Extension Chrome, Firefox, Edge, Brave
NWC Support Full Nostr Wallet Connect (NIP-47)
Channel Management LSP-assisted or manual
Mobile Access Via NWC-connected mobile apps
Invoice Support BOLT 11, LNURL, Lightning Addresses, Keysend
Backup Seed phrase + node state backup
License Open source

From Extension to Hub: Alby’s Evolution

Alby started in 2022 as a browser extension that let users pay Lightning invoices on websites with a single click — similar to how a password manager auto-fills login forms, Alby auto-fills Lightning payments. The extension connected to external Lightning backends (your own node, LNbits, or Alby’s custodial wallet service).

In 2024-2025, Alby phased out its custodial shared wallet and launched Alby Hub — a self-custodial LDK-based Lightning node that users can run on their own hardware, on a cloud server, or via Alby’s managed cloud service. The browser extension still exists but now connects to your Alby Hub rather than to a third-party custodian.

This transition moved Alby from a custodial convenience layer to genuine self-custody — a significant philosophical and technical shift.

Nostr Wallet Connect (NWC): The Killer Feature

Alby’s most significant contribution to the Lightning ecosystem is Nostr Wallet Connect (NWC), an open protocol standardized as NIP-47. NWC lets any application request payments from your wallet through the Nostr protocol, without the app ever touching your funds.

Here is how it works in practice:

  1. You run Alby Hub (your Lightning node)
  2. You create an NWC connection for a specific app (e.g., a Nostr client like Damus)
  3. The app receives permission to request payments up to limits you define
  4. When you want to zap a post on Nostr, the app sends a payment request to your Alby Hub via NWC
  5. Your Alby Hub processes the payment from your self-custodial balance

The breakthrough: your wallet is always available for payments without keeping a mobile app running. NWC works across platforms — web apps can connect to your hub, mobile apps can connect to your hub, even other desktop applications. The one-click wallet connection flow makes linking a new app as simple as a QR code scan.

NWC has been adopted beyond Alby itself. Other wallets and services now implement the protocol, creating an open standard for wallet-app communication.

Deployment Options

Alby Cloud

The easiest option. Alby runs your node on their cloud infrastructure. You retain your keys, but Alby manages the server. This is self-custodial (Alby cannot spend your funds) but not fully sovereign — you depend on Alby’s infrastructure for availability. Alby Cloud costs a small monthly subscription fee.

Self-Hosted on Your Hardware

Run Alby Hub on a Raspberry Pi, home server, or any Linux machine. Full sovereignty — you control the hardware, the node, and the network connection. Requires basic Linux administration skills and a stable internet connection.

Self-Hosted on a VPS

Deploy Alby Hub on a cloud VPS (Digital Ocean, Hetzner, etc.). You control the software but rely on the VPS provider for hardware. A middle ground between convenience and sovereignty.

Alby Hub can also run on existing node platforms like Umbrel and Start9 as an application, integrating with your broader Bitcoin node setup.

Fee Structure

  • Alby Hub software: Free and open source
  • Alby Cloud hosting: Subscription fee for managed hosting (varies by plan)
  • Lightning payments: Standard network routing fees only — no Alby markup on transactions
  • Channel management: On-chain fees for opening/closing channels. LSP fees if using managed liquidity
  • Browser extension: Free

The only paid component is Alby Cloud hosting, which is optional. Self-hosting eliminates all recurring costs.

The Browser Extension Experience

Alby’s browser extension remains its most visible product. Once installed and connected to your Alby Hub, it enables:

  • One-click payments on any website that supports Lightning (LNURL, Lightning Address, or BOLT 11 invoices)
  • Nostr zaps — tip posts directly from your feed with a single click
  • Website authentication — log into services using Lightning (LNURL-auth)
  • Budget controls — set daily or per-app spending limits so connected apps cannot drain your balance

The extension is available for Chrome, Firefox, Edge, and Brave. It integrates with the browser’s native payment API where supported.

Pros and Cons

Pros

  • Best browser-native Lightning payment experience — nothing else comes close for web payments
  • Nostr Wallet Connect (NWC) enables seamless app-wallet communication across platforms
  • Multiple deployment options from fully managed to fully self-hosted
  • Multiple Lightning backend support (LDK, LND, Phoenixd, Cashu)
  • Budget controls and per-app permissions prevent overspending
  • Open source
  • Contributed NWC as an open standard benefiting the broader ecosystem

Cons

  • No native mobile app — mobile access requires connecting a third-party NWC-compatible app
  • Self-hosting requires technical skills (Linux, networking, port forwarding)
  • Alby Cloud adds a monthly cost that other wallets do not have
  • LDK-based node is less mature than LND or CLN for advanced routing scenarios
  • Initial channel setup requires opening at least one channel (manually or via LSP)
  • Primarily optimized for small to medium payments — not designed for large-value Lightning transactions

Alby vs Other Lightning Wallets

Feature Alby Hub Phoenix Zeus
Primary platform Web/Desktop Mobile Mobile
Browser extension Yes (best in class) No No
NWC support Full (NWC pioneer) No Yes (NWC service)
Nostr integration Deep (zaps, auth, profiles) No Yes (via NWC)
Mobile experience Indirect (via NWC apps) Excellent Excellent
Channel management Manual or LSP Automated (splicing) Manual or LSP
Self-hosting Supported N/A Embedded node
Best for Web payments, Nostr Everyday mobile Node operators

Verdict

Alby is not trying to be the best mobile Lightning wallet. It is the best Lightning wallet for the web. If your Lightning usage centers on Nostr interactions, tipping content creators, paying for web services, or building applications that integrate Lightning payments — Alby Hub with the browser extension provides a workflow that no mobile wallet can replicate.

The NWC protocol is Alby’s lasting contribution. By creating an open standard for wallet-app communication, Alby has made Lightning wallets composable — any app can request payments from any NWC-compatible wallet, creating a pluggable payment layer for the internet.

For daily mobile spending, Phoenix remains the better choice. For running your own node from a phone, Zeus excels. But for connecting Lightning to the web ecosystem — Alby is unmatched.

Frequently Asked Questions

Is Alby Wallet custodial or non-custodial?

Alby Hub is self-custodial — your keys are generated and stored locally (or on your self-hosted server). The former custodial shared wallet service has been discontinued. Alby Cloud manages the server infrastructure but does not have access to your private keys or funds.

Do I need a Nostr account to use Alby?

No. Alby Hub functions as a standard Lightning wallet without any Nostr involvement. However, the browser extension and NWC features are specifically designed to integrate with Nostr, so the best Alby experience includes Nostr usage.

Can I use Alby on my phone?

Not directly as a native app. However, you can connect NWC-compatible mobile apps (like certain Nostr clients) to your Alby Hub, giving you mobile access to your Lightning funds through those apps.

What happens if Alby the company shuts down?

If you self-host your Alby Hub, nothing changes — you run the software independently. If you use Alby Cloud, you would need to migrate your node to self-hosted infrastructure. Your seed phrase allows on-chain fund recovery in any scenario. The NWC protocol is an open standard and would continue to function independently of Alby the company.

Part of our free Bitcoin course: This topic is covered in depth in
Lightning Wallets Compared from the
Lightning Network & Bitcoin Nodes course.

Related Articles

The post Alby Wallet Review: Lightning for the Browser appeared first on Knowing Bitcoin.

]]>
Breez Wallet Review 2026: Point of Sale Lightning https://knowingbitcoin.com/breez-wallet-review-2026/ Thu, 12 Feb 2026 18:48:25 +0000 https://knowingbitcoin.com/breez-wallet-review-2026/ Breez Wallet occupies a unique position in the Lightning ecosystem: it is the only self-custodial wallet with a built-in point-of-sale system designed for brick-and-mortar merchants. While other wallets focus on ... Read more

The post Breez Wallet Review 2026: Point of Sale Lightning appeared first on Knowing Bitcoin.

]]>
Reading Time: 4 minutes

Breez Wallet occupies a unique position in the Lightning ecosystem: it is the only self-custodial wallet with a built-in point-of-sale system designed for brick-and-mortar merchants. While other wallets focus on individual spending, Breez also serves the merchant side of the equation — turning any phone into a Lightning cash register. This dual identity makes it particularly relevant as Lightning adoption moves beyond tech enthusiasts into small business commerce.

This review evaluates Breez Wallet’s merchant features, personal wallet capabilities, its SDK for developers, and how it compares to other self-custodial options in 2026.

Breez Wallet Specifications

Specification Detail
Developer Breez Technology (Israel)
Lightning Implementation LND-based (transitioning to Breez SDK with Greenlight)
Custody Model Self-custodial
Platforms Android, iOS
Point-of-Sale Yes (built-in cash register with item catalog)
Channel Management LSP-assisted (automated)
On-chain Support Yes (via submarine swaps)
Invoice Support BOLT 11, BOLT 12, LNURL, BIP 353
Podcasting 2.0 Yes (built-in player with streaming sats)
Backup Seed phrase + cloud backup
License Open source

The Point-of-Sale Feature

Breez’s point-of-sale mode transforms the wallet into a merchant terminal. With the slide of a toggle, the interface switches from a personal wallet to a cash register. Merchants can:

  • Create an item catalog with names, descriptions, and prices in their local fiat currency
  • Process payments — the customer scans a QR code displayed on the merchant’s phone, and the payment settles in seconds
  • Display amounts in fiat while receiving actual bitcoin over Lightning, automatically converting at the current exchange rate
  • Set a manager password to restrict which employees can access wallet settings versus just processing sales
  • Export transaction records for accounting and tax purposes

For a coffee shop, market stall, or any small business that wants to accept Lightning payments without integrating with a payment processor, Breez provides a complete solution in a single app. No merchant account, no monthly fees, no hardware beyond the phone they already own.

Personal Wallet Features

In personal wallet mode, Breez functions as a straightforward self-custodial Lightning wallet:

  • Sending: Scan Lightning invoices, paste LNURL links, or use Lightning addresses. Breez handles routing automatically.
  • Receiving: Generate invoices with specific amounts or open-ended requests. The LSP manages inbound liquidity — if you need a channel opened, Breez handles it behind the scenes.
  • On-chain interoperability: Send and receive on-chain bitcoin through submarine swaps, converting between Lightning and on-chain funds.
  • Fiat display: View your balance and transactions in your local currency alongside the bitcoin amount.

Podcasting 2.0 Integration

Breez includes a built-in podcast player that supports Podcasting 2.0 — the open standard for streaming satoshis to podcast creators in real time. As you listen, your wallet sends micro-payments to the creator based on the streaming rate you set. This feature drove early adoption among podcast enthusiasts and remains a unique differentiator.

Breez SDK: Lightning for Developers

Beyond the wallet app itself, Breez offers the Breez SDK — a toolkit that lets developers integrate Lightning payments into their own applications. The SDK provides two integration methods:

  • Native (Greenlight): Uses Blockstream’s Greenlight service to run a CLN node in the cloud on behalf of the user, with keys remaining on the user’s device. Self-custodial by design.
  • Nodeless (Liquid integration): Uses the Liquid sidechain for seamless Lightning-compatible payments without running a node. Lower friction, different trust assumptions.

The SDK powers third-party apps beyond the Breez wallet itself, extending Breez’s Lightning infrastructure to a growing ecosystem of applications.

Fee Structure

  • Channel opening: 0.75% of the channel capacity for initial setup. This covers the on-chain transaction and LSP service.
  • Sending payments: Standard Lightning Network routing fees (typically a few sats). No Breez markup.
  • Receiving payments: Free after the initial channel is established, as long as you have sufficient inbound liquidity.
  • On-chain swaps: Mining fee plus a small service fee for submarine swaps.
  • No monthly fees, no subscription.

The 0.75% channel opening fee is competitive with other LSP-based wallets. Once your channel is established, ongoing payment costs are minimal — limited to network routing fees that typically amount to a few satoshis per payment.

Pros and Cons

Pros

  • Best-in-class point-of-sale functionality for merchants accepting Lightning payments
  • Self-custodial with automated channel management — no manual liquidity management needed
  • Podcasting 2.0 integration with built-in player and streaming sats
  • Breez SDK extends Lightning integration to third-party developers
  • Broad invoice support including BOLT 11, BOLT 12, LNURL, and BIP 353
  • Open source
  • Fiat display and transaction export for accounting

Cons

  • User interface is functional but less polished than Phoenix
  • Channel setup can be slow and expensive during periods of high on-chain fees
  • LSP dependency — if Breez’s LSP goes offline, new channel opens pause
  • Documentation could be more comprehensive for advanced users
  • The wallet is transitioning architectures (LND to Greenlight/SDK), which means some features may change
  • Smaller user community than Phoenix or Zeus

Breez vs Other Lightning Wallets

Feature Breez Phoenix Zeus
Point-of-sale Full POS system No Basic POS mode
Merchant tools Item catalog, fiat display, manager lock None Basic
Podcast support Built-in player No No
Channel management LSP-assisted Automated (splicing) Manual or LSP
Setup fee 0.75% channel open 1% liquidity fee On-chain fee only
Developer SDK Yes (Breez SDK) No public SDK No
Best for Merchants, podcasters Everyday users Power users

Verdict

Breez fills a gap that no other self-custodial wallet addresses: the merchant who wants to accept Lightning payments without a third-party payment processor, without custodial risk, and without technical complexity. The point-of-sale mode is genuinely practical — it turns a phone into a complete Lightning terminal with item management and fiat conversion.

As a personal wallet for everyday spending, Breez is competent but not the best option. Phoenix offers a smoother user experience with its splicing architecture, and Zeus offers more control for technical users. But for merchants, podcast listeners who want to stream sats, or developers building Lightning-powered apps with the Breez SDK — Breez is purpose-built and well-executed.

For a broader view of the Lightning wallet landscape, see our complete Lightning wallet comparison.

Frequently Asked Questions

Can I use Breez as a regular wallet without the POS feature?

Yes. The point-of-sale mode is a toggle within the app. You can use Breez exclusively as a personal Lightning wallet and never touch the merchant features. The POS mode is there when you need it but does not clutter the everyday wallet experience.

Is Breez truly self-custodial?

Yes. Your private keys are generated and stored on your device. Breez’s LSP helps manage channel creation and liquidity, but it never has access to your funds. If Breez the company disappeared, you could recover your on-chain funds with your seed phrase. Lightning channel recovery depends on your backup state.

Does Breez work for high-volume merchants?

For small to medium transaction volumes, Breez works well. High-volume merchants processing hundreds of transactions daily may eventually outgrow the mobile wallet approach and benefit from a dedicated Lightning payment infrastructure like BTCPay Server. Breez is ideal for market vendors, coffee shops, and small retailers.

What is the Breez SDK?

The Breez SDK is a developer toolkit that allows third-party applications to integrate Lightning payment capabilities without building Lightning infrastructure from scratch. It handles channel management, routing, and liquidity behind the scenes, letting developers focus on their application’s user experience.

Part of our free Bitcoin course: This topic is covered in depth in
Lightning Wallets Compared from the
Lightning Network & Bitcoin Nodes course.

Related Articles

The post Breez Wallet Review 2026: Point of Sale Lightning appeared first on Knowing Bitcoin.

]]>
Zeus Wallet Review: Lightning on Your Own Node https://knowingbitcoin.com/zeus-wallet-review-lightning-node/ Thu, 12 Feb 2026 18:48:24 +0000 https://knowingbitcoin.com/zeus-wallet-review-lightning-node/ Zeus Wallet is the Lightning wallet for users who want full control over their node, their channels, and their routing — all from a mobile device. Unlike wallets that abstract ... Read more

The post Zeus Wallet Review: Lightning on Your Own Node appeared first on Knowing Bitcoin.

]]>
Reading Time: 5 minutes

Zeus Wallet is the Lightning wallet for users who want full control over their node, their channels, and their routing — all from a mobile device. Unlike wallets that abstract away Lightning’s complexity behind managed services, Zeus gives you an embedded LND node on your phone or connects to your existing remote node. If you believe that sovereignty means operating your own infrastructure, Zeus is built for exactly that philosophy.

This review covers Zeus Wallet’s architecture, both operating modes, its fee structure, real-world performance, and where it fits in the Lightning wallet ecosystem in 2026.

Zeus Wallet Specifications

Specification Detail
Developer Zeus LN (community-funded, open source)
Lightning Implementation LND (embedded v0.20.0-beta) or remote (LND, CLN, Eclair)
Custody Model Self-custodial
Platforms Android, iOS
Operating Modes Embedded LND node or remote node connection
Channel Management Manual (embedded) or LSP-assisted (Olympus by ZEUS)
On-chain Support Yes (full wallet capabilities)
Invoice Support BOLT 11, LNURL, Keysend
NWC Nostr Wallet Connect service
Backup Seed phrase + Static Channel Backup (SCB)
License Open source (AGPL-3.0)

Two Operating Modes

Mode 1: Embedded LND Node

Zeus’s signature feature is running a full LND Lightning node directly on your mobile device. When you launch Zeus in embedded mode, your phone becomes a Lightning node — discovering peers, opening channels, routing payments, and managing your own liquidity without any external server dependency.

This means:

  • Your keys never leave your device
  • You open and manage your own channels with any node on the network
  • You set your own routing fees
  • You can earn routing fees if your node forwards payments for others
  • No dependency on any company’s infrastructure for Lightning functionality

The tradeoff is startup time. When you open Zeus after the app has been closed, the embedded LND node needs to sync with the network. This can take 10-60 seconds depending on how long the app was inactive. It also uses more battery than LSP-based wallets since your phone is running a full node.

Zeus now warns users when battery saver mode is detected during embedded LND startup, since power-saving features can interfere with node reliability.

Mode 2: Remote Node Connection

If you already run a Lightning node at home (on an Umbrel, Start9, or bare metal), Zeus can connect to it remotely. Supported backends include LND (via REST or gRPC), Core Lightning (CLN), and Eclair. In this mode, Zeus functions as a mobile interface to your existing node — you manage channels, send payments, and monitor your node from anywhere.

This is Zeus’s most powerful configuration. Your node runs 24/7 on dedicated hardware with stable internet, while Zeus provides mobile access when you are away from home. The connection can be secured over Tor for privacy.

Olympus LSP: Managed Liquidity Option

For users who want the embedded node experience without manually managing channels, Zeus offers Olympus by ZEUS — a Lightning Service Provider that opens channels to you and provides inbound liquidity. This bridges the gap between full manual control and the automated experience of wallets like Phoenix.

Olympus charges fees for inbound liquidity provisioning. The fees vary based on channel size and current on-chain fee conditions. Using Olympus is optional — power users can ignore it entirely and manage their own liquidity.

Fee Structure

  • Wallet itself: Free and open source. No subscription, no usage fees from Zeus.
  • Embedded node payments: You pay only network routing fees — the fees charged by other nodes along the payment path. No wallet-imposed fee on top.
  • Olympus LSP fees: Variable fees for channel opening and inbound liquidity. Comparable to other LSPs in the market.
  • Channel opens/closes: On-chain mining fees, which vary with mempool conditions.
  • Remote node mode: Zero Zeus fees. You pay only the routing fees your node incurs.

For users who manage their own channels, Zeus is the cheapest Lightning wallet available — you pay only the bare network routing fees with no intermediary markup. This makes Zeus particularly attractive for users who process enough volume to justify the learning curve of manual channel management.

Recent Features (v0.12.0+)

  • Nostr Wallet Connect (NWC) service: Zeus can act as a NWC backend, allowing Nostr apps like Damus, Amethyst, and Primal to send zaps directly from your self-custodial Zeus wallet. The NWC service runs persistently in the background on Android and uses a handoff service on iOS.
  • Circular channel rebalance: A built-in tool to rebalance your channel liquidity by routing a payment from yourself to yourself through the network. Essential for maintaining effective routing capacity.
  • Cashu ecash wallet (experimental): Zeus includes experimental support for Cashu ecash, allowing interaction with ecash mints.
  • Swaps: Built-in Lightning-to-on-chain and on-chain-to-Lightning swap functionality.
  • UTXO labeling: Tag your on-chain UTXOs with descriptive labels for better coin control.
  • WIF private key import: Import legacy wallet private keys directly into Zeus.

Pros and Cons

Pros

  • Maximum sovereignty — run your own Lightning node from your phone with zero external dependency
  • Remote node support for LND, CLN, and Eclair — the most versatile connector in the mobile wallet space
  • No wallet-imposed fees beyond network routing costs
  • Nostr Wallet Connect enables zapping from a self-custodial wallet
  • Full channel management control including fee setting and rebalancing
  • Open source and community-funded
  • Point-of-sale mode for merchants
  • Active development with frequent releases

Cons

  • Steep learning curve — requires understanding of channels, liquidity, and routing
  • Embedded LND needs sync time after the app is closed, leading to 10-60 second startup delays
  • Higher battery consumption than LSP-based wallets
  • Manual channel management means you must monitor and maintain your own liquidity
  • Less reliable payment success rate than Phoenix for users who do not properly manage their channels
  • No BOLT 12 support yet

Zeus vs Phoenix: Different Users, Different Philosophies

Dimension Zeus Phoenix
Philosophy Maximum control Maximum simplicity
Channel management Manual (or Olympus LSP) Automated (splicing)
Fees (sending) Network routing only 0.4% minimum 4 sats
Privacy High (own node, own routing) Moderate (trampoline routing)
Startup time 10-60 seconds (embedded mode) Instant
Learning curve Significant Minimal
Best user Technical Bitcoiners, node operators General bitcoin users

Verdict

Zeus is not for everyone — and that is by design. It is the wallet for users who view running their own Lightning infrastructure as a feature, not a burden. If you already run a Lightning node at home and want mobile access, Zeus is the best remote interface available. If you want to learn Lightning from the ground up by managing real channels and routing real payments, Zeus’s embedded node gives you a genuine Lightning node in your pocket.

For users who want Lightning to just work without thinking about channels, Phoenix remains the better choice. But for the power user who wants to earn routing fees, control their own routing, contribute to network decentralization, and zap from Nostr using their own node — Zeus is unmatched.

Frequently Asked Questions

Does Zeus work without internet?

No. Like all Lightning wallets, Zeus requires an internet connection to communicate with the Lightning Network. The embedded LND node needs to stay connected to maintain channel state and process payments.

Can I use Zeus without running my own node?

Yes. Zeus’s embedded LND mode creates a node on your phone. You can also use the Olympus LSP for managed channel opens. You do not need separate hardware to use Zeus, though connecting to a home node is the optimal configuration.

Is Zeus Wallet open source?

Yes. Zeus is fully open source under the AGPL-3.0 license. The code is publicly auditable on GitHub. Development is funded through community donations and grants — no venture capital, no proprietary components.

How do I back up my Zeus wallet?

Zeus provides a seed phrase for on-chain funds and a Static Channel Backup (SCB) for Lightning channel state. Export both and store them securely. If you lose your phone, the SCB allows force-closing your channels to recover funds on-chain. Channel state (including routing history and fee settings) cannot be restored from SCB alone.

Part of our free Bitcoin course: This topic is covered in depth in
Lightning Wallets Compared from the
Lightning Network & Bitcoin Nodes course.

Related Articles

The post Zeus Wallet Review: Lightning on Your Own Node appeared first on Knowing Bitcoin.

]]>
Phoenix Wallet Review 2026: Best Lightning Wallet? https://knowingbitcoin.com/phoenix-wallet-review-2026/ Thu, 12 Feb 2026 18:48:22 +0000 https://knowingbitcoin.com/phoenix-wallet-review-2026/ Phoenix Wallet has become the benchmark for self-custodial Lightning wallets in 2026. Built by ACINQ — one of the three original Lightning implementation teams — Phoenix is the only mobile ... Read more

The post Phoenix Wallet Review 2026: Best Lightning Wallet? appeared first on Knowing Bitcoin.

]]>
Reading Time: 6 minutes

Phoenix Wallet has become the benchmark for self-custodial Lightning wallets in 2026. Built by ACINQ — one of the three original Lightning implementation teams — Phoenix is the only mobile wallet that uses splicing to manage a single dynamic channel, eliminating the channel management complexity that has historically made Lightning difficult for regular users. If you want to send and receive bitcoin over the Lightning Network without running your own node or understanding channel mechanics, Phoenix is the wallet that makes it possible.

This review evaluates Phoenix Wallet’s architecture, fee structure, user experience, privacy properties, and real-world performance based on extensive testing in early 2026.

Phoenix Wallet Specifications

Specification Detail
Developer ACINQ (Paris, France)
Lightning Implementation Eclair (custom mobile build)
Custody Model Self-custodial (your keys, your coins)
Platforms Android, iOS
Channel Management Automated via splicing (single channel)
On-chain Support Yes (unified balance via swap-in/splice)
Invoice Support BOLT 11, BOLT 12 (Offers), LNURL
Backup 12-word seed + encrypted cloud backup of channel state
Privacy Trampoline routing (ACINQ sees payment destinations)
License Open source (Apache 2.0)
Tor Support Yes

Architecture: How Phoenix Actually Works

Phoenix runs a lightweight Eclair node directly on your phone. Your private keys and channel state are stored locally on your device — ACINQ never has access to your funds. This makes Phoenix genuinely self-custodial, unlike wallet apps that connect to a third-party custodian behind a friendly interface.

The Splicing Innovation

Phoenix’s defining technical achievement is its use of splicing for channel management. In traditional Lightning wallets, you might open and close multiple channels as your needs change — each requiring an on-chain transaction with mining fees. Phoenix maintains a single channel to ACINQ’s node and dynamically resizes it:

  • Receiving more than your inbound capacity? Phoenix automatically performs a splice-in, expanding the channel to accommodate the incoming payment. This requires one on-chain transaction.
  • Want to move funds on-chain? Phoenix performs a splice-out, directly sending bitcoin from your channel to an on-chain address. No swap service needed — the operation is trustless.
  • Channel stays operational during splicing. Unlike traditional channel opens/closes, splicing does not interrupt your ability to send and receive Lightning payments.

The result for users: one balance, no channel management decisions, and a seamless experience that hides Lightning’s underlying complexity without compromising self-custody.

Trampoline Routing

Phoenix does not compute payment routes independently. When you send a payment, Phoenix delegates route-finding to ACINQ’s node using a protocol called trampoline routing. Your phone sends the payment to ACINQ’s node with instructions like “deliver this to destination X,” and ACINQ’s well-connected node figures out the best path.

This design saves bandwidth and battery on your phone, which matters for a mobile wallet. The tradeoff is privacy: ACINQ’s node knows the final destination of every payment you send. For users concerned about this, Phoenix supports Tor connections to obscure your IP address, but the payment destination visibility remains inherent to the trampoline model.

Fee Structure

Phoenix’s fee model changed significantly with the splicing update. Here is the current structure:

  • Sending Lightning payments: 0.4% of the payment amount, with a minimum of 4 sats. This fee is fixed and shown before you confirm — no surprises.
  • Liquidity fee (splice-in): 1% of the inbound amount with a 3,000 sat minimum, charged when your channel needs to be expanded to receive a payment. This includes the mining fee for the splice transaction.
  • Splice-out (on-chain withdrawal): Mining fee for the on-chain transaction only. No additional service fee.
  • No monthly fees, no subscription, no base fee.

For context: sending a 50,000 sat (~$50) Lightning payment costs 200 sats (~$0.20) in routing fees. Compare this to on-chain Bitcoin transaction fees during busy periods, which can range from 5,000-30,000 sats. Lightning through Phoenix is dramatically cheaper for everyday payments.

The 1% liquidity fee for channel expansion is higher than managing your own node channels, but dramatically simpler. Most users never want to manually manage inbound and outbound liquidity — Phoenix handles it automatically at a reasonable cost.

User Experience

Setup

Initial setup takes under two minutes: install the app, write down your 12-word seed phrase, and you are ready to receive your first payment. There is no account creation, no email verification, no KYC. Phoenix generates a wallet and Lightning address immediately.

Sending Payments

Tap “Send,” scan a Lightning invoice (BOLT 11), paste an LNURL, or scan a BOLT 12 offer. Phoenix displays the amount and total fee before you confirm. Payment settlement is typically sub-second for well-connected destinations.

Receiving Payments

Tap “Receive,” specify an amount (or leave open for any amount), and Phoenix generates a QR code. If the incoming payment exceeds your current inbound capacity, Phoenix handles the splice-in automatically — you see a notification that a channel management fee will apply before accepting.

On-chain Integration

Phoenix provides a swap-in Bitcoin address for receiving on-chain payments. Funds sent to this address are automatically spliced into your Lightning channel, appearing in your unified balance after the on-chain transaction confirms (typically 1-3 confirmations). This eliminates the mental overhead of managing separate on-chain and Lightning balances.

Backup and Recovery

Phoenix uses a 12-word seed phrase for key derivation, plus an encrypted cloud backup of your channel state stored on ACINQ’s servers. If you lose your phone:

  1. Install Phoenix on a new device.
  2. Enter your 12-word seed phrase.
  3. Phoenix retrieves your encrypted channel state and restores your balance.

This is a significant usability advantage over wallets that require manual Static Channel Backup (SCB) management. The tradeoff: ACINQ stores your encrypted channel state. They cannot access it without your seed phrase, but the data exists on their infrastructure.

Pros and Cons

Pros

  • Best user experience of any self-custodial Lightning wallet — genuinely rivals custodial simplicity
  • Splicing eliminates channel management complexity entirely
  • Unified balance (no separate on-chain and Lightning funds to manage)
  • Transparent, predictable fee structure
  • Active development by one of Lightning’s core implementation teams
  • Open source (Apache 2.0)
  • BOLT 12 support enables reusable payment offers
  • Tor support for IP privacy

Cons

  • Depends entirely on ACINQ’s Lightning Service Provider (LSP) — if ACINQ goes offline, you can still recover funds on-chain but cannot make Lightning payments until they return
  • Trampoline routing means ACINQ sees your payment destinations
  • 0.4% sending fee is higher than routing through your own node (where you pay only network routing fees)
  • No desktop version — mobile only
  • Single-LSP dependency means no redundancy for routing

Phoenix vs Other Lightning Wallets

Feature Phoenix Zeus Breez Wallet of Satoshi
Custody Self-custodial Self-custodial Self-custodial Custodial
Channel management Automated (splicing) Manual or LSP LSP-assisted None (managed)
Technical knowledge needed None Moderate to high Low None
Sending fee 0.4% Network only Network + LSP None visible (built in)
Privacy Moderate (trampoline) High (own node) Moderate (LSP) Low (full custodial)
Best for Everyday users Power users Merchants Beginners (tradeoff: no custody)

For a detailed comparison of all these wallets and more, see our comprehensive Lightning wallet comparison.

Verdict: Is Phoenix the Best Lightning Wallet in 2026?

For the majority of users who want self-custody without managing infrastructure, yes. Phoenix is the wallet that proves self-custodial Lightning can be as simple as custodial alternatives — without sacrificing control of your keys. The splicing architecture is genuinely innovative, the fee structure is transparent, and the ACINQ team has a decade-long track record of serious Lightning development.

Phoenix is not the best choice if you prioritize maximum privacy (ACINQ sees your payment destinations), maximum fee savings (running your own node is cheaper), or desktop use (Phoenix is mobile only). For those use cases, Zeus or Alby Hub may be better fits.

But for the person who wants to hold their own keys, make Lightning payments daily, and never think about channels — Phoenix is the answer.

Frequently Asked Questions

Is Phoenix Wallet safe?

Phoenix is self-custodial — you control your private keys via a 12-word seed phrase. ACINQ cannot access or freeze your funds. The main risk is losing your seed phrase, which would make fund recovery impossible. Store your seed phrase securely offline.

How much does Phoenix Wallet cost?

Phoenix is free to download and use. You pay 0.4% per Lightning payment sent, and a 1% liquidity fee (minimum 3,000 sats) when your channel needs to expand for incoming payments. There are no subscriptions, monthly fees, or hidden charges.

Can I receive on-chain Bitcoin with Phoenix?

Yes. Phoenix provides a swap-in Bitcoin address. On-chain funds are automatically spliced into your Lightning channel after confirmation. Your balance appears as a single unified amount — no separate on-chain and Lightning balances to manage.

What happens if ACINQ shuts down?

If ACINQ’s node goes permanently offline, your Lightning channel would need to be force-closed. Your funds would settle on-chain after the timelock expires (typically 2-4 weeks). You would not lose bitcoin — you would lose Lightning functionality until connecting to a different LSP or running your own node. Your seed phrase always allows on-chain recovery.

Does Phoenix support BOLT 12?

Yes. Phoenix supports BOLT 12 offers, which allow reusable payment requests. Instead of generating a new invoice for every payment, you can share a single BOLT 12 offer that others can pay multiple times — useful for donations, recurring payments, or public-facing payment links.

Part of our free Bitcoin course: This topic is covered in depth in
Lightning Wallets Compared from the
Lightning Network & Bitcoin Nodes course.

Related Articles

The post Phoenix Wallet Review 2026: Best Lightning Wallet? appeared first on Knowing Bitcoin.

]]>
BRC-20 Tokens Explained: Bitcoin’s Token Standard https://knowingbitcoin.com/brc-20-tokens-explained/ Thu, 12 Feb 2026 18:48:17 +0000 https://knowingbitcoin.com/brc-20-tokens-explained/ BRC-20 tokens brought fungible token creation to Bitcoin — a capability most people assumed only existed on Ethereum and similar smart contract platforms. Built on top of the Ordinals protocol, ... Read more

The post BRC-20 Tokens Explained: Bitcoin’s Token Standard appeared first on Knowing Bitcoin.

]]>
Reading Time: 5 minutes

BRC-20 tokens brought fungible token creation to Bitcoin — a capability most people assumed only existed on Ethereum and similar smart contract platforms. Built on top of the Ordinals protocol, BRC-20 tokens use JSON data inscribed into individual satoshis to deploy, mint, and transfer tokens directly on the Bitcoin blockchain. The standard exploded in popularity in 2023, temporarily consuming a significant portion of Bitcoin’s block space and sparking intense debate within the Bitcoin community about what belongs on the network.

This guide explains how BRC-20 tokens work at a technical level, why they generated so much controversy, what happened to the market since the initial hype, and what the standard means for Bitcoin’s future.

What Are BRC-20 Tokens?

BRC-20 is an experimental token standard that uses Bitcoin’s Ordinals protocol to create fungible tokens on the Bitcoin blockchain. The name is a nod to Ethereum’s ERC-20 token standard, though the two systems work in fundamentally different ways.

To understand BRC-20, you first need to understand two foundational concepts:

Ordinals Theory

Ordinals theory, proposed by Casey Rodarmor in January 2023, assigns a unique serial number to each individual satoshi (the smallest unit of bitcoin, equal to 0.00000001 BTC). This numbering system — based on the order in which satoshis are created through mining — turns each satoshi into a distinct, trackable unit. Before Ordinals, all satoshis were considered identical and interchangeable (fungible).

Inscriptions

Once individual satoshis are identifiable, data can be attached to them. An inscription embeds arbitrary data — images, text, code — into a Bitcoin transaction using the witness section (the area made available by the 2017 SegWit upgrade). This data lives permanently on the Bitcoin blockchain, stored and replicated by every full node.

How BRC-20 Combines These Concepts

BRC-20 tokens use inscriptions to store JSON data that defines token operations. There are three types of operations:

Deploy — Creates a new token with parameters:

{
  "p": "brc-20",
  "op": "deploy",
  "tick": "ordi",
  "max": "21000000",
  "lim": "1000"
}

This example deploys a token called “ordi” with a maximum supply of 21 million and a per-mint limit of 1,000 tokens.

Mint — Creates new tokens up to the deploy limit:

{
  "p": "brc-20",
  "op": "mint",
  "tick": "ordi",
  "amt": "1000"
}

Transfer — Moves tokens between addresses. This is a two-step process: first inscribe a transfer inscription, then send the satoshi carrying that inscription to the recipient.

{
  "p": "brc-20",
  "op": "transfer",
  "tick": "ordi",
  "amt": "500"
}

Key Differences Between BRC-20 and ERC-20

Property BRC-20 (Bitcoin) ERC-20 (Ethereum)
Smart contracts None — uses JSON inscriptions Full smart contract (Solidity code)
State tracking Off-chain indexers parse inscriptions On-chain state maintained by EVM
Token creation Anyone can deploy via inscription Requires deploying a smart contract
Transfer mechanism Two-step (inscribe + send) Single smart contract call
Programmability Minimal (JSON data only) Full (conditional logic, composability)
Cost per operation Bitcoin transaction fee (variable) Ethereum gas fee (variable)
Security model Bitcoin’s proof of work Ethereum’s proof of stake

The most critical difference: BRC-20 tokens have no on-chain smart contract logic. The Bitcoin blockchain stores the raw JSON inscriptions, but interpreting what those inscriptions mean — tracking balances, validating transfers, maintaining token state — happens entirely off-chain through indexers. If two indexers disagree on the state of a BRC-20 token, there is no on-chain arbiter. This is a fundamentally weaker trust model than ERC-20, where token state is enforced by the Ethereum Virtual Machine.

The BRC-20 Market: Rise, Hype, and Reality

The 2023 Explosion

BRC-20 tokens launched in March 2023 and reached a combined market capitalization exceeding $1 billion by May 2023. The token ORDI — the first BRC-20 ever created — became the flagship of the movement, eventually listing on major exchanges including Binance. At its peak, BRC-20 minting activity consumed over 50% of Bitcoin’s block space, driving transaction fees to levels that priced out ordinary bitcoin payments.

The Controversy

BRC-20 tokens triggered one of the most heated debates in Bitcoin’s history:

Critics argued:

  • Inscriptions bloat the blockchain with non-financial data that every node must store permanently
  • Token minting activity drives up fees for legitimate bitcoin transactions
  • The speculative frenzy around meme tokens contradicts Bitcoin’s purpose as sound money
  • Off-chain indexer dependency creates fragile infrastructure
  • Bitcoin Layer 2: Lightning and Liquid Explained

Proponents argued:

  • Bitcoin’s block space is a free market — anyone willing to pay the fee can use it
  • Higher fees increase miner revenue, which strengthens network security especially post-halving
  • Innovation on Bitcoin is preferable to innovation migrating to competing blockchains
  • Censoring specific transaction types would undermine Bitcoin’s censorship resistance
  • Bitcoin Layer 2: Lightning and Liquid Explained

Current State (2026)

The initial BRC-20 hype has subsided. Daily inscription volume has decreased significantly from the 2023 peak. ORDI and a handful of other BRC-20 tokens remain listed on major exchanges with modest but sustained trading volume. New token standards have emerged — including Runes (also by Casey Rodarmor), which launched at the April 2024 halving and offers a more block-space-efficient method for fungible tokens on Bitcoin.

Runes encodes token data in Bitcoin’s OP_RETURN field rather than in the witness section, reducing the blockchain storage burden. Whether Runes replaces BRC-20 or coexists alongside it remains to be seen, but the directional trend is toward more efficient token protocols.

How to Interact with BRC-20 Tokens

If you want to explore BRC-20 tokens (acknowledging that this is highly experimental and speculative), here is what you need:

  1. An Ordinals-compatible wallet. Standard Bitcoin wallets do not track inscriptions. You need a wallet that supports Ordinals, such as Xverse, Unisat, or the Ordinals Wallet.
  2. Bitcoin for fees. Every BRC-20 operation (deploy, mint, transfer) requires a Bitcoin transaction, which means paying miner fees. During high-demand periods, these fees can be substantial.
  3. An indexer or marketplace. Platforms like Unisat, Magic Eden (Bitcoin section), or OKX Web3 provide interfaces to browse, mint, and trade BRC-20 tokens.

Risks and Limitations

  • Off-chain indexer dependency. BRC-20 balances exist only in the interpretation of indexers. If an indexer has a bug, your balance may display incorrectly. There is no on-chain enforcement of BRC-20 token rules.
  • Extreme speculation. The vast majority of BRC-20 tokens have no utility beyond trading. Price movements are driven by social media hype, not fundamental value.
  • Irreversible transactions. Sending BRC-20 tokens to the wrong address or using an incompatible wallet can result in permanent loss. There is no customer support or reversal mechanism.
  • Regulatory uncertainty. Whether BRC-20 tokens constitute securities under US law or other jurisdictions is unresolved. Listing on exchanges does not guarantee regulatory approval.
  • UTXO management complexity. BRC-20 tokens are tied to specific satoshis within UTXOs. Spending the UTXO containing your token in a regular Bitcoin transaction can inadvertently destroy or transfer your tokens. This is a non-trivial risk for inexperienced users.
  • Bitcoin Layer 2: Lightning and Liquid Explained

BRC-20 vs Runes vs RGB: The Evolving Bitcoin Token Landscape

Protocol Data Storage Efficiency Smart Contracts Status (2026)
BRC-20 Witness (inscriptions) Low (bloats blockchain) None Active but declining volume
Runes OP_RETURN Medium (more efficient) None Growing adoption
RGB Off-chain (client-side validation) High (minimal on-chain footprint) Yes (Turing-complete) Under development

RGB (Really Good for Bitcoin) takes a fundamentally different approach: token state is validated client-side rather than on-chain, with Bitcoin transactions serving only as commitment anchors. This minimizes blockchain storage while enabling full smart contract functionality. RGB is technically more sophisticated but also more complex to implement and less accessible to casual users.

Frequently Asked Questions

Are BRC-20 tokens the same as NFTs on Bitcoin?

No. NFTs on Bitcoin (Ordinal inscriptions) are non-fungible — each inscription is unique. BRC-20 tokens are fungible — each token of the same type is interchangeable, like ERC-20 tokens on Ethereum. Both use the Ordinals protocol, but for different purposes.

Do BRC-20 tokens affect Bitcoin’s price?

BRC-20 token activity affects miner fee revenue but does not directly change Bitcoin’s price. Indirectly, increased on-chain activity from inscription demand can contribute to higher transaction fees, which some argue strengthens the long-term security budget for the network.

Can I create my own BRC-20 token?

Yes. Anyone can deploy a BRC-20 token by inscribing the deploy JSON onto a satoshi. The cost is the Bitcoin transaction fee for the inscription. However, creating a token is trivially easy — the hard part is getting anyone to value or use it. The overwhelming majority of BRC-20 tokens have zero sustained market value.

Is investing in BRC-20 tokens safe?

No. BRC-20 tokens are highly speculative, dependent on off-chain infrastructure, and carry risks of total loss. They should be considered experimental technology, not investment vehicles. If you choose to participate, use only funds you can afford to lose entirely.

Part of our free Bitcoin course: This topic is covered in depth in
Bitcoin Halving Explained from the
Bitcoin Mining & Economics course.

Related Articles

The post BRC-20 Tokens Explained: Bitcoin’s Token Standard appeared first on Knowing Bitcoin.

]]>
Coinbase vs Kraken 2026: Complete Exchange Comparison https://knowingbitcoin.com/coinbase-vs-kraken-2026/ Thu, 12 Feb 2026 18:48:15 +0000 https://knowingbitcoin.com/coinbase-vs-kraken-2026/ Coinbase vs Kraken is one of the most common comparisons for anyone buying bitcoin through a centralized exchange in 2026. Both are US-based, regulated, and have operated for over a ... Read more

The post Coinbase vs Kraken 2026: Complete Exchange Comparison appeared first on Knowing Bitcoin.

]]>
Reading Time: 5 minutes

Coinbase vs Kraken is one of the most common comparisons for anyone buying bitcoin through a centralized exchange in 2026. Both are US-based, regulated, and have operated for over a decade without a major security breach resulting in lost customer funds. But they differ significantly in fee structures, trading features, and the type of user they serve best. Choosing the wrong exchange can cost you hundreds or thousands of dollars in unnecessary fees over time.

This comparison evaluates Coinbase and Kraken across the dimensions that matter for bitcoin buyers: trading fees, deposit and withdrawal methods, security track records, Lightning Network support, and the overall experience for both beginners and active traders.

Company Background

Coinbase

Founded in 2012, Coinbase is the largest US cryptocurrency exchange by user base and one of the few publicly traded crypto companies (NASDAQ: COIN). It has built its brand on accessibility — Coinbase was many people’s first crypto purchase. The company is headquartered in the US and operates under a patchwork of state money transmitter licenses plus federal FinCEN registration.

Kraken

Founded in 2011, Kraken is one of the oldest cryptocurrency exchanges in operation. It has historically catered to more experienced traders with its advanced order types, margin trading, and futures platform. Kraken operates globally with regulatory licenses in multiple jurisdictions and has maintained a strong security reputation throughout its history.

Fee Comparison: Where the Real Difference Lives

Fees are the single biggest differentiator between these two exchanges, and where most beginners lose money without realizing it.

Coinbase Fees

Method Fee Notes
Simple Buy/Sell (default) ~1.5-3.0% Includes spread markup. This is what most beginners use
Coinbase Advanced 0.60% maker / 1.20% taker (under $10K/mo) Tiered discounts above $10K monthly volume
Coinbase Advanced ($10K-$50K/mo) 0.40% maker / 0.60% taker Significant improvement
Debit card purchase 3.99% Convenience fee for instant purchases
ACH deposit Free Takes 3-5 business days to clear
BTC withdrawal (on-chain) Network fee Variable based on mempool conditions

Kraken Fees

Method Fee Notes
Instant Buy (default) ~1.5% Includes spread. Used by beginners
Kraken Pro (under $50K/mo) 0.25% maker / 0.40% taker Available to all users, no separate platform
Kraken Pro ($50K-$100K/mo) 0.20% maker / 0.30% taker Volume discount
Kraken Pro ($1M-$5M/mo) 0.06% maker / 0.16% taker Professional tier
ACH deposit Free Takes 1-5 business days
Wire deposit Free Same-day settlement
BTC withdrawal (on-chain) Network fee Variable based on mempool conditions

The Verdict on Fees

Kraken’s trading fees are roughly 40-60% lower than Coinbase’s at comparable volume levels. For a buyer spending $1,000 per month on bitcoin, the annual fee difference between Kraken Pro (0.40% taker) and Coinbase Advanced (1.20% taker) is approximately $96 — nearly 10% of a month’s purchases going to unnecessary fees. Over several years of regular buying, this adds up to thousands of dollars.

Deposit and Withdrawal Methods

Feature Coinbase Kraken
ACH (US) Yes (free) Yes (free)
Wire transfer $10 deposit / $25 withdrawal Free deposit / $5 withdrawal
Debit/credit card Yes (3.99% fee) Yes (1.5-2.5% fee)
PayPal Yes No
Lightning Network No Yes (deposits + withdrawals)
Instant buy with fiat Yes Yes

Kraken’s Lightning Network support is a significant advantage for bitcoin users. Lightning withdrawals are near-instant and cost a fraction of a cent, compared to on-chain withdrawals that can cost several dollars during busy mempool periods. Coinbase does not support Lightning as of early 2026, which means every bitcoin withdrawal incurs full on-chain fees.

Security Comparison

Both exchanges take security seriously, but their approaches and track records differ in notable ways.

Coinbase Security

  • Claims to store 98% of customer crypto in cold storage (offline)
  • Maintains full 1:1 reserves — no lending of customer assets
  • Mandatory 2FA for all accounts
  • Coinbase Vault with multi-approval withdrawals and time-locked releases
  • FDIC insurance on USD balances (not crypto)
  • As a public company, subject to SEC reporting requirements and regular audits
  • Has experienced account-level compromises (individual users with weak security) but no exchange-wide breach
  • RoboSats Tutorial: Buy Bitcoin P2P over Lightning
  • Privacy Strategies in Bitcoin: From Acquisition to Storage

Kraken Security

  • No exchange-wide security breach resulting in lost customer funds since founding in 2011
  • Maintains a dedicated security team and regular penetration testing
  • Proof of reserves published regularly using cryptographic audits
  • Mandatory 2FA with option for hardware security keys (FIDO2/YubiKey)
  • Master key and Global Settings Lock features to prevent unauthorized account changes
  • Has faced regulatory actions (settled with SEC in 2023 over its staking program) but no security failures
  • RoboSats Tutorial: Buy Bitcoin P2P over Lightning
  • Privacy Strategies in Bitcoin: From Acquisition to Storage

Bottom line on security: Both exchanges are among the most secure in the industry. Coinbase’s public company status provides an extra layer of financial transparency. Kraken’s longer track record without any breach is noteworthy. For either exchange, enabling 2FA and using a hardware security key is essential.

Trading Features

Feature Coinbase Kraken
Advanced order types Limit, stop-limit, TWAP Limit, stop-loss, take-profit, trailing stop, iceberg
Margin trading No (discontinued for US users) Yes (up to 5x for eligible users)
Futures trading Limited (via Coinbase International) Yes (up to 50x leverage)
Staking Yes (limited in US after SEC action) Yes (limited in US after SEC action)
Recurring buys (DCA) Yes Yes
Number of assets 250+ 300+
API access Yes Yes
OTC desk Yes (institutional) Yes (institutional)

Kraken offers a noticeably richer trading feature set, particularly for experienced traders who want margin, futures, and sophisticated order types. Coinbase has simplified its platform over time, merging Coinbase Pro into “Coinbase Advanced” within the main app — which makes it cleaner but limits advanced functionality.

User Experience

Coinbase

Coinbase’s primary interface is designed for simplicity. Buying bitcoin takes three taps on the mobile app. The learning section, earn campaigns, and clean design make it the easiest onramp for complete beginners. The downside: that simplicity comes with higher default fees if you do not switch to Coinbase Advanced.

Kraken

Kraken has significantly improved its user experience over recent years. The mobile app is cleaner than it used to be, and the web interface provides a professional trading experience without being overwhelming. However, the interface still assumes some familiarity with trading concepts — beginners may find terms like “maker fee,” “limit order,” and “margin” unfamiliar at first.

Who Should Use Which Exchange?

User Profile Better Choice Why
Complete beginner buying first bitcoin Coinbase Simplest onboarding, familiar brand
Regular buyer doing weekly DCA Kraken Lower fees save hundreds annually
Active trader Kraken Better order types, margin, futures
Privacy-conscious user Neither (consider no-KYC options) Both require full KYC verification
Lightning Network user Kraken Lightning deposits and withdrawals
US-based, wants FDIC on USD Coinbase FDIC coverage on fiat balances

The Self-Custody Imperative

Regardless of which exchange you choose, the ultimate best practice is the same: do not store bitcoin on any exchange long-term. Buy on the exchange, then withdraw to your own wallet. The collapse of FTX, Mt. Gox, and dozens of smaller exchanges over the years proves that “not your keys, not your coins” is not a slogan — it is a survival strategy.

Both Coinbase and Kraken make it straightforward to withdraw bitcoin. Kraken’s Lightning support makes small, frequent withdrawals economically viable. For Coinbase users without Lightning access, batching withdrawals to minimize on-chain fees is a reasonable approach. For long-term storage, transferring to a hardware wallet remains the gold standard.

Frequently Asked Questions

Is Coinbase or Kraken safer?

Both have strong security track records. Coinbase benefits from public company transparency and auditing requirements. Kraken has operated since 2011 without a breach. Neither is a bad choice for security — the larger risk is leaving bitcoin on any exchange rather than withdrawing to self-custody.

Which exchange has lower fees for buying Bitcoin?

Kraken, by a significant margin. Kraken’s base taker fee of 0.40% is one-third of Coinbase Advanced’s 1.20% at entry-level volumes. This difference compounds meaningfully for regular buyers.

Does Coinbase support Lightning Network?

Not as of early 2026. Coinbase has indicated interest but has not implemented Lightning deposits or withdrawals. Kraken has supported Lightning since 2022.

Can I use both exchanges?

Yes, and some users do — using Coinbase for its PayPal integration or simple interface while using Kraken for lower-fee trading. Both require separate KYC verification. Having accounts on multiple exchanges also provides redundancy if one experiences downtime.

Which exchange is better for dollar cost averaging (DCA)?

Both support recurring buys. Kraken’s lower fees make it the more cost-effective option for DCA. If you are investing $200 per week, the annual fee savings with Kraken versus Coinbase’s simple buy interface can exceed $200.

Part of our free Bitcoin course: This topic is covered in depth in
Bitcoin ETFs Explained: GBTC from the
Bitcoin Mining & Economics course.

Related Articles

The post Coinbase vs Kraken 2026: Complete Exchange Comparison appeared first on Knowing Bitcoin.

]]>
How to Join a Bitcoin Mining Pool: Step by Step https://knowingbitcoin.com/how-to-join-bitcoin-mining-pool/ Thu, 12 Feb 2026 18:48:14 +0000 https://knowingbitcoin.com/how-to-join-bitcoin-mining-pool/ Knowing how to join a mining pool is the first practical step toward earning bitcoin through mining. Solo mining is a lottery — your single machine against a network producing ... Read more

The post How to Join a Bitcoin Mining Pool: Step by Step appeared first on Knowing Bitcoin.

]]>
Reading Time: 6 minutes

Knowing how to join a mining pool is the first practical step toward earning bitcoin through mining. Solo mining is a lottery — your single machine against a network producing over 700 exahashes per second. A mining pool combines the hashrate of thousands of miners, finds blocks more consistently, and distributes rewards proportionally. Whether you are running one ASIC in your garage or managing a rack of machines, pool mining converts unpredictable windfalls into steady, measurable income.

This step-by-step guide covers everything you need to join a mining pool in 2026: choosing the right pool, configuring your hardware, understanding payout methods, and optimizing your setup for maximum efficiency.

Prerequisites: What You Need Before Joining a Pool

Before you configure anything, make sure you have these basics in place:

  • An ASIC miner. CPU and GPU mining for Bitcoin ended years ago. Modern Bitcoin mining requires application-specific integrated circuits (ASICs) like the Antminer S21 or Whatsminer M60. The minimum viable hashrate for meaningful daily income through a pool is roughly 100-200 TH/s.
  • Adequate power supply. A modern ASIC draws 3,000-3,500 watts. You need a dedicated 240V circuit, proper ventilation, and an electricity rate low enough to make mining profitable. Check your rate against current profitability calculators before investing in hardware.
  • A Bitcoin wallet address. You will need this to receive pool payouts. Use a self-custodial wallet — not an exchange address. A hardware wallet is ideal for receiving mining payouts since the amounts accumulate over time.
  • Internet connection. Mining does not require high bandwidth (a few megabytes per day), but it does require low latency and high uptime. A wired Ethernet connection is strongly preferred over Wi-Fi.
  • Bitcoin Mining Privacy: Home to Institutional
  • Bitcoin Node Guide: Decentralization 2026

Step 1: Choose a Mining Pool

The pool you choose affects your income stability, fee structure, and the degree to which your mining contributes to Bitcoin’s decentralization. Here are the major pools operating in 2026:

Pool Comparison Table

Pool Hashrate Share Payout Method Fee Minimum Payout Best For
Foundry USA ~30% FPPS Negotiated Varies Large-scale US operations
AntPool ~19% FPPS / PPLNS 1-4% 0.001 BTC Bitmain hardware operators
F2Pool ~11% FPPS / PPLNS 2-4% 0.005 BTC Multi-coin miners
ViaBTC ~11% PPS+ / PPLNS 1-4% 0.001 BTC Flexibility in payout methods
OCEAN ~1-2% TIDES 0% Custom Decentralization advocates
Braiins Pool ~4% Score-based 2% 0.001 BTC Braiins OS+ users

Factors to Consider

Pool size vs decentralization. Larger pools (Foundry, AntPool) find blocks more frequently, meaning more consistent daily payouts. However, concentrating too much hashrate in one pool poses centralization risks to Bitcoin. If you care about network health, consider mid-sized pools like Braiins Pool or OCEAN.

Payout method. This is the single most impactful decision after choosing a pool:

  • FPPS (Full Pay Per Share): You get paid for every valid share you submit, including a share of transaction fees. Income is the most predictable because the pool absorbs variance. Higher pool fees typically offset this stability.
  • PPLNS (Pay Per Last N Shares): You get paid based on your share of work in the blocks the pool actually finds. Income varies more day-to-day but averages out to higher earnings over time because pool fees are lower.
  • PPS+ (Pay Per Share Plus): A hybrid where block rewards are paid per share (like PPS) and transaction fees are distributed via PPLNS.
  • Bitcoin Mining Privacy: Home to Institutional
  • Bitcoin Node Guide: Decentralization 2026

For miners with thin profit margins, FPPS provides income predictability. For miners with comfortable margins who can absorb variance, PPLNS typically yields slightly more over time due to lower fees.

Step 2: Create a Pool Account

Most pools require a free account. The registration process typically involves:

  1. Visit the pool’s website and click “Sign Up” or “Register.”
  2. Provide an email address and create a password. Use a strong, unique password and enable two-factor authentication (2FA) immediately.
  3. Verify your email address.
  4. Navigate to the dashboard and locate the “Workers” or “Mining Setup” section.
  5. Add your Bitcoin payout address in the payment settings. Double-check this address — mining payouts sent to the wrong address are irreversible.

Some pools, like OCEAN, support payouts directly without traditional account creation — you connect your miner and specify a Bitcoin address in the configuration. This approach is simpler and more privacy-friendly but offers fewer management features.

Step 3: Configure Your ASIC Miner

Every ASIC miner has a web-based management interface accessible via your local network. Here is the general configuration process:

  1. Find your miner’s IP address. Most ASIC miners obtain an IP via DHCP when connected to your network. Check your router’s connected devices list, or use a network scanner tool like Advanced IP Scanner (Windows) or nmap (Linux).
  2. Access the web interface. Open a browser and navigate to the miner’s IP address (e.g., http://192.168.1.100). Default credentials are usually root/root for Bitmain miners or printed on the miner’s documentation.
  3. Navigate to the mining configuration page. This is typically labeled “Miner Configuration,” “Pool Settings,” or similar.
  4. Enter pool connection details:

You will need three pieces of information from your pool’s setup page:

Configure three pool entries if your miner supports it: your primary pool in slot 1, and one or two backup pools in slots 2 and 3. If your primary pool goes down, the miner automatically fails over to the backups.

  1. Save and apply the configuration. The miner will restart its mining process and connect to the pool within seconds.
  2. Verify the connection. Check the pool’s dashboard — your worker should appear within 5-10 minutes with its reported hashrate.

Step 4: Monitor Your Mining Operation

Once connected, monitor these key metrics on your pool’s dashboard:

  • Reported hashrate: What your miner claims to produce. This should match the manufacturer’s specification for your model.
  • Average hashrate: The pool’s estimate of your actual contribution, calculated from the shares you submit. This fluctuates but should average close to your reported hashrate over 24 hours.
  • Share acceptance rate: Should be above 98%. A high rejection rate indicates network latency issues or hardware problems.
  • Daily earnings estimate: Your projected daily earnings based on current hashrate, network difficulty, Bitcoin price, and pool fee structure.
  • Temperature and fan speed: Monitor via the ASIC’s web interface. Most miners operate safely between 60-80°C. Sustained temperatures above 85°C indicate inadequate cooling.
  • Bitcoin Mining Privacy: Home to Institutional
  • Bitcoin Node Guide: Decentralization 2026

Step 5: Configure Payouts

Payout settings vary by pool but generally include:

  • Payout threshold: The minimum balance before the pool sends bitcoin to your wallet. Lower thresholds mean more frequent payouts but higher total transaction fees. A threshold of 0.005-0.01 BTC balances frequency with fee efficiency.
  • Payout frequency: Some pools pay daily, others when you reach the threshold. Daily payouts are convenient but accumulate more on-chain fees over time.
  • Lightning payouts: Some pools (including OCEAN) support Lightning Network payouts using BOLT12 offers, enabling smaller, more frequent payouts with negligible fees. If your pool supports this and you have a Lightning wallet, it is worth enabling.
  • Bitcoin Mining Privacy: Home to Institutional
  • Bitcoin Node Guide: Decentralization 2026

Troubleshooting Common Issues

Miner shows 0 hashrate on pool dashboard

Wait 10-15 minutes — new connections take time to register shares. If the hashrate remains zero, verify the stratum URL is correct, check that your network does not block the pool’s port (common ports: 3333, 25, 443), and ensure the worker name format matches your pool’s requirements.

High share rejection rate

Rejections above 2% suggest network latency. Try connecting to a pool server geographically closer to your location. If the pool offers multiple stratum endpoints for different regions, switch to the nearest one.

Reported hashrate is lower than expected

Check the miner’s operating temperature. Thermal throttling reduces hashrate to protect the hardware. Ensure adequate airflow, ambient temperature below 35°C, and clean dust filters. Also verify that power supply is delivering full rated wattage — an undersized PSU will cap your miner’s performance.

Payouts not arriving

Verify your payout address in the pool dashboard (a single wrong character means lost funds). Check that your balance exceeds the payout threshold. During periods of high on-chain fees, some pools delay payouts to batch transactions — check the pool’s announcements page.

Advanced: Stratum V2 and Decentralized Block Construction

Traditional mining pools control which transactions go into blocks — miners just provide hashpower. Stratum V2 is a protocol upgrade that shifts block template construction to individual miners, reducing the pool operator’s power over transaction selection.

Braiins Pool was the first major pool to support Stratum V2, and OCEAN builds its architecture around giving miners control over block construction. If Bitcoin’s decentralization matters to you beyond earning income, consider pools that support Stratum V2 or similar transparency mechanisms.

Frequently Asked Questions

Can I mine Bitcoin with a regular computer?

Not profitably. Modern Bitcoin mining requires ASIC hardware because the network difficulty is so high that CPUs and GPUs cannot find valid hashes fast enough to generate meaningful income. An ASIC is millions of times more efficient than a GPU at SHA-256 hashing.

How much can I earn mining Bitcoin in a pool?

Earnings depend on your hashrate, electricity cost, the current Bitcoin price, and network difficulty. A single Antminer S21 (200 TH/s) at $0.06/kWh generates roughly $8-15 per day in net profit at early 2026 difficulty and price levels. Use an up-to-date mining calculator for current estimates.

Is it safe to mine in a pool?

Pool mining does not give the pool access to your bitcoin — payouts go directly to your wallet address. The main risk is the pool shutting down while holding a small unpaid balance. Minimize this risk by using established pools with long track records and setting reasonable payout thresholds.

Can I switch pools without stopping my miner?

Yes. Simply update the stratum URL and worker name in your miner’s configuration interface. The miner will disconnect from the old pool and connect to the new one within seconds. Any unpaid balance on the old pool will be paid out according to that pool’s minimum payout schedule.

Part of our free Bitcoin course: This topic is covered in depth in
Mining Pools Explained from the
Bitcoin Mining & Economics course.

Related Articles

The post How to Join a Bitcoin Mining Pool: Step by Step appeared first on Knowing Bitcoin.

]]>
Cryptocurrency Basics: What Exists Beyond Bitcoin https://knowingbitcoin.com/cryptocurrency-basics-beyond-bitcoin/ Thu, 12 Feb 2026 18:48:12 +0000 https://knowingbitcoin.com/cryptocurrency-basics-beyond-bitcoin/ Crypto basics extend beyond Bitcoin — though Bitcoin is where every serious understanding of cryptocurrency should start. Since Satoshi Nakamoto released Bitcoin in 2009, thousands of alternative cryptocurrencies have appeared, ... Read more

The post Cryptocurrency Basics: What Exists Beyond Bitcoin appeared first on Knowing Bitcoin.

]]>
Reading Time: 6 minutes

Crypto basics extend beyond Bitcoin — though Bitcoin is where every serious understanding of cryptocurrency should start. Since Satoshi Nakamoto released Bitcoin in 2009, thousands of alternative cryptocurrencies have appeared, each claiming to solve problems Bitcoin supposedly cannot. Some are genuine technical experiments. Many are speculative vehicles with no meaningful innovation. Understanding what exists beyond Bitcoin, and why most of it struggles to match Bitcoin’s properties, is essential for anyone navigating the cryptocurrency space in 2026.

This guide breaks down the major categories of cryptocurrency, explains how they differ from Bitcoin technically and philosophically, and gives you the framework to evaluate any project on its own merits.

Why Bitcoin Came First — And Why That Matters

Bitcoin solved a problem computer scientists had struggled with for decades: how to create digital scarcity without a central authority. The breakthrough was combining blockchain technology, proof of work, and economic incentives into a system where no single party controls the money supply, transaction validation, or protocol rules.

Every cryptocurrency that followed Bitcoin had the advantage of studying its design. Some attempted to improve on specific technical aspects. Others copied the basic structure and changed superficial parameters. A few invented entirely new approaches to consensus and transaction processing. But all of them exist in the shadow of Bitcoin’s first-mover advantage, network effects, and battle-tested security track record.

Understanding Bitcoin first — its proof of work consensus, its fixed supply of 21 million coins, its UTXO model, and its decentralization guarantees — gives you the vocabulary and mental framework to evaluate everything else in the crypto space.

Major Categories of Cryptocurrency

Smart Contract Platforms

The largest category of non-Bitcoin cryptocurrencies includes platforms designed to run programmable contracts — code that executes automatically when predefined conditions are met.

Ethereum (ETH) is the most established smart contract platform. Launched in 2015, Ethereum extended Bitcoin’s basic scripting capabilities into a general-purpose computing platform. Developers can deploy decentralized applications (dApps) ranging from financial protocols to digital art marketplaces. Ethereum transitioned from proof of work to proof of stake in September 2022 (the “Merge”), fundamentally changing its security model and energy profile.

Solana (SOL) prioritizes transaction speed and low fees. Solana’s architecture can process thousands of transactions per second at a fraction of a cent per transaction, but this throughput comes at the cost of higher hardware requirements for validators, which reduces decentralization compared to Bitcoin or even Ethereum.

The tradeoff: Smart contract platforms gain programmability but sacrifice the simplicity and security focus that makes Bitcoin robust. More complexity means more attack surface. Ethereum alone has seen billions of dollars lost to smart contract exploits and hacks since its launch.

Stablecoins

Stablecoins are cryptocurrencies designed to maintain a fixed value, typically pegged 1:1 to the US dollar. They serve as the plumbing of the crypto trading ecosystem — the way money moves between exchanges and protocols without converting back to traditional banking rails.

USDT (Tether) is the largest stablecoin by market capitalization. It claims to be backed by reserves including US Treasury bills, cash, and other assets. Tether operates on multiple blockchains including Ethereum, Tron, and Solana.

USDC (Circle) emphasizes regulatory compliance and transparency, publishing monthly attestation reports from accounting firms. It operates primarily on Ethereum and Solana.

The risk: Stablecoins reintroduce counterparty risk — you must trust that the issuing company actually holds sufficient reserves. This is the exact type of trust dependency that Bitcoin was designed to eliminate. The collapse of the algorithmic stablecoin UST (Terra) in May 2022, which evaporated approximately $40 billion, demonstrated how catastrophically stablecoin failures can propagate.

Privacy Coins

Bitcoin transactions are pseudonymous — addresses are not directly linked to identities, but transaction flows are publicly visible on the blockchain. Privacy-focused cryptocurrencies attempt to make transactions untraceable by default.

Monero (XMR) uses ring signatures, stealth addresses, and RingCT (Ring Confidential Transactions) to obscure the sender, receiver, and amount of every transaction. Unlike Bitcoin where privacy requires careful technique, Monero provides privacy as a default property.

The debate: Privacy coins face increasing regulatory pressure. Several exchanges have delisted Monero due to compliance concerns. Meanwhile, Bitcoin’s privacy has improved through technologies like CoinJoin, Taproot (which makes complex transactions look identical to simple ones), and the Lightning Network (where payments are not recorded on the main blockchain).

Bitcoin Layer 2 Solutions

Rather than creating alternative blockchains, several projects build on top of Bitcoin’s base layer to add functionality without compromising its security model.

Lightning Network is Bitcoin’s primary Layer 2 solution for fast, cheap payments. It uses payment channels and hash time-locked contracts to enable instant transactions at a fraction of a cent, settled back to Bitcoin’s main chain as needed. The Lightning Network is not a separate cryptocurrency — it uses bitcoin natively.

Liquid Network is a federated sidechain operated by Blockstream that enables faster settlements and confidential transactions. It uses a federation of functionally trusted entities rather than Bitcoin’s fully decentralized mining.

Stacks (STX) brings smart contract functionality to Bitcoin through “proof of transfer,” where Stacks miners spend bitcoin to mine STX blocks. This ties Stacks’ security to Bitcoin’s hashrate while enabling programmable transactions.

Meme Coins and Speculative Tokens

A significant portion of the cryptocurrency market by number of tokens (though not by sustained market capitalization) consists of tokens with no technical innovation — created primarily for speculative trading.

Dogecoin (DOGE) was created as a joke in 2013. It is a lightly modified fork of Litecoin with no supply cap (about 5 billion new DOGE are mined annually). Its value is driven entirely by social media attention and celebrity endorsements.

Meme coins demonstrate an uncomfortable truth about crypto markets: price movement often has nothing to do with technology, utility, or fundamental value. This is relevant for beginners to understand because the loudest voices in crypto are frequently promoting speculative tokens rather than technologically sound projects.

How to Evaluate Any Cryptocurrency

Whether you encounter a new project on social media, in a news article, or from a friend, here is a practical framework for evaluation:

Question Why It Matters Red Flag
What problem does it solve? Technology should address a real need “It’s the next Bitcoin” without specifying what problem it solves differently
Who controls the supply? Centralized supply = centralized power Team holds >20% of total supply or can mint new tokens
How decentralized is the network? Decentralization = censorship resistance Fewer than 20 validators or nodes controlled by a foundation
Is the code open source? Transparency enables independent verification Proprietary codebase or “open source coming soon”
What is the consensus mechanism? Determines security guarantees Novel unproven consensus with no peer-reviewed analysis
How long has it operated? Track record reveals real-world resilience Less than 2 years of mainnet operation

Bitcoin Maximalism vs Multi-Coin Approach

The crypto community is split between “Bitcoin maximalists” who believe only Bitcoin has long-term viability as a decentralized monetary network, and “multi-coiners” who see value in a diverse ecosystem of specialized blockchains.

The maximalist argument: Bitcoin has the strongest network effects, the most decentralized mining, the longest track record, and the clearest monetary policy. Everything else introduces trust assumptions, governance risks, or technical complexity that undermines the core properties that make cryptocurrency valuable in the first place.

The multi-coin argument: different use cases require different architectures. A global settlement layer (Bitcoin), a smart contract platform (Ethereum), a privacy system (Monero), and a fast payment rail (various Layer 2s) might coexist, each optimized for its purpose.

Where you land on this spectrum is ultimately a judgment call. But regardless of your position, understanding Bitcoin deeply first — including its comparison to traditional assets — gives you the strongest foundation for evaluating everything else.

Risks Every Beginner Should Know

  • Scams are endemic. The unregulated nature of crypto makes it a magnet for fraud. Ponzi schemes, rug pulls (developers draining liquidity from a project), phishing attacks, and fake exchanges extract billions of dollars from victims annually.
  • Not your keys, not your coins. If you hold cryptocurrency on an exchange, you do not actually control it. The collapse of FTX in November 2022 — where billions in customer funds vanished — is the most prominent example, but dozens of exchanges have failed or been hacked over the years.
  • Volatility is extreme. Bitcoin has experienced drawdowns of 50-80% multiple times in its history. Altcoins regularly lose 90-99% of their value. Do not invest more than you can afford to lose entirely.
  • Tax implications are real. In most jurisdictions, cryptocurrency transactions trigger taxable events. Selling, trading, or using crypto to buy goods may generate capital gains or losses that must be reported.

Frequently Asked Questions

What is the difference between a coin and a token?

A coin operates on its own blockchain (Bitcoin, Ethereum, Monero). A token operates on someone else’s blockchain — for example, USDC is an ERC-20 token that runs on Ethereum. The distinction matters because tokens inherit the security properties (and limitations) of their host blockchain.

Are altcoins a good investment?

Most altcoins underperform Bitcoin over multi-year periods. Of the top 20 cryptocurrencies by market cap in 2017, the majority have fallen out of the top 100 by 2026. Some altcoins have produced outsized returns, but survivorship bias makes this look easier in hindsight than it is in practice.

How many cryptocurrencies exist?

Depending on how you count, between 10,000 and 25,000 distinct tokens and coins have been created. The vast majority have zero trading volume, no active development, and no real users. Perhaps 50-100 projects have meaningful community and developer activity.

Should I learn about altcoins before understanding Bitcoin?

No. Bitcoin provides the conceptual framework — blockchain, consensus, digital scarcity, self-custody — that every other cryptocurrency builds upon or modifies. Learn Bitcoin first. Everything else becomes easier to understand and evaluate with that foundation.

What is DeFi?

Decentralized Finance (DeFi) refers to financial applications built on smart contract platforms — primarily Ethereum. DeFi protocols replicate traditional financial services (lending, borrowing, trading, insurance) using code instead of intermediaries. While DeFi offers permissionless access to financial tools, it introduces significant smart contract risk and has been a frequent target of exploits and hacks.

Part of our free Bitcoin course: This topic is covered in depth in
Bitcoin vs Gold, Stocks and Fiat from the
Bitcoin Fundamentals course.

The post Cryptocurrency Basics: What Exists Beyond Bitcoin appeared first on Knowing Bitcoin.

]]>
Best Free Blockchain Courses in 2026 https://knowingbitcoin.com/best-free-blockchain-courses-2026/ Thu, 12 Feb 2026 18:48:11 +0000 https://knowingbitcoin.com/best-free-blockchain-courses-2026/ A blockchain course free of charge is easier to find than ever in 2026 — but most online courses bury you in theory without teaching you how Bitcoin actually works ... Read more

The post Best Free Blockchain Courses in 2026 appeared first on Knowing Bitcoin.

]]>
Reading Time: 6 minutes

A blockchain course free of charge is easier to find than ever in 2026 — but most online courses bury you in theory without teaching you how Bitcoin actually works at the protocol level. The problem is not a lack of resources. The problem is signal versus noise: knowing which free courses are worth your time and which are thinly veiled sales funnels for trading platforms or questionable altcoin projects.

This guide evaluates the best free blockchain courses available right now, covering everything from absolute beginner introductions to deeper technical material on Bitcoin’s consensus mechanism, cryptography, and second-layer solutions like the Lightning Network.

What to Look for in a Free Blockchain Course

Before listing specific courses, here are the criteria that separate a useful free course from a waste of your time:

  • Bitcoin-first curriculum. Blockchain technology was invented for Bitcoin. Courses that spend more time on altcoin ecosystems, NFT speculation, or “Web3” marketing than on the actual protocol miss the foundation. Start with Bitcoin; everything else builds on those principles.
  • Technical accuracy. Can the course correctly explain proof of work, SHA-256 hashing, and the UTXO model? Or does it gloss over mechanics with vague analogies? Accuracy is non-negotiable.
  • No hidden upsells. Some “free” courses are lead magnets for paid trading signals, premium subscriptions, or token sales. A genuinely free course teaches without requiring a credit card or pushing you toward speculative products.
  • Self-paced learning. The best free courses let you learn on your own schedule with structured modules that build on each other, not random YouTube playlists with no coherent progression.
  • Practical exercises. Exploring a block explorer, verifying a transaction, or setting up a wallet — hands-on activities make concepts stick far better than passive video watching.

Best Free Blockchain and Bitcoin Courses in 2026

1. Knowing Bitcoin — Bitcoin Fundamentals to Advanced Security (5 Courses)

Our own free course ecosystem covers Bitcoin from absolute beginner concepts through advanced security, privacy, and sovereignty. Five interconnected courses with 45 lessons totaling over 114,000 words take you from “what is a blockchain” through hardware wallets, Lightning Network operation, mining economics, and multisig security.

What it covers:

  • Blockchain technology, proof of work, transactions, and blocks
  • Wallet types, seed phrases, and self-custody best practices
  • Mining economics, halving cycles, and investment fundamentals
  • Lightning Network channels, routing, and wallet setup
  • Privacy techniques, CoinJoin, multisig, and inheritance planning

Format: Written lessons with technical depth, internal cross-references, quizzes, and practical exercises. Entirely free, no account required.

Best for: Learners who prefer reading over video and want a structured, progressive curriculum that builds real Bitcoin literacy — not just surface-level awareness.

2. Saylor Academy — Bitcoin for Everybody (PRDV151)

Created in partnership with Michael Saylor (MicroStrategy), this course provides a solid introduction to Bitcoin from economic and philosophical perspectives. It covers the history of money, why Bitcoin was created, and how it functions as a monetary system.

What it covers:

  • History of money and monetary debasement
  • Bitcoin as digital property and store of value
  • Basics of mining, wallets, and transactions
  • Bitcoin’s monetary policy and scarcity

Format: Video lectures with reading materials. Self-paced, free certificate upon completion.

Best for: People interested in the economic argument for Bitcoin rather than the deep technical mechanics. Good starting point before moving to more technical courses.

3. MIT OpenCourseWare — Blockchain and Money (15.s12)

Professor Gary Gensler (who later became SEC chair) taught this course at MIT Sloan. The full lecture series is available on YouTube and MIT OpenCourseWare. It examines blockchain technology through the lens of financial services and regulation.

What it covers:

  • Cryptographic foundations and distributed ledger technology
  • Smart contracts and decentralized applications
  • Central bank digital currencies
  • Financial regulation and policy considerations

Format: 24 video lectures (60-90 minutes each), slides, and reading lists. Entirely free on MIT OCW.

Best for: Students and professionals who want an academic framework for understanding blockchain in the context of finance and policy. Heavy on economics, lighter on hands-on technical implementation.

4. Coursera — Blockchain Basics by University at Buffalo

Part of the Blockchain Specialization on Coursera, this introductory course can be audited for free (you only pay if you want the certificate). It covers blockchain fundamentals with a mix of video lectures, quizzes, and hands-on assignments.

What it covers:

  • Decentralized networks and consensus mechanisms
  • Cryptographic hashing and Merkle trees
  • Introduction to Ethereum and smart contracts
  • Trust and verification in decentralized systems

Format: 4-week course with video lectures, graded quizzes, and peer-reviewed assignments. Audit for free.

Best for: Learners who prefer structured university-style courses with deadlines and peer interaction. Note that the course covers Ethereum alongside Bitcoin, which broadens scope but dilutes Bitcoin-specific depth.

5. Cyfrin Updraft — Blockchain Developer Courses

Cyfrin’s Updraft platform offers free, developer-focused blockchain courses taught by Patrick Collins. These courses are oriented toward building and auditing smart contracts, not just understanding the theory.

What it covers:

  • Solidity programming and smart contract development
  • Smart contract security and auditing
  • DeFi fundamentals and protocol design
  • Hands-on coding projects

Format: Video lectures with extensive coding exercises. Completely free.

Best for: Developers who want to write code, not just understand concepts. If you are a programmer wanting to build on blockchain technology, this is the most practical free resource available.

6. 101 Blockchains — Enterprise Blockchains Fundamentals

This free course introduces enterprise blockchain concepts — Hyperledger, Corda, and private blockchain deployments. It provides a different perspective from Bitcoin-focused courses, examining how businesses use distributed ledger technology internally.

What it covers:

  • Enterprise blockchain vs public blockchain
  • Hyperledger Fabric architecture
  • Supply chain and identity management use cases
  • Blockchain as a service (BaaS)

Format: Self-paced modules with a free certificate of completion.

Best for: Business professionals evaluating blockchain for corporate applications. Less relevant if your interest is Bitcoin and open-source cryptocurrency.

7. IBM SkillsBuild — Blockchain Fundamentals

IBM offers a free blockchain basics course through its SkillsBuild platform. It introduces distributed ledger concepts with a focus on practical applications in supply chain, identity verification, and financial services.

What it covers:

  • Distributed ledger technology fundamentals
  • How cryptocurrency works at a basic level
  • Real-world blockchain applications (food safety, supply chain)
  • Introduction to Hyperledger

Format: Online modules with certificate. Free with account creation.

Best for: Complete beginners who want a gentle introduction. The IBM lens means heavy enterprise focus, so combine with Bitcoin-specific resources for a complete picture.

How to Structure Your Learning Path

With dozens of free courses available, the question is not what to study but in what order. Here is a practical sequence:

  1. Start with Bitcoin fundamentals. Understand proof of work, blocks, transactions, and the UTXO model before touching anything else. Our Bitcoin Fundamentals course or Saylor Academy covers this well.
  2. Learn self-custody. Understanding wallets, seed phrases, and private keys is essential before interacting with any blockchain. This is where the technology becomes personally relevant.
  3. Explore the Lightning Network. Bitcoin’s second layer is where the technology becomes practical for everyday payments. Understanding channels, routing, and Lightning wallets opens up real-world use cases.
  4. Go deep on your interest area. Mining economics, privacy techniques, node operation, or smart contract development — pick your specialty after mastering the fundamentals.

Free Courses to Avoid

Not all free blockchain courses are created equal. Watch out for these red flags:

  • Trading-focused courses that teach “technical analysis” and trading patterns rather than the underlying technology. These are marketing funnels for exchanges.
  • Courses promoting specific altcoins while dismissing Bitcoin as “old technology.” This is a sales pitch, not education.
  • Courses requiring a deposit or token purchase to access “free” content. Legitimate free education does not require you to buy anything.
  • Outdated material. Blockchain technology evolves quickly. A course from 2018 will contain outdated information about network capacity, fee structures, and available tools. Check the publication or update date.

Frequently Asked Questions

Are free blockchain courses enough to get a job?

Free courses can teach you the fundamentals, and for many blockchain-adjacent roles (product management, technical writing, community management), that is sufficient. For developer positions, you will also need to demonstrate coding skills through projects and contributions to open-source repositories.

Do free blockchain courses offer certificates?

Many do — Saylor Academy, 101 Blockchains, IBM SkillsBuild, and Coursera (audit mode limited) all offer certificates. However, in the blockchain industry, demonstrated knowledge and practical skills matter more than certificates. Being able to explain how a Bitcoin transaction works or set up a Lightning channel is more valuable than a PDF certificate.

How long does it take to learn blockchain basics?

A motivated learner can grasp the core concepts — proof of work, blocks, transactions, wallets — in one to two weeks of focused study. Deeper topics like Lightning Network operation, mining economics, and privacy techniques take additional weeks. Our full 45-lesson curriculum represents roughly 40-60 hours of study material.

Should I learn blockchain or Bitcoin first?

Bitcoin first. Blockchain is a component of Bitcoin, not the other way around. Understanding why Bitcoin needs a blockchain gives you the context to evaluate every other blockchain project — including the ones that probably do not need a blockchain at all.

Part of our free Bitcoin course: This topic is covered in depth in
What Is Blockchain Technology? from the
Bitcoin Fundamentals course.

Related Articles

The post Best Free Blockchain Courses in 2026 appeared first on Knowing Bitcoin.

]]>