Skip to content

Latest commit

 

History

History
14 lines (8 loc) · 475 Bytes

README.md

File metadata and controls

14 lines (8 loc) · 475 Bytes

Solidity CFG

A demo for ast analysis of solidity's cfg. Traditional cfg analysis is based on opcode, which is difficult to understand.

In this demo, ast analysis is added to the basic analysis of opcode, so as to understand the call relationship between functions and intermediate variable data in a more readable way.

How

architecture

Todo

  • Support contract call abi parsing
  • Support user-defined type ast parsing