Multipath payments
Also covering AMP and Multipart payments
Multipath payments are LN payments split into two or more parts and sent using a different path for each part.
Smaller payments are more likely to succeed in general, and allowing a payment to be split allows the spender to use almost all of their funds at once no matter how many channels those funds are split across. There are two basic multipath proposals:
-
Atomic Multipath Payments (AMP), sometimes called Original AMP or OG AMP, which allows a spender to pay multiple hashes all derived from the same preimage—a preimage the receiver can only reconstruct if they receive a sufficient number of shares. This only allows the receiver to accept a payment if they receive all of the individual parts. Each share using a different hash adds privacy by preventing the separate payments from being automatically correlated with each other by a third party. The proposal’s downside is that the spender selects all the preimages, so knowledge of the preimage doesn’t provide cryptographic proof that they actually paid the receiver.
-
Base-AMP which simply sends multiple payments all using to the same hash and assumes the receiver will wait until the full amount is received before claiming the payment (releasing the hash preimage and allowing generation of a provable receipt). It’s also possible for third-parties who see multiple payments using the same hash to assume they’re part of the same true payment.
Primary code and documentation
Optech newsletter and website mentions
- 2019-12-28 2019 year-in-review: multipath payments
- 2019-12-18 Basic multipath payment support added to LN specification
- 2019-12-18 Multiple LN implementations add multipath payment support
- 2019-12-11 LND #3788 adds support for “payment addresses” (payment secrets)
- 2019-12-04 C-Lightning #3259 adds payment secrets to prevent multipath probing
- 2019-11-27 LND #3499 extends several RPCs to support tracking multipath payments
- 2019-11-20 Eclair #1153 adds experimental support for multipath payments
- 2019-11-13 LND #3442 preparatory PR adding features necessary for multipath payments
- 2019-09-15 LND #3390 separates tracking of HTLCs from invoices as necessary for AMP
-
2018-11-20 LN protocol 1.1 goals: multipath payments
Previous Topic:
Minisketch
Next Topic:
MuSig