You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
634 B
33 lines
634 B
var config = {
|
|
basePath: '/bws/api',
|
|
disableLogs: false,
|
|
/* port: 3232, */
|
|
|
|
storageOpts: {
|
|
dbPath: './db',
|
|
/* To use multilevel, uncomment this:
|
|
multiLevel: {
|
|
host: 'localhost',
|
|
port: 3230,
|
|
},
|
|
*/
|
|
},
|
|
lockOpts: {
|
|
// To use locker-server, uncomment this:
|
|
// lockerServer: {
|
|
// host: 'localhost',
|
|
// port: 3231,
|
|
// },
|
|
},
|
|
blockchainExplorerOpts: {
|
|
livenet: {
|
|
name: 'insight',
|
|
url: 'https://insight.bitpay.com:443',
|
|
},
|
|
testnet: {
|
|
name: 'insight',
|
|
url: 'https://test-insight.bitpay.com:443',
|
|
},
|
|
},
|
|
};
|
|
module.exports = config;
|
|
|