bivcore-wallet-service
Version:
A service for Mutisig HD Bitcoin Value Wallets
77 lines • 1.92 kB
JavaScript
module.exports = {
basePath: '/bws/api',
disableLogs: false,
port: 3232,
storageOpts: {
mongoDb: {
uri: 'mongodb://localhost:27017/bws',
dbname: 'bws'
}
},
messageBrokerOpts: {
messageBrokerServer: {
url: 'http://localhost:3380'
}
},
blockchainExplorerOpts: {
btc: {
livenet: {
url: 'https://api.bitcore.io'
},
testnet: {
url: 'https://api.bitcore.io',
regtestEnabled: false
}
},
bch: {
livenet: {
url: 'https://api.bitcore.io'
},
testnet: {
url: 'https://api.bitcore.io'
}
},
biv: {
livenet: {
url: 'https://api.bitcore.io'
},
testnet: {
url: 'https://api.bitcore.io'
}
},
eth: {
livenet: {
url: 'https://api-eth.bitcore.io'
},
testnet: {
url: 'https://api-eth.bitcore.io'
}
},
xrp: {
livenet: {
url: 'https://api-xrp.bitcore.io'
},
testnet: {
url: 'https://api-xrp.bitcore.io'
}
},
socketApiKey: 'socketApiKey'
},
pushNotificationsOpts: {
templatePath: 'templates',
defaultLanguage: 'en',
defaultUnit: 'btc',
subjectPrefix: '',
pushServerUrl: 'https://fcm.googleapis.com/fcm',
authorizationKey: 'You_have_to_put_something_here'
},
fiatRateServiceOpts: {
defaultProvider: 'BitPay',
fetchInterval: 60
},
maintenanceOpts: {
maintenanceMode: false
},
staticRoot: '/tmp/static'
};
//# sourceMappingURL=config.js.map