embark/dapps/templates/demo/config/namesystem.js

40 lines
900 B
JavaScript
Raw Permalink Normal View History

2018-06-12 16:59:31 +00:00
module.exports = {
2018-08-21 18:44:58 +00:00
// default applies to all environments
2018-06-12 16:59:31 +00:00
default: {
2018-09-12 13:01:21 +00:00
enabled: true,
2018-08-22 09:11:57 +00:00
available_providers: ["ens"],
provider: "ens"
},
2018-08-21 18:44:58 +00:00
// default environment, merges with the settings in default
// assumed to be the intended environment by `embark run`
development: {
2018-07-23 21:11:41 +00:00
register: {
2018-08-23 09:23:52 +00:00
rootDomain: "eth",
subdomains: {
2018-08-23 09:23:52 +00:00
'embark': '0x1a2f3b98e434c02363f3dac3174af93c1d690914'
2018-07-23 21:11:41 +00:00
}
}
2018-08-23 19:53:33 +00:00
},
2018-08-21 18:44:58 +00:00
// 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-06-18 20:04:05 +00:00
};