From e339b3a42e271a9f3115330c884b70ab331ae3c4 Mon Sep 17 00:00:00 2001 From: Imran <60175113+ImranLorgat@users.noreply.github.com> Date: Sun, 30 Aug 2020 01:05:01 +0200 Subject: [PATCH] Glossary - Atomic Multipath Payments --- glossary.asciidoc | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/glossary.asciidoc b/glossary.asciidoc index a595d5e..12b99d6 100644 --- a/glossary.asciidoc +++ b/glossary.asciidoc @@ -33,6 +33,14 @@ Some additional definitions, to be cleaned up and moved into alphabetic order ar address:: A Bitcoin address looks like +1DSrfJdB2AnWaFNgSbv3MZC2m74996JafV+. It consists of a string of letters and numbers. It's really an encoded base58check version of a public key 160-bit hash. Just as you ask others to send an email to your email address, you would ask others to send you bitcoin to one of your Bitcoin addresses. +AMP:: + Atomic Multipath Payments. + A method for payments where the sender can use more than one of their channels to forward a payment. + By default, a sender uses one channel to forward payment. + This can cause issues, for example, where a sender has an two channels with an outgoing capacity of 0.5 BTC but wishes to forward a payment of 0.8 BTC. + By default, this payment would fail without rebalancing. + With AMP, the sender can split the payment between these channels and either have the entire payment succeed or fail, with no partial payment possible. + Asymmetric Cryptographic System:: Asymmetric cryptography, or public-key cryptography, is a cryptographic system that uses pairs of keys: public keys which may be disseminated widely, and private keys which are known only to the owner. The generation of such keys depends on cryptographic algorithms based on mathematical problems to produce one-way functions.