#10736·lnd

[epic]: BOLT 12 Implementation Roadmap

Author: bitromortacCreated Apr 16, 2026Updated Sep 18, 2026
Labelsenhancementbolt12epic

BOLT 12 is an alternative to BOLT 11 invoices with reusable offers, a two-step negotiation protocol where a payer decodes an offer, requests an invoice via onion messages, and pays the returned invoice through blinded payment paths. This issue tracks the progress towards that functionality. Original issue: https://github.com/lightningnetwork/lnd/issues/5594. I'll edit this issue to track more fine grained steps (the final architecture is still being worked on) and to link to corresponding PRs.

Milestones

Design decisions worth knowing

  • Stateless invoice settlement for DoS mitigation: the receiver does not store invoices at creation time. A signed envelope in the blinded path carries enough data to reconstruct the invoice when the HTLC arrives, avoiding per-request DB writes.
  • Invoice RPC backward compatibility: the change is planned in such a way that Bolt12 invoices integrate into existing invoice RPCs, with additional Bolt12 specific fields. Hold invoices will not be supported initially.