embark/lib/modules/deployment/contract_deployer.js

329 lines
14 KiB
JavaScript
Raw Normal View History

2017-03-29 17:50:05 +00:00
let async = require('async');
2018-01-05 20:10:47 +00:00
//require("../utils/debug_util.js")(__filename, async);
2018-07-27 17:09:07 +00:00
let utils = require('../../utils/utils.js');
class ContractDeployer {
2017-03-30 11:12:39 +00:00
constructor(options) {
const self = this;
2017-03-30 11:12:39 +00:00
this.logger = options.logger;
this.events = options.events;
this.plugins = options.plugins;
self.events.setCommandHandler('deploy:contract', (contract, cb) => {
self.checkAndDeployContract(contract, null, cb);
});
2018-01-05 20:10:47 +00:00
}
2017-03-30 11:12:39 +00:00
2018-05-21 16:29:18 +00:00
// TODO: determining the arguments could also be in a module since it's not
// part of ta 'normal' contract deployment
2018-08-14 17:36:08 +00:00
determineArguments(suppliedArgs, contract, accounts, callback) {
2018-05-21 17:11:13 +00:00
const self = this;
2017-03-30 11:12:39 +00:00
let args = suppliedArgs;
if (!Array.isArray(args)) {
args = [];
let abi = contract.abiDefinition.find((abi) => abi.type === 'constructor');
for (let input of abi.inputs) {
let inputValue = suppliedArgs[input.name];
if (!inputValue) {
2018-05-08 21:49:46 +00:00
this.logger.error(__("{{inputName}} has not been defined for {{className}} constructor", {inputName: input.name, className: contract.className}));
}
args.push(inputValue || "");
}
}
2018-08-14 17:36:08 +00:00
function parseArg(arg, cb) {
const match = arg.match(/\$accounts\[([0-9]+)]/);
if (match) {
if (!accounts[match[1]]) {
return cb(__('No corresponding account at index %d', match[1]));
2018-08-14 17:36:08 +00:00
}
return cb(null, accounts[match[1]]);
}
let contractName = arg.substr(1);
self.events.request('contracts:contract', contractName, (referedContract) => {
// Because we're referring to a contract that is not being deployed (ie. an interface),
// we still need to provide a valid address so that the ABI checker won't fail.
2018-09-18 20:36:21 +00:00
cb(null, (referedContract.deployedAddress || '0x0000000000000000000000000000000000000000'));
2018-08-14 17:36:08 +00:00
});
}
2018-05-22 20:16:52 +00:00
async.map(args, (arg, nextEachCb) => {
2017-03-30 11:12:39 +00:00
if (arg[0] === "$") {
2018-08-14 17:36:08 +00:00
parseArg(arg, nextEachCb);
} else if (Array.isArray(arg)) {
2018-05-22 20:16:52 +00:00
async.map(arg, (sub_arg, nextSubEachCb) => {
if (sub_arg[0] === "$") {
2018-08-14 17:36:08 +00:00
parseArg(sub_arg, nextSubEachCb);
2018-10-05 09:19:10 +00:00
} else if(typeof sub_arg === 'string' && sub_arg.indexOf('.eth') === sub_arg.length - 4) {
self.events.request("ens:resolve", sub_arg, (err, name) => {
if(err) {
return nextSubEachCb(err);
}
return nextSubEachCb(err, name);
});
} else {
2018-05-22 20:16:52 +00:00
nextSubEachCb(null, sub_arg);
}
2018-05-22 20:16:52 +00:00
}, (err, subRealArgs) => {
nextEachCb(null, subRealArgs);
2018-05-21 17:30:45 +00:00
});
2018-10-05 09:19:10 +00:00
} else if(typeof arg === 'string' && arg.indexOf('.eth') === arg.length - 4) {
self.events.request("ens:resolve", arg, (err, name) => {
if(err) {
return nextEachCb(err);
}
return nextEachCb(err, name);
});
2017-03-30 11:12:39 +00:00
} else {
2018-05-22 20:16:52 +00:00
nextEachCb(null, arg);
2017-03-30 11:12:39 +00:00
}
}, callback);
}
2017-03-30 11:12:39 +00:00
checkAndDeployContract(contract, params, callback) {
let self = this;
contract.error = false;
2018-08-14 17:36:08 +00:00
let accounts = [];
let deploymentAccount;
2017-03-30 11:12:39 +00:00
if (contract.deploy === false) {
2018-05-21 00:26:15 +00:00
self.events.emit("deploy:contract:undeployed", contract);
2017-03-30 11:12:39 +00:00
return callback();
}
2016-09-25 01:10:47 +00:00
async.waterfall([
2018-07-27 20:03:15 +00:00
function requestBlockchainConnector(callback) {
self.events.request("blockchain:object", (blockchain) => {
self.blockchain = blockchain;
callback();
});
},
2018-08-14 17:36:08 +00:00
// TODO: can potentially go to a beforeDeploy plugin
function getAccounts(next) {
deploymentAccount = self.blockchain.defaultAccount();
self.blockchain.getAccounts(function (err, _accounts) {
if (err) {
return next(new Error(err));
}
accounts = _accounts;
// applying deployer account configuration, if any
if (typeof contract.fromIndex === 'number') {
deploymentAccount = accounts[contract.fromIndex];
if (deploymentAccount === undefined) {
return next(__("error deploying") + " " + contract.className + ": " + __("no account found at index") + " " + contract.fromIndex + __(" check the config"));
}
}
if (typeof contract.from === 'string' && typeof contract.fromIndex !== 'undefined') {
self.logger.warn(__('Both "from" and "fromIndex" are defined for contract') + ' "' + contract.className + '". ' + __('Using "from" as deployer account.'));
}
if (typeof contract.from === 'string') {
deploymentAccount = contract.from;
}
deploymentAccount = deploymentAccount || accounts[0];
contract.deploymentAccount = deploymentAccount;
next();
});
},
function applyArgumentPlugins(next) {
self.plugins.emitAndRunActionsForEvent('deploy:contract:arguments', {contract: contract}, (_params) => {
next();
});
},
2018-05-21 16:29:18 +00:00
function _determineArguments(next) {
2018-08-14 17:36:08 +00:00
self.determineArguments(params || contract.args, contract, accounts, (err, realArgs) => {
if (err) {
return next(err);
}
2018-05-21 16:29:18 +00:00
contract.realArgs = realArgs;
next();
});
},
function deployIt(next) {
let skipBytecodeCheck = false;
if (contract.address !== undefined) {
try {
utils.toChecksumAddress(contract.address);
} catch(e) {
self.logger.error(__("error deploying %s", contract.className));
self.logger.error(e.message);
contract.error = e.message;
self.events.emit("deploy:contract:error", contract);
return next(e.message);
}
contract.deployedAddress = contract.address;
skipBytecodeCheck = true;
}
2016-10-02 21:57:33 +00:00
self.plugins.emitAndRunActionsForEvent('deploy:contract:shouldDeploy', {contract: contract, shouldDeploy: true}, function(_err, params) {
let trackedContract = params.contract;
if (!params.shouldDeploy) {
return self.willNotDeployContract(contract, trackedContract, next);
}
if (!trackedContract.address) {
2018-05-22 19:37:04 +00:00
return self.deployContract(contract, next);
}
// deploy the contract regardless if track field is defined and set to false
if (trackedContract.track === false) {
self.logFunction(contract)(contract.className.bold.cyan + __(" will be redeployed").green);
return self.deployContract(contract, next);
}
2018-05-19 02:40:47 +00:00
self.blockchain.getCode(trackedContract.address, function(_getCodeErr, codeInChain) {
if (codeInChain.length > 3 || skipBytecodeCheck) { // it is "0x" or "0x0" for empty code, depending on web3 version
self.contractAlreadyDeployed(contract, trackedContract, next);
} else {
2018-05-22 19:37:04 +00:00
self.deployContract(contract, next);
}
});
});
}
], callback);
2018-01-05 20:10:47 +00:00
}
2017-02-18 21:53:49 +00:00
willNotDeployContract(contract, trackedContract, callback) {
contract.deploy = false;
this.events.emit("deploy:contract:undeployed", contract);
callback();
}
2018-01-05 20:10:47 +00:00
contractAlreadyDeployed(contract, trackedContract, callback) {
const self = this;
2018-08-29 10:23:24 +00:00
this.logFunction(contract)(contract.className.bold.cyan + __(" already deployed at ").green + trackedContract.address.bold.cyan);
2018-01-05 20:10:47 +00:00
contract.deployedAddress = trackedContract.address;
2018-05-20 23:59:35 +00:00
self.events.emit("deploy:contract:deployed", contract);
2018-01-05 20:10:47 +00:00
2018-05-23 15:16:13 +00:00
// TODO: can be moved into a afterDeploy event
// just need to figure out the gasLimit coupling issue
self.events.request('code-generator:contract:vanilla', contract, contract._gasLimit || false, (contractCode) => {
2018-08-15 10:03:50 +00:00
self.events.request('runcode:eval', contractCode, () => {}, true);
2018-05-23 15:16:13 +00:00
return callback();
});
2018-01-05 20:10:47 +00:00
}
2018-08-29 10:23:24 +00:00
logFunction(contract) {
return contract.silent ? this.logger.trace.bind(this.logger) : this.logger.info.bind(this.logger);
}
2018-05-22 19:37:04 +00:00
deployContract(contract, callback) {
2017-03-30 11:12:39 +00:00
let self = this;
2018-01-18 19:41:33 +00:00
let deployObject;
async.waterfall([
function doLinking(next) {
let contractCode = contract.code;
self.events.request('contracts:list', (_err, contracts) => {
for (let contractObj of contracts) {
let filename = contractObj.filename;
let deployedAddress = contractObj.deployedAddress;
if (deployedAddress) {
deployedAddress = deployedAddress.substr(2);
}
let linkReference = '__' + filename + ":" + contractObj.className;
if (contractCode.indexOf(linkReference.substr(0, 38)) < 0) { // substr to simulate the cut that solc does
continue;
}
if (linkReference.length > 40) {
return next(new Error(__("{{linkReference}} is too long, try reducing the path of the contract ({{filename}}) and/or its name {{contractName}}", {linkReference: linkReference, filename: filename, contractName: contractObj.className})));
}
let toReplace = linkReference + "_".repeat(40 - linkReference.length);
if (deployedAddress === undefined) {
let libraryName = contractObj.className;
return next(new Error(__("{{contractName}} needs {{libraryName}} but an address was not found, did you deploy it or configured an address?", {contractName: contract.className, libraryName: libraryName})));
}
contractCode = contractCode.replace(new RegExp(toReplace, "g"), deployedAddress);
2018-01-18 19:41:33 +00:00
}
// saving code changes back to the contract object
contract.code = contractCode;
2018-08-07 19:26:39 +00:00
self.events.request('contracts:setBytecode', contract.className, contractCode);
next();
});
2018-01-18 19:41:33 +00:00
},
function applyBeforeDeploy(next) {
2018-08-24 14:31:40 +00:00
self.plugins.emitAndRunActionsForEvent('deploy:contract:beforeDeploy', {contract: contract}, (_params) => {
next();
});
2018-01-18 19:41:33 +00:00
},
function getGasPriceForNetwork(next) {
2018-09-03 08:48:44 +00:00
self.events.request("blockchain:gasPrice", (err, gasPrice) => {
if (err) {
return next(new Error(__("could not get the gas price")));
}
contract.gasPrice = contract.gasPrice || gasPrice;
next();
});
},
2018-01-18 19:41:33 +00:00
function createDeployObject(next) {
let contractCode = contract.code;
let contractObject = self.blockchain.ContractObject({abi: contract.abiDefinition});
let contractParams = (contract.realArgs || contract.args).slice();
2018-01-18 19:41:33 +00:00
try {
2018-04-13 19:48:19 +00:00
const dataCode = contractCode.startsWith('0x') ? contractCode : "0x" + contractCode;
2018-05-19 00:26:21 +00:00
deployObject = self.blockchain.deployContractObject(contractObject, {arguments: contractParams, data: dataCode});
2018-01-18 19:41:33 +00:00
} catch(e) {
2018-03-02 22:48:30 +00:00
if (e.message.indexOf('Invalid number of parameters for "undefined"') >= 0) {
2018-09-21 21:52:32 +00:00
return next(new Error(__("attempted to deploy %s without specifying parameters", contract.className)) + ". " + __("check if there are any params defined for this contract in this environment in the contracts configuration file"));
}
2018-08-30 13:53:04 +00:00
return next(new Error(e));
2018-01-05 20:10:47 +00:00
}
2018-01-18 19:41:33 +00:00
next();
},
2018-01-19 18:57:35 +00:00
function estimateCorrectGas(next) {
if (contract.gas === 'auto') {
return self.blockchain.estimateDeployContractGas(deployObject, (err, gasValue) => {
if (err) {
return next(err);
}
2018-09-26 22:57:55 +00:00
let increase_per = 1 + (Math.random() / 10.0);
contract.gas = Math.floor(gasValue * increase_per);
2018-01-19 18:57:35 +00:00
next();
});
2018-01-19 18:57:35 +00:00
}
next();
},
2018-01-18 19:41:33 +00:00
function deployTheContract(next) {
let estimatedCost = contract.gas * contract.gasPrice;
2018-08-29 10:23:24 +00:00
self.logFunction(contract)(__("deploying") + " " + contract.className.bold.cyan + " " + __("with").green + " " + contract.gas + " " + __("gas at the price of").green + " " + contract.gasPrice + " " + __("Wei, estimated cost:").green + " " + estimatedCost + " Wei".green);
2018-05-19 00:26:21 +00:00
self.blockchain.deployContractFromObject(deployObject, {
from: contract.deploymentAccount,
2018-01-18 19:41:33 +00:00
gas: contract.gas,
gasPrice: contract.gasPrice
2018-05-19 00:26:21 +00:00
}, function(error, receipt) {
if (error) {
2018-05-22 19:37:04 +00:00
contract.error = error.message;
self.events.emit("deploy:contract:error", contract);
2018-09-25 13:59:08 +00:00
if (error.message && error.message.indexOf('replacement transaction underpriced') !== -1) {
2018-09-22 13:21:30 +00:00
self.logger.warn("replacement transaction underpriced: This warning typically means a transaction exactly like this one is still pending on the blockchain");
2018-09-21 21:52:32 +00:00
}
2018-05-19 00:26:21 +00:00
return next(new Error("error deploying =" + contract.className + "= due to error: " + error.message));
2018-01-18 19:41:33 +00:00
}
2018-08-29 10:23:24 +00:00
self.logFunction(contract)(contract.className.bold.cyan + " " + __("deployed at").green + " " + receipt.contractAddress.bold.cyan + " " + __("using").green + " " + receipt.gasUsed + " " + __("gas").green);
2018-05-19 00:26:21 +00:00
contract.deployedAddress = receipt.contractAddress;
contract.transactionHash = receipt.transactionHash;
2018-06-28 18:01:44 +00:00
receipt.className = contract.className;
2018-05-22 19:37:04 +00:00
self.events.emit("deploy:contract:receipt", receipt);
self.events.emit("deploy:contract:deployed", contract);
// TODO: can be moved into a afterDeploy event
// just need to figure out the gasLimit coupling issue
self.events.request('code-generator:contract:vanilla', contract, contract._gasLimit || false, (contractCode) => {
2018-08-15 10:03:50 +00:00
self.events.request('runcode:eval', contractCode, () => {}, true);
2018-05-28 23:40:55 +00:00
self.plugins.runActionsForEvent('deploy:contract:deployed', {contract: contract}, () => {
2018-05-22 19:37:04 +00:00
return next(null, receipt);
});
});
2018-01-18 19:41:33 +00:00
});
}
], callback);
2017-03-30 11:12:39 +00:00
}
}
2016-08-14 12:04:34 +00:00
module.exports = ContractDeployer;