Closed
Conversation
I noticed the ASCII flowchart and I thought I'd take a crack at converting it to mermaid.
Collaborator
Author
|
I didn't mean to give unwanted work to anyone! I'm just fond of viewing mermaid charts over ASCII versions -- less cognitive friction IMHO. I won't take offence if you don't find it worthwhile. All the best! |
Collaborator
|
@watou |
```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]
privkey --> jctC(( ))
pass[Passphrase] ----> jctB & jctC
net[Network] --> jctC
jctC --> encsec[Encrypted Secret]
encsec --> last["`Save encrypted
secret+chaincode+
Fingerprint+ExtPub`"]
```
replaced mermaid text with image
Collaborator
```mermaid
flowchart TD
ent[Entropy] & wl[Word list] --> mne[Mnemonics]
mne --> seed[Seed]
seed --> extkey[Extended Key]
extkey --> privkey[Private Key]
privkey --> encsec[Encrypted Secret]
pass[Passphrase] ----> seed
pass -- This is needed to use BIP38 --> encsec
net[Network] --> encsec
encsec --> last["`Save encrypted secret + chaincode + Fingerprint + ExtPub`"]
```
Fixed image reference, to new image.
removed old image version in wrong place
Author
|
Hopefully last commits are good! |
yahiheb
requested changes
Sep 8, 2024
Collaborator
yahiheb
left a comment
There was a problem hiding this comment.
Why is the Passphrase at the top? I would rather see it aligned with the Mnemonics.
I am not sure This step is needed to use bip38 is at the right place.
```mermaid
flowchart TD
ent[Entropy] & wl[Word list] --> mne[Mnemonics]
mne --> seed[Seed]
seed --> extkey[Extended Key]
extkey --> privkey["`Private Key
(This is needed
to use BIP38)`"]
privkey --> encsec[Encrypted Secret]
pass[Passphrase] --> seed
pass --> encsec
net[Network] --> encsec
encsec --> last["`Save encrypted secret + chaincode + Fingerprint + ExtPub`"]
```
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.




I noticed the ASCII flowchart and I thought I'd take a crack at converting it to mermaid.