dreddit-dapp/config/namesystem.js

40 lines
907 B
JavaScript
Raw Normal View History

2018-08-20 18:42:27 +00:00
module.exports = {
2018-10-09 22:47:06 +00:00
// default applies to all environments
2018-08-20 18:42:27 +00:00
default: {
2018-10-09 22:47:06 +00:00
enabled: true,
2018-08-20 18:42:27 +00:00
available_providers: ["ens"],
provider: "ens"
2018-10-09 22:47:06 +00:00
},
// default environment, merges with the settings in default
// assumed to be the intended environment by `embark run`
development: {
register: {
rootDomain: "embark.eth",
subdomains: {
'status': '0x1a2f3b98e434c02363f3dac3174af93c1d690914'
}
}
},
// merges with the settings in default
// used with "embark run privatenet"
privatenet: {
},
// merges with the settings in default
// used with "embark run testnet"
testnet: {
},
// merges with the settings in default
// used with "embark run livenet"
livenet: {
},
// you can name an environment with specific settings and then specify with
// "embark run custom_name" or "embark blockchain custom_name"
//custom_name: {
//}
2018-08-20 18:42:27 +00:00
};