1
0
mirror of https://github.com/dap-ps/discover.git synced 2025-02-07 15:05:07 +00:00
Jakub Sokołowski f7c0be8eb6
add config/index.js for central config management
Signed-off-by: Jakub Sokołowski <jakub@status.im>
2019-08-05 12:36:32 -04:00

7 lines
174 B
JavaScript

const Web3 = require('web3');
const config = require('../config')
module.exports = new Web3(
new Web3.providers.WebsocketProvider(config.BLOCKCHAIN_CONNECTION_POINT)
);