aboutsummaryrefslogtreecommitdiffstats
path: root/app/scripts/config.js
blob: 7a1d54a3b2620ebb2eda9d4065f2e441f76d1008 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
const MAINET_RPC_URL = 'https://mainnet.infura.io/'
const TESTNET_RPC_URL = 'https://morden.infura.io/'
const DEFAULT_RPC_URL = TESTNET_RPC_URL
const CLASSIC_RPC_URL = 'https://mainnet-nf.infura.io/'

global.METAMASK_DEBUG = false

module.exports = {
  network: {
    default: DEFAULT_RPC_URL,
    mainnet: MAINET_RPC_URL,
    testnet: TESTNET_RPC_URL,
    classic: CLASSIC_RPC_URL,
  },
}