mirror of
https://github.com/status-im/ens-usernames.git
synced 2025-02-23 15:48:11 +00:00
* fix run error * transfer to zero should decerease supply (burn action) * dont increment address 0 balance * fix warning * Update bootstrap to Embark 3.1 (#10) * update configs to .js * update tests * better test abstraction * undo changes after test * small fixes
13 lines
400 B
JavaScript
13 lines
400 B
JavaScript
module.exports = {
|
|
default: {
|
|
enabled: true,
|
|
provider: "whisper", // Communication provider. Currently, Embark only supports whisper
|
|
available_providers: ["whisper"], // Array of available providers
|
|
connection: {
|
|
host: "localhost", // Host of the blockchain node
|
|
port: 8546, // Port of the blockchain node
|
|
type: "ws" // Type of connection (ws or rpc)
|
|
}
|
|
}
|
|
};
|