mirror of
https://github.com/seigler/dash-docs
synced 2025-07-28 02:06:13 +00:00
Replace P2PH by P2PKH in devel-docs
This commit is contained in:
parent
70d871d43e
commit
c7eed3e444
19 changed files with 62 additions and 59 deletions
42
img/dev/en-creating-p2pkh-output.dot
Normal file
42
img/dev/en-creating-p2pkh-output.dot
Normal file
|
@ -0,0 +1,42 @@
|
|||
digraph blockchain {
|
||||
|
||||
size=6.25;
|
||||
|
||||
//splines = "false";
|
||||
rankdir=LR;
|
||||
//ranksep=0.1;
|
||||
//splines=ortho;
|
||||
|
||||
node [ fontname="Sans", shape = box, penwidth = 1.75 ];
|
||||
edge [ fontname="Sans", penwidth = 1.75 ];
|
||||
graph [ fontname="Sans" ];
|
||||
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 P2PKH Public Key Hash To Receive Payment"
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue