Wallet/config.template.js

45 lines
851 B
JavaScript
Raw Normal View History

2014-03-14 17:38:27 -03:00
'use strict';
2014-04-08 00:54:38 -03:00
var config = {
networkName: 'testnet',
2014-04-15 12:17:28 -03:00
network: {
2014-04-24 17:24:43 -03:00
// key: 'lwjd5qra8257b9', //Copay API key for public PeerJS server
// This is for running local peerJs with params: ./peerjs -p 10009 -k 'sdfjhwefh'
//key: 'sdfjhwefh',
//host: 'localhost',
//port: 10009,
//path: '/',
2014-04-24 17:24:43 -03:00
//
key: 'g23ihfh82h35rf',
host:'162.242.219.26',
port:10009,
path: '/',
maxPeers: 15,
debug: 3
2014-04-15 12:17:28 -03:00
},
2014-04-16 17:07:14 -03:00
limits: {
totalCopayers: 10,
mPlusN: 15
},
2014-04-15 10:22:50 -03:00
wallet: {
requiredCopayers: 2,
totalCopayers: 3,
2014-04-16 17:50:10 -03:00
spendUnconfirmed: 1,
verbose: 1,
2014-04-15 10:22:50 -03:00
},
2014-04-15 18:23:35 -03:00
blockchain: {
host: 'test.insight.is',
2014-04-18 19:28:28 -03:00
port: 3001
},
socket: {
host: 'test.insight.is',
2014-04-18 19:28:28 -03:00
port: 3001
2014-04-14 17:17:56 -03:00
},
2014-04-15 15:25:55 -03:00
verbose: 1,
2014-04-25 17:22:51 -03:00
theme: ['default', 'clean']
2014-04-08 00:54:38 -03:00
};
2014-04-15 14:28:49 -03:00
var log = function () {
if (config.verbose) console.log(arguments);
}