This week’s newsletter describes a proposal to use covenants to significantly improve LN’s scalability. Also included are our regular sections summarizing popular questions and answers on the Bitcoin Stack Exchange, announcing new releases and release candidates, and describing notable changes to popular Bitcoin infrastructure software.

News

  • Using covenants to improve LN scalability: John Law posted to the Bitcoin-Dev and Lightning-Dev mailing lists the summary of a paper he’s written about creating very large channel factories using covenants and managing the resultant channels using adaptations of several previous protocols he’s described (see Newsletters #221, #230, and #244).

    He begins by describing a scalability problem with signature-based protocols that require participation from a large number of users, such as coinjoins or previous factory designs: if 1,000 users agree to participate in the protocol but one of them becomes unavailable during signing, the other 999 signatures are useless. If, during the next attempt, another individual user becomes unavailable, the other 998 signatures collected in the second attempt are useless. He proposes covenants like OP_CHECKTEMPLATEVERIFY and SIGHASH_ANYPREVOUT as a solution to this problem: they are known to allow a single small transaction to restrict its funds to only being spent in one or more subsequent pre-defined child transactions. The subsequent transactions can also be limited by a covenant.

    Law uses this mechanism to create a timeout tree where a funding transaction pays to a tree of pre-defined child transactions that are ultimately spent offchain into a large number of separate payment channels. A mechanism similar to the one used by Ark (see Newsletter #253) allows each of the payment channels to optionally be put onchain, but it also allows the factory funder to reclaim any channel funds that have not been put onchain after an expiry. This can be extremely efficient: an offchain timeout tree funding millions of channels can be created using a single small onchain transaction. After the expiry, the funds can be reclaimed by the factory funder in another small onchain transaction, with individual users withdrawing their funds over LN to their other channels prior to the factory expiration date.

    The model above is compatible with the currently used LN-Penalty channel construction as well as the proposed LN-Symmetry mechanism. However, the remainder of Law’s paper looks at a modification of his proposed Fully Factory Optimized Watchtower Free (FFO-WF) protocol that provides several advantages for the covenant-based factory design. In addition to the advantages described in previous newsletters, such as only requiring casual users to go online for a few minutes every few months and allowing dedicated users to use their capital across channels more efficiently, a new advantage of the updated construction allows the factory funder to move funds for casual users from one factory (based on a particular onchain transaction) to another factory (anchored in a different onchain transaction) without requiring interaction from the user. That means casual user Alice who knows she needs to come online before the 6-month expiry of a factory may come online at month 5 to discover that her funds have already been rolled over to a new factory with another several months until expiry. Alice doesn’t need to do anything; she retains complete trustless control of her funds. This reduces the chance that Alice might come online very close to expiry, discover that the factory funder is temporarily unavailable, and be forced to put her part of the timeout tree onchain—incurring transaction fees and reducing overall network scalability.

    Anthony Towns replied with a concern about what he called the “thundering herd” problem (called “forced expiration spam” in the original LN paper) where the deliberate or accidental failure of a large dedicated user requires many other users to put many time-sensitive transactions onchain all at the same time. For example, a factory with a million users may require time-sensitive confirmation of up to a million transactions plus non-sensitive confirmation of up to two million more transactions for those users to put those funds back into new channels. It currently takes the network about a week to confirm three million transactions, so users of a million-user factory might want a factory to roll over their funds a few weeks before expiration—or perhaps several months early if they’re worried about several million-user factories having problems simultaneously.

    A version of the original LN paper suggested that this problem could be addressed using an idea by Gregory Maxwell that would delay expiry when “blocks are full” (e.g., feerates are above the normal amount). In Law’s reply to Towns, he noted that he’s working on a specific design for a solution of that type which he will publish when he’s finished thinking through it.

Selected Q&A from Bitcoin Stack Exchange

Bitcoin Stack Exchange is one of the first places Optech contributors look for answers to their questions—or when we have a few spare moments to help curious or confused users. In this monthly feature, we highlight some of the top-voted questions and answers posted since our last update.

Releases and release candidates

New releases and release candidates for popular Bitcoin infrastructure projects. Please consider upgrading to new releases or helping to test release candidates.

  • LND v0.17.0-beta.rc5 is a release candidate for the next major version of this popular LN node implementation. A major new experimental feature planned for this release, which could likely benefit from testing, is support for “simple taproot channels”.

Notable code and documentation changes

Notable changes this week in Bitcoin Core, Core Lightning, Eclair, LDK, LND, libsecp256k1, Hardware Wallet Interface (HWI), Rust Bitcoin, BTCPay Server, BDK, Bitcoin Improvement Proposals (BIPs), Lightning BOLTs, and Bitcoin Inquisition.

  • Bitcoin Core #28492 updates the descriptorprocesspsbt RPC to include the complete serialized transaction if the processing of the PSBT results in a broadcastable transaction. See last week’s newsletter for a similar merged PR.

  • Bitcoin Core GUI #119 updates the transaction list in the GUI to no longer provide a special category for “payment to yourself”. Now transactions that have both inputs and outputs that affect the wallet are displayed on separate lines for spending and receiving. This may improve clarity for coinjoins and payjoins, although Bitcoin Core does not currently support either of those types of transactions by itself.

  • Bitcoin Core GUI #738 adds a menu option to allow migrating a legacy wallet based on keys and implied output script types stored in BerkeleyDB (BDB) to a modern wallet that uses descriptors stored in SQLite.

  • Bitcoin Core #28246 updates how the Bitcoin Core wallet internally determines what output script (scriptPubKey) a transaction should pay. Previously, transactions just paid whatever output script the user specified, but if support for silent payments is added to Bitcoin Core, the output script will need to be derived based on data from the inputs selected for the transaction. This update makes that much simpler.

  • Core Lightning #6311 removes the --developer build option that produced binaries with additional options over the standard CLN binaries. Now experimental and non-default features can be accessed by starting lightningd with the --developer runtime configuration option. An --enable-debug build option will still produce a slightly different binary with some modifications beneficial for testing.

  • Core Lightning #6617 updates the showrunes RPC to provide a new results field, last_used, that displays the last time the rune (authentication token) was used.

  • Core Lightning #6686 adds configurable Content-Security-Policy (CSP) and Cross-Origin-Resource-Sharing (CORS) headers for the REST interface to CLN’s API.

  • Eclair #2613 allows Eclair to manage all of its own private keys and to use Bitcoin Core with only a watch-only wallet (a wallet with public keys but no private keys). This can be especially useful if Eclair is being run in a more secure environment than Bitcoin Core. For details, see the documentation added in this PR.

  • LND #7994 adds support to the remote signer RPC interface for opening taproot channels, which requires specifying a public key and the MuSig2 two-part nonce.

  • LDK #2547 updates the probabilistic pathfinding code to assume that it’s more likely remote channels have most of their liquidity pushed to one side of a channel. For example, in a 1.00 BTC remote channel between Alice and Bob, the least likely state for the channel is for Alice and Bob to each have 0.50 BTC. It’s more likely that one of them has 0.90 BTC—and even more likely than one of them has 0.99 BTC.

  • LDK #2534 adds ChannelManager::send_preflight_probes method for probing payment paths before attempting to send a payment. A probe is generated by a sender like a regular LN payment but the value of its HTLC preimage is set to an unusable value (e.g. a value only known to the sender); when it reaches its destination, the receiver doesn’t know the preimage and so rejects it, sending back an error. If that error is received, the prober knows that the payment path had enough liquidity to support the payment when it was sent and so an actual payment sent along the same path for the same amount will likely succeed. If a different error is received, such as an error indicating one of the hops along the path couldn’t forward the payment, a new path can be probed before the actual payment is sent.

    Pre-payment (“preflight”) probing can be useful with small amounts of money to find hops that are having issues that might cause delays. If a few hundred sats (or less) get stuck for a few hours, it’s not a big deal for most spenders—but if the full amount of a payment representing a significant portion of a node’s capital gets stuck, it can be very annoying. It can also be possible to probe several paths simultaneously and use the results to choose the best path a few moments later when sending a payment.