Static Analyzer for Solidity
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
slither/examples/printers/call_graph.sol.dot

20 lines
520 B

digraph {
subgraph "cluster_9_ContractA" {
label = "ContractA"
"9_my_func_a()" [label="my_func_a()"]
}
subgraph "cluster_45_ContractB" {
label = "ContractB"
"45_constructor()" [label="constructor()"]
"45_my_func_b()" [label="my_func_b()"]
"45_my_func_b()" -> "45_my_second_func_b()"
"45_my_func_a()" [label="my_func_a()"]
"45_my_func_a()" -> "45_my_second_func_b()"
"45_my_second_func_b()" [label="my_second_func_b()"]
}
subgraph cluster_solidity {
label = "[Solidity]"
"keccak256()"
}
"9_my_func_a()" -> "keccak256()"
}