1
0
mirror of https://github.com/dap-ps/discover.git synced 2025-02-12 09:17:32 +00:00
discover/config/communication.js

16 lines
425 B
JavaScript
Raw Normal View History

2019-05-27 17:22:45 +02:00
module.exports = {
default: {
2019-07-30 10:06:32 -04:00
enabled: false,
2019-05-27 17:22:45 +02:00
provider: "whisper", // Communication provider. Currently, Embark only supports whisper
available_providers: ["whisper"], // Array of available providers
},
development: {
connection: {
host: "localhost", // Host of the blockchain node
port: 8547, // Port of the blockchain node
2019-05-27 17:22:45 +02:00
type: "ws" // Type of connection (ws or rpc)
}
},
};