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.
15 lines
326 B
15 lines
326 B
// test and development environment variables
|
|
const env = process.env.METAMASK_ENV
|
|
const METAMASK_DEBUG = 'GULP_METAMASK_DEBUG'
|
|
|
|
//
|
|
// The default state of MetaMask
|
|
//
|
|
module.exports = {
|
|
config: {},
|
|
NetworkController: {
|
|
provider: {
|
|
type: (METAMASK_DEBUG || env === 'test') ? 'rinkeby' : 'mainnet',
|
|
},
|
|
},
|
|
}
|
|
|