mirror of https://github.com/embarklabs/embark.git
51 lines
1.6 KiB
JavaScript
51 lines
1.6 KiB
JavaScript
|
|
var ABIGenerator = function(contractsManager) {
|
|
this.contractsManager = contractsManager;
|
|
this.rpcHost = 'localhost';
|
|
this.rpcPort = '8545';
|
|
};
|
|
|
|
ABIGenerator.prototype.generateProvider = function() {
|
|
var result = "";
|
|
|
|
result += "\nif (typeof web3 !== 'undefined' && typeof Web3 !== 'undefined') {";
|
|
result += '\n\tweb3 = new Web3(web3.currentProvider);';
|
|
result += "\n} else if (typeof Web3 !== 'undefined') {";
|
|
result += '\n\tweb3 = new Web3(new Web3.providers.HttpProvider("http://' + this.rpcHost + ':' + this.rpcPort + '"));';
|
|
result += '\n}';
|
|
result += "\nweb3.eth.defaultAccount = web3.eth.accounts[0];";
|
|
|
|
return result;
|
|
};
|
|
|
|
ABIGenerator.prototype.generateContracts = function() {
|
|
var result = "\n";
|
|
|
|
for(var className in this.contractsManager.contracts) {
|
|
var contract = this.contractsManager.contracts[className];
|
|
|
|
var abi = JSON.stringify(contract.abiDefinition);
|
|
|
|
//console.log('address is ' + contract.deployedAddress);
|
|
|
|
//result += "\n" + className + "Abi = " + abi + ";";
|
|
//result += "\n" + className + "Contract = web3.eth.contract(" + className + "Abi);";
|
|
//result += "\n" + className + " = " + className + "Contract.at('" + contract.deployedAddress + "');";
|
|
|
|
result += "\n" + className + " = new EmbarkJS.Contract({abi: " + abi + ", address: '" + contract.deployedAddress + "', code: '" + contract.code + "'});";
|
|
}
|
|
|
|
return result;
|
|
};
|
|
|
|
ABIGenerator.prototype.generateABI = function() {
|
|
var result = "";
|
|
|
|
result += this.generateProvider();
|
|
result += this.generateContracts();
|
|
|
|
return result;
|
|
};
|
|
|
|
module.exports = ABIGenerator;
|