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

                                       

                                             
 




                             
                            

    
const MAINET_RPC_URL = 'https://mainnet.infura.io/metamask'
const TESTNET_RPC_URL = 'https://ropsten.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: TESTNET_RPC_URL,
  },
}