Skip to content

Instantly share code, notes, and snippets.

@SauravKanchan
Last active October 10, 2019 16:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SauravKanchan/da666f853188c20a0419eca310133e98 to your computer and use it in GitHub Desktop.
Save SauravKanchan/da666f853188c20a0419eca310133e98 to your computer and use it in GitHub Desktop.
const path = require('path');
const fs = require('fs-extra');
const solc = require('solc');
const sourceFolderPath = path.resolve(__dirname, 'contracts');
const buildFolderPath = path.resolve(__dirname, 'build');
const getContractSource = contractFileName => {
const contractPath = path.resolve(__dirname, 'contracts', contractFileName);
return fs.readFileSync(contractPath, 'utf8');
};
let sources = {};
var walk = function (dir) {
var results = [];
var list = fs.readdirSync(dir);
list.forEach(function (file) {
file = dir + '/' + file;
var stat = fs.statSync(file);
if (stat && stat.isDirectory()) {
results = results.concat(walk(file));
} else {
if (file.substr(file.length - 4, file.length) === ".sol") {
sources = {
...sources,
[file]: {
content: getContractSource(file)
}
};
}
results.push(file);
}
});
return results;
};
walk(sourceFolderPath);
const input = {
language: 'Solidity',
sources,
settings: {
outputSelection: {
'*': {
'*': ['*']
}
}
}
}
console.log('\nCompiling contracts...');
const output = JSON.parse(solc.compile(JSON.stringify(input)));
console.log('Done');
let shouldBuild = true;
if (output.errors) {
console.error(output.errors);
// throw '\nError in compilation please check the contract\n';
for (error of output.errors) {
if (error.severity === 'error') {
shouldBuild = false;
throw 'Error found';
break;
}
}
}
if (shouldBuild) {
console.log('\nBuilding please wait...');
fs.removeSync(buildFolderPath);
fs.ensureDirSync(buildFolderPath);
for (let contractFile in output.contracts) {
for (let key in output.contracts[contractFile]) {
fs.outputJsonSync(
path.resolve(buildFolderPath, `${key}.json`),
{
abi: output.contracts[contractFile][key]["abi"],
bytecode: output.contracts[contractFile][key]["evm"]["bytecode"]["object"]
},
{
spaces: 2,
EOL: "\n"
}
);
}
}
console.log('Build finished successfully!\n');
} else {
console.log('\nBuild failed\n');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment