/ config / communication.js
communication.js
 1  module.exports = {
 2    default: {
 3      enabled: true,
 4      provider: "whisper", 
 5      available_providers: ["whisper"], 
 6    },
 7  
 8    development: {
 9      connection: {
10        host: "localhost",
11        port: 8546, 
12        type: "ws" 
13      }
14    },
15    testnet: {
16    },
17    livenet: {
18    },
19    rinkeby: {
20    }
21    
22  };