aboutsummaryrefslogblamecommitdiffstats
path: root/app/scripts/config.js
blob: b7e72eb64dadc9737ebe3828a2f99e3f0bbccdb6 (plain) (tree)
1
2
3
4
5
6

                                                           

                                       

                             






                             
const MAINET_RPC_URL = 'https://mainnet.infura.io/metamask'
const TESTNET_RPC_URL = 'https://morden.infura.io/metamask'
const DEFAULT_RPC_URL = TESTNET_RPC_URL

global.METAMASK_DEBUG = false

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