2018-06-12 16:59:31 +00:00
|
|
|
module.exports = {
|
|
|
|
default: {
|
|
|
|
enabled: true,
|
2018-06-18 19:44:24 +00:00
|
|
|
provider: "whisper", // Communication provider. Currently, Embark only supports whisper
|
|
|
|
available_providers: ["whisper"], // Array of available providers
|
2018-06-12 16:59:31 +00:00
|
|
|
connection: {
|
2018-06-18 19:44:24 +00:00
|
|
|
host: "localhost", // Host of the blockchain node
|
|
|
|
port: 8546, // Port of the blockchain node
|
2018-06-18 19:59:48 +00:00
|
|
|
type: "ws" // Type of connection (ws or rpc)
|
2018-06-12 16:59:31 +00:00
|
|
|
}
|
|
|
|
}
|
2018-06-18 19:44:24 +00:00
|
|
|
};
|