bitcore-wallet-service/config.js

35 lines
660 B
JavaScript
Raw Normal View History

2015-04-05 09:56:56 -07:00
var config = {
basePath: '/bws/api',
disableLogs: false,
BlockchainMonitor: {
livenet: {
name: 'insight',
url: 'https://insight.bitpay.com:443',
},
testnet: {
name: 'insight',
url: 'https://test-insight.bitpay.com:443',
},
},
WalletService: {
storageOpts: {
dbPath: './db',
2015-04-05 11:42:56 -07:00
/* To use multilevel, uncomment this:
multiLevel: {
host: 'localhost',
2015-04-15 06:35:37 -07:00
port: 3230,
2015-04-05 11:42:56 -07:00
},
*/
2015-04-05 09:56:56 -07:00
},
2015-04-07 12:34:48 -07:00
lockOpts: {
/* To use locker-server, uncomment this:
lockerServer: {
host: 'localhost',
2015-04-15 06:35:37 -07:00
port: 3231,
2015-04-07 12:34:48 -07:00
},
*/
},
2015-04-05 09:56:56 -07:00
},
};
module.exports = config;