copay/js/config.js

27 lines
397 B
JavaScript

'use strict';
var config = {
networkName: 'testnet',
network: {
apiKey: 'lwjd5qra8257b9',
maxPeers: 3,
debug: 3,
},
wallet: {
requiredCopayers: 2,
totalCopayers: 3,
},
blockchain: {
host: 'test.insight.is',
port: 80
// host: 'localhost',
// port: 3001
},
verbose: 1,
};
var log = function () {
if (config.verbose) console.log(arguments);
}