You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We could use the Callgraph module implemented in #1144 to create a tool that helps auditing smart contracts.
Desired functionality:
A CLI option to don't show pure functions call on the .dot dump. This is usable to reduce the noise when analyzing imperative code.
Show changes in the imperative state of the contract for each procedure/transition. Read, write, and read-write (update) operations of fields should be shown differently.
External calls, event, exceptions on the graph.
Show clusters of procedures/transitions based on fields they access (if procedures commute, i.e. do not share common state, it should be clearly observable from the call graph).
The text was updated successfully, but these errors were encountered:
We could use the
Callgraph
module implemented in #1144 to create a tool that helps auditing smart contracts.Desired functionality:
.dot
dump. This is usable to reduce the noise when analyzing imperative code.The text was updated successfully, but these errors were encountered: