Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
61 changes: 19 additions & 42 deletions docs/using-wasabi/WalletGeneration.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,46 +80,23 @@ This means that the passphrase is your last line of defense against anyone who t

Wasabi uses [BIP 38: Password-Protected Private Key](https://github.com/bitcoin/bips/blob/master/bip-0038.mediawiki)

```
+--------------+
| Entropy |
+--------------+
+------------+ |
| Word list +------------>+
+------------+ |
+------v-------+
| Mnemonics |
+--------------+
|
+--------->
| |
| +------v-------+
| | Seed |
| +--------------+
| |
+------------+ | |
| Passphrase +---+ +------v-------+
+------------+ | | Extended Key |
| +--------------+
| |
| |
| +------v-------+
| | Private key | ** This step is needed to use bip38
| +--------------+
| | +-------------+
+-------->+<-------------+ Network |
| +-------------+
+------v-------+
| Encrypted |
| secret |
+--------------+
|
|
|
+--------------------+
| Save encrypted |
| secret+chaincode+ |
| Fingerprint+ExtPub |
+--------------------+

```mermaid
flowchart TD
ent[Entropy] --> jctA(( ))
wl[Word list] --> jctA
jctA --> mne[Mnemonics]
mne --> jctB(( ))
jctB --> seed[Seed]
seed --> extkey[Extended Key]
extkey --> privkey["`Private Key
(This step is
needed to use
bip38)`"]
privkey --> jctC(( ))
pass[Passphrase] ----> jctB & jctC
net[Network] --> jctC
jctC --> encsec[Encrypted Secret]
encsec --> last["`Save encrypted
secret+chaincode+
Fingerprint+ExtPub`"]
```