mirror of
https://github.com/dap-ps/discover.git
synced 2025-02-07 06:54:49 +00:00
* 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
16 lines
425 B
JavaScript
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)
|
|
}
|
|
},
|
|
};
|