mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 18:41:38 +01:00
23 lines
601 B
JavaScript
23 lines
601 B
JavaScript
const MAINET_RPC_URL = 'https://mainnet.infura.io/metamask'
|
|
const ROPSTEN_RPC_URL = 'https://ropsten.infura.io/metamask'
|
|
const KOVAN_RPC_URL = 'https://kovan.infura.io/metamask'
|
|
const RINKEBY_RPC_URL = 'https://rinkeby.infura.io/metamask'
|
|
const LOCALHOST_RPC_URL = 'http://localhost:8545'
|
|
|
|
global.METAMASK_DEBUG = 'GULP_METAMASK_DEBUG'
|
|
|
|
module.exports = {
|
|
network: {
|
|
localhost: LOCALHOST_RPC_URL,
|
|
mainnet: MAINET_RPC_URL,
|
|
ropsten: ROPSTEN_RPC_URL,
|
|
kovan: KOVAN_RPC_URL,
|
|
rinkeby: RINKEBY_RPC_URL,
|
|
},
|
|
networkNames: {
|
|
3: 'Ropsten',
|
|
4: 'Rinkeby',
|
|
42: 'Kovan',
|
|
},
|
|
}
|