This repository has been archived by the owner on Jul 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
modules_sto_inheritance.dot
59 lines (58 loc) · 1.7 KB
/
modules_sto_inheritance.dot
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
digraph G {
graph [ ratio = "auto", page = "40" ];
"CappedSTO";
"CappedSTOStorage";
"STO";
"ReentrancyGuard";
"CappedSTOFactory";
"UpgradableModuleFactory";
"CappedSTOProxy";
"STOStorage";
"ModuleStorage";
"Pausable";
"OwnedUpgradeabilityProxy";
"PreSaleSTO";
"PreSaleSTOStorage";
"PreSaleSTOFactory";
"PreSaleSTOProxy";
"ISTO";
"Module";
"USDTieredSTO";
"USDTieredSTOStorage";
"USDTieredSTOFactory";
"USDTieredSTOProxy";
"CappedSTO" -> "CappedSTOStorage";
"CappedSTO" -> "STO";
"CappedSTO" -> "ReentrancyGuard";
"CappedSTOFactory" -> "UpgradableModuleFactory";
"CappedSTOProxy" -> "CappedSTOStorage";
"CappedSTOProxy" -> "STOStorage";
"CappedSTOProxy" -> "ModuleStorage";
"CappedSTOProxy" -> "Pausable";
"CappedSTOProxy" -> "ReentrancyGuard";
"CappedSTOProxy" -> "OwnedUpgradeabilityProxy";
"PreSaleSTO" -> "PreSaleSTOStorage";
"PreSaleSTO" -> "STO";
"PreSaleSTOFactory" -> "UpgradableModuleFactory";
"PreSaleSTOProxy" -> "PreSaleSTOStorage";
"PreSaleSTOProxy" -> "STOStorage";
"PreSaleSTOProxy" -> "ModuleStorage";
"PreSaleSTOProxy" -> "Pausable";
"PreSaleSTOProxy" -> "ReentrancyGuard";
"PreSaleSTOProxy" -> "OwnedUpgradeabilityProxy";
"STO" -> "ISTO";
"STO" -> "STOStorage";
"STO" -> "Module";
"USDTieredSTO" -> "USDTieredSTOStorage";
"USDTieredSTO" -> "STO";
"USDTieredSTOFactory" -> "UpgradableModuleFactory";
"USDTieredSTOProxy" -> "USDTieredSTOStorage";
"USDTieredSTOProxy" -> "STOStorage";
"USDTieredSTOProxy" -> "ModuleStorage";
"USDTieredSTOProxy" -> "Pausable";
"USDTieredSTOProxy" -> "ReentrancyGuard";
"USDTieredSTOProxy" -> "OwnedUpgradeabilityProxy";
"STO" -> "ISTO";
"STO" -> "STOStorage";
"STO" -> "Module";
}