copay/js/config.js

27 lines
397 B
JavaScript
Raw Normal View History

2014-03-14 13:38:27 -07:00
'use strict';
2014-04-07 20:54:38 -07:00
var config = {
networkName: 'testnet',
2014-04-15 08:17:28 -07:00
network: {
apiKey: 'lwjd5qra8257b9',
maxPeers: 3,
2014-04-15 11:25:55 -07:00
debug: 3,
2014-04-15 08:17:28 -07:00
},
2014-04-15 06:22:50 -07:00
wallet: {
requiredCopayers: 2,
totalCopayers: 3,
},
2014-04-15 14:23:35 -07:00
blockchain: {
host: 'test.insight.is',
port: 80
// host: 'localhost',
// port: 3001
2014-04-14 13:17:56 -07:00
},
2014-04-15 11:25:55 -07:00
verbose: 1,
2014-04-07 20:54:38 -07:00
};
2014-04-15 10:28:49 -07:00
var log = function () {
if (config.verbose) console.log(arguments);
}