From fc5567c8fac2eb90d94c164f848d5b3962be402e Mon Sep 17 00:00:00 2001 From: Ayush Shukla Date: Wed, 12 Sep 2018 23:04:33 +0530 Subject: [PATCH] Delete config.js --- config.js | 72 ------------------------------------------------------- 1 file changed, 72 deletions(-) delete mode 100644 config.js diff --git a/config.js b/config.js deleted file mode 100644 index 88f51ab..0000000 --- a/config.js +++ /dev/null @@ -1,72 +0,0 @@ -const configServer = { - port: process.env.PORT || 3000, - host: process.env.HOST || "127.0.0.1", - mongoConfig: { - uri: "mongodb://ether:ether@ds255347.mlab.com:55347/ether" - }, - mongoOptions: { - - }, - web3Config: { - localUrl: "http://0.0.0.0:8000", - infuraRopstenUrl: "https://ropsten.infura.io/Jy5YYgH6Xcj9sCLegGbH", - infuraRinkebyUrl: "https://rinkeby.infura.io/Jy5YYgH6Xcj9sCLegGbH", - infureMainUrl: "https://mainnet.infura.io/Jy5YYgH6Xcj9sCLegGbH", - }, - kueConfig: { - redis: { - host: "127.0.0.1", - port: "6379", - - }, - }, - redisConfig: { - host: "127.0.0.1", - port: "6379", - }, - accounts: { - transaferAccountPublicKey: '', - transferAccountPrivateKey: '', - coldAccountPublicKey: '', - }, - utils: { - walletSalt: "6296661279", - - etherDataDirectory: "/home/mcd-50/Personal/Important/private-chain/data", - - bugSnagApiKey: "b8f93f422a233a482ac6e549e325c9f1", - - etherScanApiKey: "M81XFGHSD359SKMC917D5YM467NRM6QAE6", - etherScanUrl: "http://api.etherscan.io/api?module=account&action=txlist&sort=asc&apikey=M81XFGHSD359SKMC917D5YM467NRM6QAE6", - - withdrawBackoff: 20000, - depositBackoff: 20000, - - balanceFactor: 1.18, - failFactor: 0.02, - gasFactor: 1.12, - - - chainId: 12, - depositConfirmation: 40, - - depositAttempt: 3, - withdrawAttempt: 3, - sweepAttempt: 5, - notifyAttempt: 10, - - transferAccountBalanceLimit: 50, - - depositDiscoverInterval: '30 */2 * * * *', - depositConfirmationInterval: '* * * * *', - withdrawDiscoverInterval: '30 */3 * * * *', - - apiPrefix: '/api/ether', - - depositFreezed: 'deposit_freezed', - withdrawFreezed: 'withdraw_freezed' - }, -}; - - -export default configServer; \ No newline at end of file