mirror of https://github.com/crytic/slither
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.
21 lines
526 B
21 lines
526 B
strict digraph {
|
|
subgraph cluster_9_ContractA {
|
|
label = "ContractA"
|
|
"9_my_func_a" [label="my_func_a"]
|
|
}
|
|
subgraph cluster_45_ContractB {
|
|
label = "ContractB"
|
|
"45_my_func_a" [label="my_func_a"]
|
|
"45_my_second_func_b" [label="my_second_func_b"]
|
|
"45_my_func_b" [label="my_func_b"]
|
|
"45_constructor" [label="constructor"]
|
|
"45_my_func_b" -> "45_my_second_func_b"
|
|
"45_my_func_a" -> "45_my_second_func_b"
|
|
}
|
|
subgraph cluster_solidity {
|
|
label = "[Solidity]"
|
|
"keccak256()"
|
|
"9_my_func_a" -> "keccak256()"
|
|
}
|
|
"45_my_func_b" -> "9_my_func_a"
|
|
} |