| 12345678910111213141516171819 |
- // if (process.env.NODE_ENV !== 'production' && (!process.env.REACT_APP_NODE_1 || !process.env.REACT_APP_NODE_2 || !process.env.REACT_APP_NODE_3)) {
- // throw Error('One base RPC URL is undefined');
- // }
- // // Array of available nodes to connect to
- // export const nodes = [process.env.REACT_APP_NODE_1, process.env.REACT_APP_NODE_2, process.env.REACT_APP_NODE_3];
- const getNodeUrl = () => {
- // Use custom node if available (both for development and production)
- // However on the testnet it wouldn't work, so if on testnet - comment out the REACT_APP_NODE_PRODUCTION from env file
- // if (process.env.APP_NODE) {
- // return process.env.APP_NODE;
- // }
- // return sample(nodes);
- // https://data-seed-prebsc-1-s1.binance.org:8545
- // return 'https://bsc-dataseed4.defibit.io/';
- return 'https://bsc-dataseed4.defibit.io/';
- };
- export default getNodeUrl;
|