You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
517 B
20 lines
517 B
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'
|
|
|
|
global.METAMASK_DEBUG = 'GULP_METAMASK_DEBUG'
|
|
|
|
module.exports = {
|
|
network: {
|
|
mainnet: MAINET_RPC_URL,
|
|
ropsten: ROPSTEN_RPC_URL,
|
|
kovan: KOVAN_RPC_URL,
|
|
rinkeby: RINKEBY_RPC_URL,
|
|
},
|
|
networkNames: {
|
|
3: 'Ropsten',
|
|
4: 'Rinkeby',
|
|
42: 'Kovan',
|
|
},
|
|
}
|
|
|