mirror of
https://github.com/seigler/dash-docs
synced 2025-07-28 10:16:15 +00:00
Thanks also (in alphabetical order) to @cbeams, @mikehearn, and @tgeller, among others. The last pre-squash commit was: c2b8d562aa107c7b68c60946cea14cdccc5159ad
41 lines
772 B
Text
41 lines
772 B
Text
digraph blockchain {
|
|
|
|
size=6.25;
|
|
|
|
//splines = "false";
|
|
rankdir=LR;
|
|
//ranksep=0.1;
|
|
//splines=ortho;
|
|
|
|
node [ shape = box, penwidth = 1.75 ];
|
|
edge [ penwidth = 1.75 ];
|
|
penwidth = 1.75;
|
|
|
|
subgraph cluster_bob {
|
|
private_key [ label = "Private\nKey" ];
|
|
full_public_key [ label = "Full\nPublic Key" ];
|
|
pubkey_hash [ label = "Public Key\nHash" ];
|
|
|
|
label = "Bob's Computer"
|
|
}
|
|
|
|
subgraph cluster_alice {
|
|
spender_pubkey_hash [ label = "Copy Of\nPublic Key\nHash" ];
|
|
|
|
label = "Alice's Computer"
|
|
}
|
|
|
|
subgraph cluster_tx1 {
|
|
tx1_pubkey_hash [ label = "Copy Of\nPublic Key\nHash" ];
|
|
|
|
label = "TX 1"
|
|
}
|
|
|
|
|
|
private_key -> full_public_key -> pubkey_hash -> spender_pubkey_hash -> tx1_pubkey_hash;
|
|
|
|
|
|
|
|
|
|
label = "Creating A P2PH Public Key Hash To Receive Payment"
|
|
}
|