blob: 687939274876832c9599ac8383946c04e3e5bd79 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/usr/bin/env python
import sys
import glob
import subprocess
import json
solc = sys.argv[1]
report = open("report.txt", "w")
for f in sorted(glob.glob("*.sol")):
proc = subprocess.Popen([solc, '--combined-json', 'bin,metadata', f], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
(out, err) = proc.communicate()
try:
result = json.loads(out.strip())
for contractName in sorted(result['contracts'].keys()):
report.write(contractName + ' ' + result['contracts'][contractName]['bin'] + '\n')
report.write(contractName + ' ' + result['contracts'][contractName]['metadata'] + '\n')
except:
report.write(f + ": ERROR\n")
|