2016-09-25 06:23:33 +00:00
|
|
|
|
|
|
|
var GethCommands = function(options) {
|
|
|
|
this.config = options.config;
|
2017-02-20 21:11:27 +00:00
|
|
|
this.env = options.env || 'development';
|
2016-09-25 06:23:33 +00:00
|
|
|
this.name = "Go-Ethereum (https://github.com/ethereum/go-ethereum)";
|
2017-02-18 13:55:33 +00:00
|
|
|
this.geth_bin = this.config.geth_bin || "geth";
|
2016-09-25 06:23:33 +00:00
|
|
|
};
|
|
|
|
|
2016-10-31 00:21:28 +00:00
|
|
|
GethCommands.prototype.commonOptions = function() {
|
2016-09-25 06:23:33 +00:00
|
|
|
var config = this.config;
|
2016-10-31 00:21:28 +00:00
|
|
|
var cmd = "";
|
2016-09-25 06:23:33 +00:00
|
|
|
|
|
|
|
if (config.networkType === 'testnet') {
|
|
|
|
cmd += "--testnet ";
|
|
|
|
} else if (config.networkType === 'olympic') {
|
|
|
|
cmd += "--olympic ";
|
2016-10-31 00:21:28 +00:00
|
|
|
} else if (config.networkType === 'custom') {
|
|
|
|
cmd += "--networkid " + config.networkId + " ";
|
2016-09-25 06:23:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (config.datadir) {
|
|
|
|
cmd += "--datadir=\"" + config.datadir + "\" ";
|
|
|
|
}
|
|
|
|
|
2017-02-20 20:53:55 +00:00
|
|
|
if (config.light) {
|
|
|
|
cmd += "--light ";
|
|
|
|
}
|
|
|
|
|
|
|
|
if (config.fast) {
|
|
|
|
cmd += "--fast ";
|
|
|
|
}
|
|
|
|
|
2016-09-25 06:23:33 +00:00
|
|
|
if (config.account && config.account.password) {
|
|
|
|
cmd += "--password " + config.account.password + " ";
|
|
|
|
}
|
|
|
|
|
2016-10-31 00:21:28 +00:00
|
|
|
return cmd;
|
2016-09-25 06:23:33 +00:00
|
|
|
};
|
|
|
|
|
2016-10-31 00:21:28 +00:00
|
|
|
GethCommands.prototype.initGenesisCommmand = function() {
|
2016-09-25 06:23:33 +00:00
|
|
|
var config = this.config;
|
2017-02-18 13:55:33 +00:00
|
|
|
var cmd = this.geth_bin + " " + this.commonOptions();
|
2016-09-25 06:23:33 +00:00
|
|
|
|
2016-10-31 00:21:28 +00:00
|
|
|
if (config.genesisBlock) {
|
|
|
|
cmd += "init \"" + config.genesisBlock + "\" ";
|
2016-09-25 06:23:33 +00:00
|
|
|
}
|
|
|
|
|
2016-10-31 00:08:45 +00:00
|
|
|
return cmd;
|
|
|
|
};
|
|
|
|
|
2016-10-31 00:21:28 +00:00
|
|
|
GethCommands.prototype.newAccountCommand = function() {
|
2017-02-18 13:55:33 +00:00
|
|
|
return this.geth_bin + " " + this.commonOptions() + "account new ";
|
2016-10-31 00:21:28 +00:00
|
|
|
};
|
|
|
|
|
2016-10-31 00:08:45 +00:00
|
|
|
GethCommands.prototype.listAccountsCommand = function() {
|
2017-02-18 13:55:33 +00:00
|
|
|
return this.geth_bin + " " + this.commonOptions() + "account list ";
|
2016-09-25 06:23:33 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
GethCommands.prototype.mainCommand = function(address) {
|
|
|
|
var config = this.config;
|
2017-02-18 13:55:33 +00:00
|
|
|
var cmd = this.geth_bin + " ";
|
2017-02-18 13:41:18 +00:00
|
|
|
var rpc_api = (this.config.rpcApi || ['eth', 'web3', 'net']);
|
2016-09-25 06:23:33 +00:00
|
|
|
|
2016-10-31 00:08:45 +00:00
|
|
|
cmd += this.commonOptions();
|
2016-09-25 06:23:33 +00:00
|
|
|
|
2016-10-31 00:15:57 +00:00
|
|
|
cmd += "--port " + config.port + " ";
|
2016-09-25 06:23:33 +00:00
|
|
|
cmd += "--rpc ";
|
|
|
|
cmd += "--rpcport " + config.rpcPort + " ";
|
|
|
|
cmd += "--rpcaddr " + config.rpcHost + " ";
|
2016-09-26 00:51:00 +00:00
|
|
|
if (config.rpcCorsDomain) {
|
2016-10-07 11:15:29 +00:00
|
|
|
if (config.rpcCorsDomain === '*') {
|
|
|
|
console.log('==================================');
|
|
|
|
console.log('make sure you know what you are doing');
|
|
|
|
console.log('==================================');
|
|
|
|
}
|
2016-09-26 00:51:00 +00:00
|
|
|
cmd += "--rpccorsdomain=\"" + config.rpcCorsDomain + "\" ";
|
|
|
|
} else {
|
2016-10-07 11:15:29 +00:00
|
|
|
console.log('==================================');
|
|
|
|
console.log('warning: cors is not set');
|
|
|
|
console.log('==================================');
|
2016-09-26 00:51:00 +00:00
|
|
|
}
|
2016-09-25 06:23:33 +00:00
|
|
|
|
2016-10-07 11:15:29 +00:00
|
|
|
if (config.nodiscover) {
|
|
|
|
cmd += "--nodiscover ";
|
|
|
|
}
|
2016-09-25 06:23:33 +00:00
|
|
|
|
2017-02-18 13:41:18 +00:00
|
|
|
if (config.vmdebug) {
|
|
|
|
cmd += "--vmdebug ";
|
|
|
|
}
|
|
|
|
|
2016-10-31 00:35:11 +00:00
|
|
|
cmd += "--maxpeers " + config.maxpeers + " ";
|
|
|
|
|
2016-09-25 06:23:33 +00:00
|
|
|
if (config.mineWhenNeeded || config.mine) {
|
|
|
|
cmd += "--mine ";
|
|
|
|
}
|
|
|
|
|
2017-02-18 13:24:23 +00:00
|
|
|
if (config.bootnodes && config.bootnodes !== "" && config.bootnodes !== []) {
|
|
|
|
cmd += "--bootnodes " + config.bootnodes;
|
|
|
|
}
|
|
|
|
|
2016-09-25 06:23:33 +00:00
|
|
|
if (config.whisper) {
|
|
|
|
cmd += "--shh ";
|
|
|
|
rpc_api.push('shh');
|
|
|
|
}
|
|
|
|
|
|
|
|
cmd += '--rpcapi "' + rpc_api.join(',') + '" ';
|
|
|
|
|
|
|
|
var accountAddress = config.account.address || address;
|
|
|
|
if (accountAddress) {
|
|
|
|
cmd += "--unlock=" + accountAddress + " ";
|
|
|
|
}
|
|
|
|
|
|
|
|
if (config.mineWhenNeeded) {
|
2017-02-20 21:11:27 +00:00
|
|
|
cmd += "js .embark/" + this.env + "/js/mine.js";
|
2016-09-25 06:23:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return cmd;
|
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = GethCommands;
|
|
|
|
|