submit contract for deployment, not working yet

This commit is contained in:
Jonathan Rainville 2018-04-12 16:33:01 -04:00
parent dc9e6c168b
commit 17e1c71506
1 changed files with 46 additions and 46 deletions

View File

@ -1,5 +1,6 @@
let async = require('../../utils/async_extend.js'); let async = require('../../utils/async_extend.js');
const shelljs = require('shelljs'); const shelljs = require('shelljs');
const path = require('path');
class Vyper { class Vyper {
@ -8,7 +9,6 @@ class Vyper {
this.events = embark.events; this.events = embark.events;
this.contractDirectories = options.contractDirectories; this.contractDirectories = options.contractDirectories;
console.log('Construct VYPER');
embark.registerCompiler(".py", this.compile_vyper.bind(this)); embark.registerCompiler(".py", this.compile_vyper.bind(this));
} }
@ -17,53 +17,53 @@ class Vyper {
async.waterfall([ async.waterfall([
function compileContracts(callback) { function compileContracts(callback) {
self.logger.info("compiling vyper contracts..."); self.logger.info("compiling vyper contracts...");
const compiled_object = {};
async.each(contractFiles, async.each(contractFiles,
function(file, fileCb) { function (file, fileCb) {
shelljs.exec(`vyper ${file.filename}`, (code, stdout, stderr) => { const fileNameOnly = path.basename(file.filename);
console.log('Code', code); compiled_object[fileNameOnly] = {};
console.log('Stdout', stdout); async.parallel([
console.log('Stderr', stderr); function getByteCode(paraCb) {
fileCb(); shelljs.exec(`vyper ${file.filename}`, { silent: true }, (code, stdout, stderr) => {
if (stderr) {
return paraCb(stderr);
}
if (code !== 0) {
return paraCb(`Vyper exited with error code ${code}`)
}
if (!stdout) {
return paraCb('Execution returned no bytecode');
}
compiled_object[fileNameOnly].code = stdout.replace(/\n/g, '');
paraCb();
}); });
}, },
function (err) { function getABI(paraCb) {
process.exit(); // TODO remove me shelljs.exec(`vyper -f json ${file.filename}`, { silent: true }, (code, stdout, stderr) => {
callback(err); if (stderr) {
}); return paraCb(stderr);
}, }
function createCompiledObject(output, callback) { if (code !== 0) {
let json = output.contracts; return paraCb(`Vyper exited with error code ${code}`)
}
if (!output || !output.contracts) { if (!stdout) {
return callback(new Error("error compiling for unknown reasons")); return paraCb('Execution returned no ABI');
} }
let ABI = [];
if (Object.keys(output.contracts).length === 0 && output.sourceList.length > 0) { try {
return callback(new Error("error compiling. There are sources available but no code could be compiled, likely due to fatal errors in the solidity code").message); ABI = JSON.parse(stdout.replace(/\n/g, ''));
} } catch (e) {
return paraCb('ABI is not valid JSON');
let compiled_object = {}; }
compiled_object[fileNameOnly].abiDefinition = ABI;
for (let contractFile in json) { paraCb();
for (let contractName in json[contractFile]) { });
let contract = json[contractFile][contractName]; }
], fileCb);
const className = contractName; },
const filename = contractFile; function (err) {
callback(err, compiled_object);
compiled_object[className] = {}; });
compiled_object[className].code = contract.evm.bytecode.object;
compiled_object[className].runtimeBytecode = contract.evm.deployedBytecode.object;
compiled_object[className].realRuntimeBytecode = contract.evm.deployedBytecode.object.slice(0, -68);
compiled_object[className].swarmHash = contract.evm.deployedBytecode.object.slice(-68).slice(0, 64);
compiled_object[className].gasEstimates = contract.evm.gasEstimates;
compiled_object[className].functionHashes = contract.evm.methodIdentifiers;
compiled_object[className].abiDefinition = contract.abi;
compiled_object[className].filename = filename;
}
}
callback(null, compiled_object);
} }
], function (err, result) { ], function (err, result) {
cb(err, result); cb(err, result);