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

global.METAMASK_DEBUG = 'GULP_METAMASK_DEBUG'
global.TOS_HASH = 'GULP_TOS_HASH'

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