mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 18:41:38 +01:00
e8a8302624
Ropsten links will still not work until Etherscan publishes their ropsten link format. At that time we will need to update ui/lib/account-link.js Otherwise, fixes #831
17 lines
458 B
JavaScript
17 lines
458 B
JavaScript
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,
|
|
},
|
|
}
|