-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.js
More file actions
45 lines (45 loc) · 1.62 KB
/
Copy pathconfig.js
File metadata and controls
45 lines (45 loc) · 1.62 KB
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
43
44
45
module.exports = {
// Google Analytics tracking ID
analytics: 'UA-00000000-0'
// How long sessions should be stored in the database, in milliseconds
, sessionTimeout: 30 * 24 * 60 * 60 * 1000
// How long withdrawal links will last, in milliseconds
, withdrawTimeout: 24 * 60 * 60 * 1000
// The maximum amount of time before a connection is closed when polling for new work, in milliseconds
, pollTimeout: 30 * 1000
// If a job is probably no longer valid, don't bother submitting it; may clash with some types of load balancing
, rejectAssumedStales: true
// Configuration for outgoing emails
, email: {
address: 'luke7380@gmail.com'
// For information on transport and settings, see the documentation for nodemailer at https://github.com/andris9/Nodemailer#possible-transport-methods
, transport: 'Sendmail'
, settings: {}
}
// The default port for the API server; it can also be set using the NODE_PORT environment variable
, server: {
port: 9876
}
// It works on a predictive model, so configure these values appropriately for how much you have been making
, payouts: {
targetPerHour: 25
, maxPerShare: 0.005
, minWithdraw: 1
}
// The pool you're connecting to; set active to false when developing so you don't constantly disconnect and reconnect
, stratum: {
host: 'stratum.rapidhash.net'
, port: 3333
, username: 'luke738.Javascript'
, password: 'y'
, active: true
}
// This is used for payouts in the processing/payout.js file; do not put your pool information here
, rpc: {
host: '107.170.246.49'
, port: 22556
, username: 'dogevertise'
, password: 'dogedogedoge'
, accountName: ''
}
};