1
0
mirror of https://github.com/dap-ps/discover.git synced 2025-02-07 06:54:49 +00:00
discover/config/communication.js
Jonathan Rainville 863d9ea8e3
Update to Embark v5 (#62)
* chore: update to Embark v5

* fix: fix tests for Embark 5

* update Embark version and remove Geth client

* change contracts to deploy and add cross-env for Windows support

* feat: upgrade to Embark 5.1.nightly2

Fixes the problem of not exiting on build end

* update to Embark 5.1

Fixes issue where artifacts are not built
2020-01-30 11:45:09 +02:00

16 lines
425 B
JavaScript

module.exports = {
default: {
enabled: false,
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
type: "ws" // Type of connection (ws or rpc)
}
},
};