embark/lib/chain_manager.js

51 lines
1.2 KiB
JavaScript
Raw Normal View History

2015-08-03 12:03:55 +00:00
var fs = require('fs');
var web3 = require('web3');
2015-08-03 12:44:16 +00:00
var sha3_256 = require('js-sha3').sha3_256;
2015-08-03 12:03:55 +00:00
2015-08-03 12:44:16 +00:00
ChainManager = function() {
this.currentChain = {};
}
2015-08-03 12:03:55 +00:00
ChainManager.prototype.loadConfigFile = function(filename) {
try {
var obj = JSON.parse(fs.readFileSync(filename));
this.chainManagerConfig = obj;
} catch (e) {
throw new Error("error reading " + filename);
}
return this;
};
ChainManager.prototype.loadConfig = function(config) {
this.chainManagerConfig = config;
return this;
};
ChainManager.prototype.init = function(env, blockchainConfig) {
var config = blockchainConfig.config(env);
web3.setProvider(new web3.providers.HttpProvider("http://" + config.rpcHost + ":" + config.rpcPort));
var chainId = web3.eth.getBlock(0).hash;
if (this.chainManagerConfig[chainId] === undefined) {
2015-08-03 12:44:16 +00:00
this.chainManagerConfig[chainId] = {contracts: {}};
}
this.currentChain = this.chainManagerConfig[chainId];
}
ChainManager.prototype.addContract = function(contractName, code, address) {
this.currentChain.contracts[sha3_256(code)] = {
name: contractName,
address: address
2015-08-03 12:03:55 +00:00
}
}
2015-08-04 01:01:15 +00:00
ChainManager.prototype.getContract = function(code) {
return this.currentChain.contracts[sha3_256(code)];
}
2015-08-03 12:03:55 +00:00
module.exports = ChainManager;