A developing compiler for dApp featuring:
- generate dependency graph for dApp.
- automatically switch solc version for compiling.
solidity-parser=0.1.1
graphviz=0.20.1
Usage: python3 ./main.py <options>
Options:
-h, --help
-i, --inputDir <inputDir> the dApp's folder
-o, --outputDir <outputDir> the output folder(default: ./output)
-n, --contractName <contractName> the name of file to be compiled
-g, --graph generate the dependency graph
#> python3 main.py -i ./example-inputDir -g
#> python3 main.py -i ./example-inputDir -n Migrations