dash-docs/img/dev/en-wallets-full-service.dot
David A. Harding 87e31affba
Add Subsection About Wallet Programs, Incl. Hardware Wallets
Describe the essential functions of a wallet program and how multiple
programs can work together to fulfill those functions, as in the case of
a signing-only wallet.
2014-06-07 19:27:49 -04:00

30 lines
888 B
Text

digraph wallet_program {
size="6.25";
rankdir=LR;
//ratio=fill;
splines=true;
fontname=Sans
ranksep=0.3;
penwidth=1.75;
overlap = false;
edge [ fontname=Sans, penwidth=1.75, style = "invis" ];
node [ fontname=Sans, shape = box, penwidth=1.75 ];
subgraph cluster_networked {
penwidth=0;
networked_priv [ label = "Create\nPrivate\nKeys" ];
networked_pub [ label = "Derive\nPublic\nKeys" ];
networked_distribute [ label = "Distribute\nPublic\nKeys" ];
networked_monitor [ label = "Monitor\nFor\nOutputs" ];
networked_create [ label = "Create\nUnsigned\nTxes" ];
networked_sign [ label = "Sign\nTxes" ];
networked_broadcast [ label = "Broadcast\nTxes" ];
networked_priv -> networked_pub -> networked_distribute -> networked_monitor -> networked_create -> networked_sign -> networked_broadcast [ style = "" ];
label = " \nFull-Service Wallet"
}
}