mirror of
https://github.com/openoms/bitcoin-tutorials.git
synced 2025-12-19 04:54:18 +01:00
Docs imprevements (#56)
* fix README.md * fix addSubdomains.md * fix README.md * fix README.md * fix lnd-onchain-wallet-only.md * fix seedxor.md * fix README.md
This commit is contained in:
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Run BTCPayServer on your RaspiBlitz using the already synced bitcoin blockchain and local LND node.
|
Run BTCPayServer on your RaspiBlitz using the already synced bitcoin blockchain and local LND node.
|
||||||
Benefit from the backup and security features of the RaspiBlitz and LND.
|
Benefit from the backup and security features of the RaspiBlitz and LND.
|
||||||
No added synchronization needed.
|
No added synchronization is needed.
|
||||||
|
|
||||||
Requirements:
|
Requirements:
|
||||||
* a domain name or dynamic DNS
|
* a domain name or dynamic DNS
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ read EMAIL
|
|||||||
echo "Input 3 subdomains separated with commas (eg: pay.example.com,tips.example.com,status.example.com)"
|
echo "Input 3 subdomains separated with commas (eg: pay.example.com,tips.example.com,status.example.com)"
|
||||||
read SUBDOMAINS
|
read SUBDOMAINS
|
||||||
|
|
||||||
echo "Input the URL to be redirected to for the second domain"
|
echo "Input the URL to be redirected to the second domain"
|
||||||
read REDIRECT1
|
read REDIRECT1
|
||||||
echo "Input the URL to be redirected to for the third domain"
|
echo "Input the URL to be redirected to for the third domain"
|
||||||
read REDIRECT2
|
read REDIRECT2
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
The desktop app ZAP (https://github.com/LN-Zap/zap-desktop)
|
The desktop app ZAP (https://github.com/LN-Zap/zap-desktop)
|
||||||
) is a cross platform Lightning Network wallet focused on user experience and ease of use.
|
) is a cross platform Lightning Network wallet focused on user experience and ease of use.
|
||||||
|
|
||||||
Download ZAP for your operating sytem:
|
Download ZAP for your operating system:
|
||||||
https://github.com/LN-Zap/zap-desktop/releases
|
https://github.com/LN-Zap/zap-desktop/releases
|
||||||
Install instructions: https://github.com/LN-Zap/zap-desktop#install
|
Install instructions: https://github.com/LN-Zap/zap-desktop#install
|
||||||
|
|
||||||
|
|||||||
@@ -13,10 +13,10 @@ Can be thought of as a physical 2-of-3 multisig solution.
|
|||||||
## [Samourai Wallet](samouraiwallet.md)
|
## [Samourai Wallet](samouraiwallet.md)
|
||||||
---
|
---
|
||||||
### Electrum Wallet seed as a passphrase
|
### Electrum Wallet seed as a passphrase
|
||||||
A well proven way to generate random 12 word list is to create a new wallet seed in [Electrum Wallet](https://electrum.org/#download).
|
A well proven way to generate a random 12 word list is to create a new wallet seed in [Electrum Wallet](https://electrum.org/#download).
|
||||||
To use Electrum boot [Tails](https://tails.boum.org/) (ideally offline) or [download and verify the wallet](https://electrum.org/#download) on an existing system.
|
To use Electrum boot [Tails](https://tails.boum.org/) (ideally offline) or [download and verify the wallet](https://electrum.org/#download) on an existing system.
|
||||||
|
|
||||||
Follow steps 1-5 in this [guide](https://bitcoinelectrum.com/creating-an-electrum-wallet/) to get the seed. The wallet file is not needed, only write down the words and store accordingly. The 12 words are to be used as a passphrase, encryption passphrase, cypher phrase or wallet unlock password. Do not reuse passphrases for more than one purpose and label the backups clearly.
|
Follow steps 1-5 in this [guide](https://bitcoinelectrum.com/creating-an-electrum-wallet/) to get the seed. The wallet file is not needed, only write down the words and store them accordingly. The 12 words are to be used as a passphrase, encryption passphrase, cypher phrase or wallet unlock password. Do not reuse passphrases for more than one purpose and label the backups clearly.
|
||||||
|
|
||||||
The [Electrum word list](https://github.com/spesmilo/electrum/blob/master/electrum/wordlist/english.txt) is based on the same 2048 words as the the [BIP39 word list](https://github.com/bitcoin/bips/blob/master/bip-0039/english.txt) which the ColdCard firmware contains so the keyboard entry is facilitated by the menu.
|
The [Electrum word list](https://github.com/spesmilo/electrum/blob/master/electrum/wordlist/english.txt) is based on the same 2048 words as the the [BIP39 word list](https://github.com/bitcoin/bips/blob/master/bip-0039/english.txt) which the ColdCard firmware contains so the keyboard entry is facilitated by the menu.
|
||||||
|
|
||||||
|
|||||||
@@ -17,7 +17,7 @@ More on LND wallet recovery: <https://github.com/lightningnetwork/lnd/blob/maste
|
|||||||
LND seed format (different from Bip39 or Electrum): <https://github.com/lightningnetwork/lnd/tree/master/aezeed>
|
LND seed format (different from Bip39 or Electrum): <https://github.com/lightningnetwork/lnd/tree/master/aezeed>
|
||||||
Test at https://guggero.github.io/cryptography-toolkit/#!/aezeed
|
Test at https://guggero.github.io/cryptography-toolkit/#!/aezeed
|
||||||
|
|
||||||
Include the Node ID on all backup locations. It is derived from the bip32 root key (encoded by the Seed + Cypher Phrase) so can be used to identify the backup and test the successful recovery.
|
Include the Node ID on all backup locations. It is derived from the bip32 root key (encoded by the Seed + Cypher Phrase) so it can be used to identify the backup and test the successful recovery.
|
||||||
Obtain the Node ID with
|
Obtain the Node ID with
|
||||||
```
|
```
|
||||||
$ lncli getinfo | grep identity_pubkey
|
$ lncli getinfo | grep identity_pubkey
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
## SeedXOR multi-location backup scheme
|
## SeedXOR multi-location backup scheme
|
||||||
Full documentation: [seedxor.com/](https://seedxor.com/)
|
Full documentation: [seedxor.com/](https://seedxor.com/)
|
||||||
|
|
||||||
Existig seeds can be broken up with seedXOR or can be used as components of a new a scheme.
|
Existig seeds can be broken up with seedXOR or can be used as components of a new scheme.
|
||||||
If there was a BIP39 passphase used keep a copy of the passphrase on every location.
|
If there was a BIP39 passphase used keep a copy of the passphrase on every location.
|
||||||
|
|
||||||
Currently the scheme can be used on a [ColdCard](https://github.com/Coldcard/firmware/blob/master/docs/seed-xor.md) and is planned to be implemented in [SeedSigner](https://github.com/SeedSigner/seedsigner/issues/43).
|
Currently the scheme can be used on a [ColdCard](https://github.com/Coldcard/firmware/blob/master/docs/seed-xor.md) and is planned to be implemented in [SeedSigner](https://github.com/SeedSigner/seedsigner/issues/43).
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
|
|
||||||

|

|
||||||
|
|
||||||
Requires 50 Gb diskpace after compactiing and ~100 GB during indexing (Nov 2019).
|
Requires 50 Gb diskpace after compacting and ~100 GB during indexing (Nov 2019).
|
||||||
|
|
||||||
Tested on:
|
Tested on:
|
||||||
* Raspberry Pi 4
|
* Raspberry Pi 4
|
||||||
|
|||||||
Reference in New Issue
Block a user