nifty-wallet/app/scripts/config.js

16 lines
441 B
JavaScript
Raw Normal View History

const MAINET_RPC_URL = 'https://mainnet.infura.io/metamask'
2017-05-15 18:05:11 -07:00
const ROPSTEN_RPC_URL = 'https://ropsten.infura.io/metamask'
2017-05-15 19:11:16 -07:00
const KOVAN_RPC_URL = 'https://kovan.infura.io/metamask'
const RINKEBY_RPC_URL = 'https://rinkeby.infura.io/metamask'
2016-05-19 16:53:16 -07:00
global.METAMASK_DEBUG = 'GULP_METAMASK_DEBUG'
2016-08-11 19:44:59 -07:00
2016-05-19 16:53:16 -07:00
module.exports = {
network: {
mainnet: MAINET_RPC_URL,
2017-05-15 18:05:11 -07:00
ropsten: ROPSTEN_RPC_URL,
2017-05-15 19:11:16 -07:00
kovan: KOVAN_RPC_URL,
rinkeby: RINKEBY_RPC_URL,
2016-05-19 16:53:16 -07:00
},
}