Update 01-en.md

This commit is contained in:
Christoph 2023-05-10 11:50:22 +02:00 committed by GitHub
parent 1d1cd429a8
commit 1ebfd39b3a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,6 +1,8 @@
---
title: Setting Up and Running a Bitcoin Full Node with a Lightning Network Node
description: Learn how to set up and run a Bitcoin full node along with a Lightning Network node on a server.
title: Setting up a Bitcoin Full Node with a Lightning Network Node
description: Learn how to set up and run a Bitcoin full node along with a Lightning network node on a server.
level: [intermediate]
updated_at: 2023-04-23
slug: bitcoin-full-node-lightning-network-node-setup
@ -16,10 +18,8 @@ available_languages: [en]
This tutorial explains how to set up a Bitcoin full node with a Lightning node on your server. Running a full node contributes to the strength and security of the Bitcoin network, and a Lightning node enables faster, cheaper transactions.
The most important requirement for implementation is a basic understanding of the Linux command line.
## Requirements
To set up a Bitcoin full node and a Lightning node, you need a server with the following characteristics:
@ -105,7 +105,7 @@ After provisioning the server and logging in with the username `root` and the pa
bitcoind
```
At this point Bitcoin Core should start synchronizing with the network. It will download and verify the entire blockchain, which can take several hours to a few days.
At this point, Bitcoin Core should start synchronizing with the network. It will download and verify the entire blockchain, which can take several hours to a few days.
7. Track the progress of your Bitcoin node synchronization.
@ -199,7 +199,7 @@ At this point Bitcoin Core should start synchronizing with the network. It will
8. Create a wallet using `lncli create`.
After setting up your Bitcoin full node and Lightning Network node, open another terminal window and create a wallet using the following command:
After setting up your Bitcoin full node and Lightning network node, open another terminal window and create a wallet using the following command:
```
lncli create
@ -207,12 +207,36 @@ lncli create
Follow the steps described by the command-line interface to create a new wallet, including setting a wallet password, generating a seed, and backing up your seed phrase.
Congratulations! You now have a functioning Bitcoin full node with a Lightning Network node and a newly created wallet.
Congratulations! You now have a functioning Bitcoin full node with a Lightning network node and a newly created wallet.
For more information and basic usage of LND, check out the [official LND documentation](https://docs.lightning.engineering/lightning-network-tools/lnd/first-steps-with-lnd).
Remember to keep your seed phrase secure and make sure to have a backup, as losing it will result in the loss of your funds. Also, keep your server secure and up-to-date to ensure the safety of your Bitcoin full node and Lightning Network node.
Remember to keep your seed phrase secure and make sure to have a backup, as losing it will result in the loss of your funds. Also, keep your server secure and up-to-date to ensure the safety of your Bitcoin full node and Lightning network node.
With your new setup, you can now participate in the Bitcoin and Lightning Network ecosystems, send and receive transactions, and contribute to the overall health and decentralization of the network. Enjoy exploring the world of cryptocurrencies and the Lightning Network!
With your new setup, you can now participate in the Bitcoin and Lightning network ecosystems, send and receive transactions, and contribute to the overall health and decentralization of the network. Enjoy exploring the world of cryptocurrencies and the Lightning Network!
Now you have a Bitcoin full node with a Lightning node up and running. You can use `lncli` to interact with your LND node, and you can connect your Lightning wallet to your node for sending and receiving payments.
# Licence
[MIT](https://github.com/netcup-community/community-tutorials/blob/main/LICENSE)
Copyright (c) 2021 netcup
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicence, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
# Contributor's Certificate of Origin
By making a contribution to this project, I certify that:
1) The contribution was created in whole or in part by me and I have the right to submit it under the licence indicated in the file; or
2) The contribution is based upon previous work that, to the best of my knowledge, is covered under an appropriate licence and I have the right under that licence to submit that work with modifications, whether created in whole or in part by me, under the same licence (unless I am permitted to submit under a different licence), as indicated in the file; or
3) The contribution was provided directly to me by some other person who certified (a), (b) or (c) and I have not modified it.
4) I understand and agree that this project and the contribution are public and that a record of the contribution (including all personal information I submit with it, including my sign-off) is maintained indefinitely and may be redistributed consistent with this project or the licence(s) involved.