2018-06-12 16:59:31 +00:00
module . exports = {
2018-08-15 21:01:41 +00:00
// applies to all environments
default : {
2018-06-12 16:59:31 +00:00
enabled : true ,
2018-08-15 21:01:41 +00:00
rpcHost : "localhost" , // HTTP-RPC server listening interface (default: "localhost")
rpcPort : 8545 , // HTTP-RPC server listening port (default: 8545)
rpcCorsDomain : "auto" , // Comma separated list of domains from which to accept cross origin requests (browser enforced)
// When set to "auto", Embark will automatically set the cors to the address of the webserver
wsRPC : true , // Enable the WS-RPC server
wsOrigins : "auto" , // Origins from which to accept websockets requests
// When set to "auto", Embark will automatically set the cors to the address of the webserver
wsHost : "localhost" , // WS-RPC server listening interface (default: "localhost")
wsPort : 8546 // WS-RPC server listening port (default: 8546)
} ,
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` and `embark blockchain`
2018-08-15 21:01:41 +00:00
development : {
2018-10-06 16:05:37 +00:00
ethereumClientName : "geth" , // Can be geth or parity (default:geth)
//ethereumClientBin: "geth", // path to the client binary. Useful if it is not in the global PATH
2018-06-18 19:40:06 +00:00
networkType : "custom" , // Can be: testnet, rinkeby, livenet or custom, in which case, it will use the specified networkId
2018-10-06 16:05:37 +00:00
networkId : 1337 , // Network id used when networkType is custom
2018-06-18 19:40:06 +00:00
isDev : true , // Uses and ephemeral proof-of-authority network with a pre-funded developer account, mining enabled
2018-10-06 16:05:37 +00:00
datadir : ".embark/development/datadir" , // Data directory for the databases and keystore (Geth 1.8.15 and Parity 2.0.4 can use the same base folder, till now they does not conflict with each other)
2018-06-18 19:40:06 +00:00
mineWhenNeeded : true , // Uses our custom script (if isDev is false) to mine only when needed
nodiscover : true , // Disables the peer discovery mechanism (manual peer addition)
maxpeers : 0 , // Maximum number of network peers (network disabled if set to 0) (default: 25)
proxy : true , // Proxy is used to present meaningful information about transactions
targetGasLimit : 8000000 , // Target gas limit sets the artificial target gas floor for the blocks to mine
simulatorMnemonic : "example exile argue silk regular smile grass bomb merge arm assist farm" , // Mnemonic used by the simulator to generate a wallet
2018-09-10 01:22:47 +00:00
simulatorBlocktime : 0 , // Specify blockTime in seconds for automatic mining. Default is 0 and no auto-mining.
account : {
// numAccounts: 3, // When specified, creates accounts for use in the dapp. This option only works in the development environment, and can be used as a quick start option that bypasses the need for MetaMask in development. These accounts are unlocked and funded with the below settings.
2018-09-20 06:21:29 +00:00
// password: "config/development/password", // Password for the created accounts (as specified in the `numAccounts` setting). If `mineWhenNeeded` is enabled (and isDev is not), this password is used to create a development account controlled by the node.
2018-10-06 16:05:37 +00:00
// balance: "5 ether", // Balance to be given to the created accounts (as specified in the `numAccounts` setting)
devPassword : "config/development/devpassword" // [Parity-only] File with a void line to unlock the Parity dev account
2018-09-10 01:22:47 +00:00
}
2018-06-12 16:59:31 +00:00
} ,
2018-08-21 18:44:58 +00:00
// merges with the settings in default
// used with "embark run privatenet" and/or "embark blockchain privatenet"
2018-06-28 14:40:40 +00:00
privatenet : {
networkType : "custom" ,
2018-10-06 16:05:37 +00:00
networkId : 1337 ,
2018-06-28 14:40:40 +00:00
isDev : false ,
datadir : ".embark/privatenet/datadir" ,
2018-09-20 06:21:29 +00:00
// -- mineWhenNeeded --
// This options is only valid when isDev is false.
// Enabling this option uses our custom script to mine only when needed.
// Embark creates a development account for you (using `geth account new`) and funds the account. This account can be used for
// development (and even imported in to MetaMask). To enable correct usage, a password for this account must be specified
// in the `account > password` setting below.
// NOTE: once `mineWhenNeeded` is enabled, you must run an `embark reset` on your dApp before running
// `embark blockchain` or `embark run` for the first time.
2018-06-28 14:40:40 +00:00
mineWhenNeeded : true ,
2018-09-20 06:21:29 +00:00
// -- genesisBlock --
// This option is only valid when mineWhenNeeded is true (which is only valid if isDev is false).
2018-09-20 13:00:11 +00:00
// When enabled, geth uses POW to mine transactions as it would normally, instead of using POA as it does in --dev mode.
2018-09-20 06:21:29 +00:00
// On the first `embark blockchain or embark run` after this option is enabled, geth will create a new chain with a
// genesis block, which can be configured using the `genesisBlock` configuration option below.
genesisBlock : "config/privatenet/genesis.json" , // Genesis block to initiate on first creation of a development node
2018-06-28 14:40:40 +00:00
nodiscover : true ,
maxpeers : 0 ,
proxy : true ,
account : {
// "address": "", // When specified, uses that address instead of the default one for the network
password : "config/privatenet/password" // Password to unlock the account
} ,
targetGasLimit : 8000000 ,
wsHost : "localhost" ,
wsPort : 8546 ,
simulatorMnemonic : "example exile argue silk regular smile grass bomb merge arm assist farm" ,
simulatorBlocktime : 0
} ,
2018-08-21 18:44:58 +00:00
2018-10-06 16:05:37 +00:00
// merges with the settings in default
// used with "embark run privatparityenet" and/or "embark blockchain privateparitynet"
privateparitynet : {
ethereumClientName : "parity" ,
networkType : "custom" ,
networkId : 1337 ,
isDev : false ,
genesisBlock : "config/privatenet/genesis-parity.json" , // Genesis block to initiate on first creation of a development node
datadir : ".embark/privatenet/datadir" , // (Geth 1.8.15 and Parity 2.0.4 can use the same base folder, till now they does not conflict with each other)
mineWhenNeeded : false ,
nodiscover : true ,
maxpeers : 0 ,
proxy : true ,
account : {
// address: "", // When specified, uses that address instead of the default one for the network
password : "config/privatenet/password" // Password to unlock the account
} ,
targetGasLimit : 8000000 ,
simulatorMnemonic : "example exile argue silk regular smile grass bomb merge arm assist farm" ,
simulatorBlocktime : 0
} ,
2018-08-21 18:44:58 +00:00
// merges with the settings in default
// used with "embark run testnet" and/or "embark blockchain testnet"
2018-06-12 16:59:31 +00:00
testnet : {
networkType : "testnet" ,
2018-07-06 09:57:04 +00:00
syncMode : "light" ,
2018-06-12 16:59:31 +00:00
account : {
password : "config/testnet/password"
}
} ,
2018-08-21 18:44:58 +00:00
// merges with the settings in default
// used with "embark run livenet" and/or "embark blockchain livenet"
2018-06-12 16:59:31 +00:00
livenet : {
networkType : "livenet" ,
2018-07-06 09:57:04 +00:00
syncMode : "light" ,
2018-06-12 16:59:31 +00:00
rpcCorsDomain : "http://localhost:8000" ,
2018-08-15 21:01:41 +00:00
wsOrigins : "http://localhost:8000" ,
2018-06-12 16:59:31 +00:00
account : {
password : "config/livenet/password"
}
2018-10-06 16:05:37 +00:00
}
2018-08-21 18:44:58 +00:00
// 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 19:40:06 +00:00
} ;