mirror of
https://github.com/seigler/dash-docs
synced 2025-07-28 10:16:15 +00:00
Deploy thephez/dash-docs to github.com/thephez/dash-docs.git:gh-pages
This commit is contained in:
commit
391f4f5496
1080 changed files with 220436 additions and 0 deletions
54
img/dev/en-tx-overview.dot
Normal file
54
img/dev/en-tx-overview.dot
Normal file
|
@ -0,0 +1,54 @@
|
|||
digraph tx_overview {
|
||||
|
||||
size=6.25;
|
||||
splines = "false";
|
||||
rankdir=LR;
|
||||
rankdir=TB;
|
||||
ranksep=0.001;
|
||||
nodesep=0.01;
|
||||
//splines=ortho;
|
||||
|
||||
node [ penwidth=1.75, fontname="Sans", shape = box ];
|
||||
edge [ penwidth=1.75, fontname="Sans" ];
|
||||
graph [ penwidth=1.75, fontname="Sans" ];
|
||||
|
||||
subgraph cluster_tx {
|
||||
Locktime;
|
||||
Outputs;
|
||||
Inputs;
|
||||
Version;
|
||||
//tx_label1 [ shape = "none", label = "" ];
|
||||
tx0_label [ shape = "none", label = "The Main Parts Of\nTransaction 0" ];
|
||||
|
||||
labelloc = b
|
||||
graph [ penwidth=0 ];
|
||||
}
|
||||
|
||||
tx_label [ shape = "none", label = "Each input spends a previous output" ];
|
||||
tx_label -> Inputs [ style = "invis" ];
|
||||
tx_label -> Outputs [ style = "invis" ];
|
||||
|
||||
subgraph cluster_tx1 {
|
||||
Version1 [ label = "Version" ];
|
||||
Inputs1 [ label = "Inputs" ];
|
||||
Outputs1 [ label = "Outputs" ];
|
||||
Locktime1 [ label = "Locktime" ];
|
||||
//tx_label1 [ shape = "none", label = "" ];
|
||||
tx1_label [ shape = "none", label = "The Main Parts Of\nTransaction 1" ];
|
||||
|
||||
labelloc = b
|
||||
graph [ penwidth=0 ];
|
||||
}
|
||||
|
||||
utxos [ shape = "none", label = "Each output waits as an Unspent TX Output (UTXO) until a later input spends it" ];
|
||||
|
||||
Locktime -> Locktime1 [ style = "invis", weight = 3 ];
|
||||
Version -> Version1 [ style = "invis", weight = 3 ];
|
||||
Inputs -> Inputs1 [ style = "invis", weight = 3 ];
|
||||
Outputs -> Outputs1 [ style = "invis", weight = 3 ];
|
||||
Outputs -> Inputs1 [weight = 0 ];
|
||||
|
||||
|
||||
Inputs1 -> utxos [ style = "invis" ];
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue