Lightning Network

Routing through an idealized mesh network of payment channels.

The Lightning Network is a "second layer" payment protocol that operates on top of a blockchain (most commonly Bitcoin). It theoretically enables fast transactions between participating nodes and has been touted as a solution to the bitcoin scalability problem. It features a peer-to-peer system for making micropayments of digital cryptocurrency through a network of bidirectional payment channels without delegating custody of funds. Lightning Network implementation simplifies atomic swaps.

Normal use of the Lightning Network consists of opening a payment channel by committing a funding transaction to the relevant blockchain, followed by making any number of Lightning transactions that update the tentative distribution of the channel's funds without broadcasting to the blockchain, optionally followed by closing the payment channel by broadcasting the final version of the transaction to distribute the channel's funds.

To perform as intended, Lightning Network requires a transaction malleability fix, such as Segregated Witness (SegWit) in Bitcoin.[1][2]

History

Joseph Poon and Thaddeus Dryja published the Lightning white paper in 2015. More detailed specifications are being developed by multiple parties, including a non-commercial implementation by MIT Digital Currency Initiative,[3] and Bitcoin Core/bitcoind implementations by Blockstream, Lightning Labs, and ACINQ.

In December 2017, a series of interoperable test transactions were performed on Bitcoin Core implementations.

In January 2018 Blockstream launched a payment processing system for web retailers. Blockstream noted that Lightning was live on mainnet with 60 nodes operating as of January 18, 2018, and should be considered "in testing."

On March 15, 2018, Lightning Labs CEO Elizabeth Stark announced the initial release of lnd 0.4-beta for developers with the intent on making it available for testing purposes on the main bitcoin network with Litecoin support.

The Lightning Network concept was endorsed by mobile payment entrepreneur Jack Dorsey in March 2018.[4]

From April 2018 to August 2018, the Bitcoin Lightning Network had a monthly growth rate of about 15%. The number of nodes increased from 1,500 to 3,000, and the number of channels increased from 4,000 to 11,000.[5]

In April 2018, the eclair wallet was removed from the Google Play store for a few days because the app developer lost the private signing key making it unable to be updated for critical bugs.[6]

In May 2018, Vaultoro.com becomes the first bitcoin-to-gold exchange in the world to accept main net lightning network deposits.

On July 1, 2018, payment processor CoinGate released a service for merchants to accept payments through the Lightning Network.

2018 DDoS attacks

On March 20, 2018, Lightning Network nodes faced a Distributed Denial of Service (DDoS) attack that sent around 200 nodes offline, down from around 1,050 to 870. The exploit used as many node connections as possible to prevent any new connections.[7] A month earlier in February, Bitcoin Core developer Peter Todd said the Lightning protocol could very well "prove to be vulnerable to DoS [denial of service] attacks in its current incarnation." According to the cryptographer, this poses danger to both the peer-to-peer as well as the blockchain level of the project.[8]

Design

The payment channels allow participants to transfer money to each other without having to make all their transactions public on the blockchain. This is done by penalizing uncooperative participants. When opening a channel, participants must commit an amount (in a funding transaction, which is on the blockchain). Time-based script extensions like CheckSequenceVerify and CheckLockTimeVerify make the penalties possible.

If we presume a large network of channels on the Bitcoin blockchain, and all Bitcoin users are participating on this graph by having at least one channel open on the Bitcoin blockchain, it is possible to create a near-infinite amount of transactions inside this network. The only transactions that are broadcast on the Bitcoin blockchain prematurely are with uncooperative channel counterparties.

Lightning Paper[9]

The CheckSequenceVerify (CSV) Bitcoin Improvement Proposal details how Hash Time-Locked Contracts are implemented with CSV and used in Lightning.[10]

Commitment transactions

If Alice and Bob have a payment channel, both of them also have a "latest" commitment transaction. A commitment transaction divides the funds from the funding transaction according to the correct allocation between Alice and Bob. For example, if Alice owns 1.0 mBTC (equal to 0.001 bitcoins or 100000 satoshis) and Bob owns 1.0 mBTC in the channel, the commitment transactions divide the total channel funds in that way.

Commitment transactions allow multiple users to participate in a single transaction (and thus act as a single entity), using a multi-key system. Determination of congestion falls primarily on the miners, so this network rests on the assumption that honest miners will not organize a 51% attack.[11]

Since commitment transactions spend the funding transaction, they must be signed by both partners.

Commitment transactions are actually a pair of asymmetrical transactions. Alice's commitment transaction contains two outputs: one which pays Bob outright, and another which is a timelocked, revocable output that eventually pays Alice. The revocable output may be revoked by Bob if Bob knows the revocation key. Bob's commitment transaction is the reverse: it pays outright to Alice, but pays Bob's share under a timelocked, revocable output; if Alice knows the revocation key to Bob's commitment transaction, she can revoke it.

Initially, Alice holds the commitment transaction, and Bob holds the commitment transaction. The revocation key for , , is known by Alice, but not by Bob; the revocation key for , , is likewise known only by Bob.

Suppose Alice decides to pay Bob 0.25 mBTC (before this, each owns 1 mBTC):

  1. Alice creates a new Bob's transaction, , which allocates 0.75 mBTC to Alice and 1.25 mBTC to Bob.
  2. Alice signs and sends to Bob.
  3. Bob receives , signs it, and keeps it.
  4. Bob creates a new Alice's transaction, , which allocates 0.75 mBTC to Alice and 1.25 mBTC to Bob.
  5. Bob signs and sends to Alice.
  6. Alice receives , signs it, and keeps it.
  7. Alice provides , invalidating ; she can then delete .
  8. Bob provides , invalidating ; he can then delete .

Limitations

The Lightning Network is made up of bidirectional payment channels between two nodes which combined create smart contracts. If at anytime either party drops the channel, the channel will close and be settled on the blockchain.

Due to the nature of the Lightning Network's dispute mechanism which requires all users to watch the blockchain constantly for fraud, the concept of a "watchtower" has been developed, where trust can be outsourced to watchtower nodes to monitor for fraud.

Routing

The original whitepaper in reference to routing suggests that "eventually, with optimizations, the network will look a lot like the correspondent banking network, or Tier-1 ISPs".[11]

Implementations

The specification for the commercial varieties of the lightning network is available on GitHub, and its largest contributor is Rusty Russell of Blockstream.[2]

The non-commercial lightning implementation called 'LIT' is available through the MIT-DCI Github. The MIT-DCI is the largest contributor to this version of the lightning network.

The public alpha release of lnd was made on 10 January 2017.[12] The Release Candidate (RC1) of the Lightning protocol specification was released on 6 December 2017.

References

  1. Does Lightning require Segregated Witness? in Rusty Russell's Lightning Things To Know
  2. 1 2 "lightning-rfc: Lightning Network Specifications". 25 September 2017 via GitHub.
  3. "The Digital Currency Initiative at the MIT Media Lab". MIT Digital Currency Initiative. Retrieved 2018-07-16.
  4. "Bitcoin price: What is Bitcoin lightning network - how could it cause CHAOS with BTC price". Express. 2018-07-06.
  5. "Statistics". 1ml.com.
  6. "Eclair: first Bitcoin Lightning Network wallet removed from Google Playstore". News Article. WhatTech.com. 2018-04-09.
  7. "Lightning Network DDoS Sends 20% of Nodes Down". News Article. TrustNodes. 2018-03-21.
  8. "Bitcoin developer warns Lightning Network is flawed and likely vulnerable to DoS attacks". News Article. The Next Web. 2018-02-27.
  9. "The Bitcoin Lightning Network: Scalable Off-Chain Instant Payments" (PDF). lightning.network. January 14, 2016.
  10. "bips: Bitcoin Improvement Proposals". 25 September 2017 via GitHub.
  11. 1 2 Poon, Joseph (November 2015). "The Bitcoin Lightning Network: Scalable Off-Chain Instant Payments" (PDF). We Use Coins.
  12. "Alpha Release of the Lightning Network Daemon". Lightning Network Community Blog. Lightning Labs. 10 January 2017. Retrieved 19 September 2017.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.