bitcore-wallet-service/config.js

34 lines
634 B
JavaScript
Raw Normal View History

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