1
0
mirror of https://github.com/lightning/bolts.git synced 2024-11-19 10:00:04 +01:00

BOLT0: Add route and invoice to glossay

Co-authored-by: Shannon Appelcline <shannon.appelcline@gmail.com>
Co-authored-by: Christian Decker <decker.christian@gmail.com>
This commit is contained in:
Christian Decker 2018-04-18 12:59:44 +02:00 committed by Rusty Russell
parent 31fdef56b3
commit ed62389520

View File

@ -43,6 +43,7 @@ This is version 0.
* A fast, off-chain method of mutual exchange between two *peers*. * A fast, off-chain method of mutual exchange between two *peers*.
To transact funds, peers exchange signatures to create an updated *commitment transaction*. To transact funds, peers exchange signatures to create an updated *commitment transaction*.
* _See closure methods: mutual close, revoked transaction close, unilateral close_ * _See closure methods: mutual close, revoked transaction close, unilateral close_
* _See related: route_
* *Closing transaction*: * *Closing transaction*:
* A transaction generated as part of a _mutual close_. A closing transaction is similar to a _commitment transaction_, but with no pending payments. * A transaction generated as part of a _mutual close_. A closing transaction is similar to a _commitment transaction_, but with no pending payments.
@ -95,6 +96,11 @@ This is version 0.
* _See container: commitment transaction_ * _See container: commitment transaction_
* _See parts: Payment hash, Payment preimage_ * _See parts: Payment hash, Payment preimage_
* *Invoice*: A request for funds on the Lightning Network, possibly
including payment type, payment amount, expiry, and other
information. This is how payments are made on the Lightning
Network, rather than using Bitcoin-style addresses.
* *It's ok to be odd*: * *It's ok to be odd*:
* A rule applied to some numeric fields that indicates either optional or * A rule applied to some numeric fields that indicates either optional or
compulsory support for features. Even numbers indicate that both endpoints compulsory support for features. Even numbers indicate that both endpoints
@ -180,6 +186,11 @@ This is version 0.
*commitment revocation secret key*, it can create a *penalty transaction*. *commitment revocation secret key*, it can create a *penalty transaction*.
* _See related: mutual close, unilateral close_ * _See related: mutual close, unilateral close_
* *Route*: A path across the Lightning Network that enables a payment
from an *origin node* to a *final node* across one or more
*hops*.
* _See related: channel_
* *Sending node*: * *Sending node*:
* A *node* that is sending a message. * A *node* that is sending a message.
* _See category: node_ * _See category: node_