Learn
17 |New to LND? 18 | Overview, 19 | Installation, and 20 | Tutorial 21 |
22 |Curious about the Lightning Network? Resources
23 |├── .gitignore ├── 404.html ├── Gemfile ├── Gemfile.lock ├── README.md ├── _config.yml ├── _includes ├── footer.html ├── head.html ├── header.html └── icon-github.html ├── _layouts └── home.html ├── _pages ├── contribute.md ├── lapps.md ├── overview.md └── resources.md ├── _posts └── 2017-06-26-welcome-to-jekyll.markdown ├── _sass ├── .DS_Store ├── minima.scss └── minima │ ├── .DS_Store │ ├── _base.scss │ └── _layout.scss ├── assets ├── dropdown.css └── lapps │ ├── lnd.fun.png │ ├── lnd_desktop_app.png │ ├── thunderdice.png │ ├── yalls.png │ └── zap.png ├── deploy.sh ├── error.html ├── guides ├── docker.md ├── index.md ├── installation.md ├── javascript-grpc.md └── python-grpc.md ├── index.md ├── render.py ├── templates ├── base.md └── installation_footer.md ├── tutorial ├── 01-lncli.md ├── 02-web-client.md ├── 03-rpc-client.md ├── 04-webapp-integration.md └── index.md └── update_and_render.sh /.gitignore: -------------------------------------------------------------------------------- 1 | # Vim 2 | *.swp 3 | 4 | # Jekyll 5 | _site/ 6 | .sass-cache/ 7 | .jekyll-metadata 8 | -------------------------------------------------------------------------------- /404.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 | 5 | 18 | 19 |
Page not found :(
23 |The requested page could not be found.
24 |Resources and documentation for the 11 | Lightning Network Daemon (LND) 12 |
13 |New to LND? 18 | Overview, 19 | Installation, and 20 | Tutorial 21 |
22 |Curious about the Lightning Network? Resources
23 |Looking for detailed dev manuals? Developer Guides
28 |API Reference Documentation? API site
29 |Want to help build the future? Contribute
30 |Looking to read the code? Github
31 |Follow the 36 | Lightning Labs community blog 37 | to keep posted about LND. 38 |
39 |Join the 40 | LND Developer Slack 41 | to meet the team, discuss development, and hang out! 42 |
43 |See the cool apps and wallets built on Lightning: Lapp directory
48 |53 | The Lightning Network scales blockchains and enables trustless instant 54 | payments by keeping most transactions off-chain and leveraging the 55 | security of the underlying blockchain as an arbitration layer. 56 |
57 |58 | This is accomplished primarily through "payment-channels", wherein two 59 | parties commit funds and pay each other by updating the balance 60 | redeemable by either party in the channel. This process is instant and 61 | saves users from having to wait for block confirmations before they can 62 | render goods or services. 63 |
64 |65 | Payment channels are trustless, since any attempt to defraud the current 66 | agreed-upon balance in the channel results in the complete forfeiture of 67 | funds by the liable party. 68 |
69 |70 | By moving payments off-chain, the cost of opening and closing channels 71 | (in the form of on-chain transaction fees) is ammortized over the volume 72 | of payments in that channel, enabling micropayments and small-value 73 | transactions for which the on-chain transaction fees would otherwise be 74 | too expensive to justify. Furthermore, the Lightning Network scales not 75 | with the transaction throughput of the underlying blockchain, but with 76 | modern data processing and latency limits - payments can be made nearly 77 | as quickly as packets can be sent. 78 |
79 |80 | Hash Time-Locked Contracts (HTLCs) allow transactions to be sent between 81 | parties who do not have a direct channels by routing it through multiple 82 | hops, so anyone connected to the Lightning Network is part of a single, 83 | interconnected global financial system. 84 |
85 |86 | In short, the Lightning Network enables scalable blockchains through a 87 | high-volume of instant transactions not requiring custodial delegation. 88 |
89 |90 | Continue reading at the full LND Overview and 91 | Developer Guide. 92 |
93 |242 | To view this article, please log in and return to this page to make 243 | a payment. 244 |
245 | Log in 246 | {% elif payment.status == "complete" %} 247 |To view this article, please pay 1000 satoshis via the request below:
282 |{{ payment.payment_request }}