mirror of https://gitlab.com/ecentrics/concordia
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
394 B
12 lines
394 B
import Web3 from 'web3';
|
|
|
|
const { WEB3_URL, WEB3_PORT } = process.env;
|
|
|
|
// We need fallback ws://127.0.0.1:8545 because drizzle has not the patched web3 we use here
|
|
const web3 = (WEB3_URL && WEB3_PORT) ? `ws://${WEB3_URL}:${WEB3_PORT}` : new Web3(Web3.givenProvider || new Web3.providers.WebsocketProvider('ws://127.0.0.1:8545'));
|
|
|
|
const web3Options = {
|
|
web3,
|
|
};
|
|
|
|
export default web3Options;
|
|
|