Re-adding unintegrated glossary/object pages.

This commit is contained in:
Andrew Groot
2020-10-13 14:31:01 -04:00
parent 8eac6799cb
commit a54718527e
6 changed files with 52 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
<div class="cwikmeta">
{
"title": "Wallet Objects"
} </div>
The following graph shows the derivation relationship between wallet objects.
```mermaid
graph TB
PrivK["Private Key"] ==>PubK[Public key]
PubK == RIPEMD and SHA256 ==> PubKH[Public Key Hash]
PubKH==>Address
Address==>PubKH
Script==>Address
style PubK fill:#906,stroke:#333,stroke-width:2px;
style PrivK fill:#f06,stroke:#333,stroke-width:8px;
style PubKH fill:#2f6,stroke:#333,stroke-width:2px;
style Address fill:#2f6,stroke:#333,stroke-width:2px;
```