bitcore-wallet-service/config.js

31 lines
599 B
JavaScript

var config = {
basePath: '/bws/api',
disableLogs: false,
port: 3232,
storageOpts: {
dbPath: './db',
// multiLevel: {
// host: 'localhost',
// port: 3230,
// },
},
lockOpts: {
// To use locker-server, uncomment this:
// lockerServer: {
// host: 'localhost',
// port: 3231,
// },
},
blockchainExplorerOpts: {
livenet: {
provider: 'insight',
url: 'https://insight.bitpay.com:443',
},
testnet: {
provider: 'insight',
url: 'https://test-insight.bitpay.com:443',
},
},
};
module.exports = config;