forked from Overtorment/Cashier-BTC
-
Notifications
You must be signed in to change notification settings - Fork 2
/
config.js.dev
42 lines (42 loc) · 1.48 KB
/
config.js.dev
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
module.exports = {
'port': 2222,
'testnet': false,
'base_url': 'http://localhost:2222',
'base_url_qr': 'http://localhost:2222',
'couchdb': 'http://user:pass@localhost:5984/btczpay', // install locally or use https://cloudant.com
'bitcoind': {
'rpc': 'http://user:pass@127.0.0.1:1979'
},
rate: {
api: [
"https://masq.btcz.rocks/rates",
"https://masq.btcz.app/rates",
],
currency: ['BTC','USD','EUR', 'CHF'],
},
'smtp': {
host: 'smtp.server.org',
port: 587,
secure: false,
requireTLS: true,
auth: {
user: 'email@mail.com',
pass: 'eMailPW'
}
},
'marketrate_refresh': 30, // in minutes
'max_payment_valid' : 30, // in minute
'confirmation_before_forward' : 2,
'tmp_address' : 'ChangThisToYourAddress', // tmp address to use for speed sweep
'tmp_address_WIF' : 'This is the private key',
'speed_sweep_fee' : 5, // fee in % for speed sweep
'fee_tx' : 0.0001,
'speedSweep_max' : 0, // Max amount of BTCz for speed Pay, 0 to disable
'max_gateway_client' : 20, // Maximum of gateway (open) per client (0= no limit)
'check_return' : 60, // time after gateway expired to check found return
'GoogleAnalytics' : 'GoAnString', // Google Analytics ID
'gmail_user' : 'UserName', // Gmail user name
'gmail_pass' : 'PassWord', // Gmail password
'process_unpaid_for_period': 24 * 3600 * 1000, // worker that checks status of addresses
'process_paid_for_period': 30 * 24 * 3600 * 1000 // worker2 that sweeps temporary wallets
}