-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.js
More file actions
35 lines (34 loc) · 1016 Bytes
/
config.js
File metadata and controls
35 lines (34 loc) · 1016 Bytes
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
// Maybe change the timestamp for tests to be time.now()?
module.exports = {
test: {
// FIX THESE NUMBERS
privateSaleEnd: Math.floor(Date.now() / 1000 + (1200 *1)).toString(),
preICOEnd: Math.floor(Date.now() / 1000 + (1200 * 2)).toString(),
ico1End: Math.floor(Date.now() / 1000 + (1200 * 3)).toString(),
ico2End: Math.floor(Date.now() / 1000 + (1200 * 4)).toString(),
ico3End: Math.floor(Date.now() / 1000 + (1200 * 5 )).toString(),
liveEnd: Math.floor(Date.now() / 1000 + (1200 * 6 )).toString(),
// FIX THESE NUMBERS
privateSaleCents: 5,
preICOCents: 25,
ico1Cents: 50,
ico2Cents: 75,
ico3Cents: 100,
ethPrice: 11936
},
production: {
privateSaleEnd: 1552608000,
preICOEnd: 1556582400,
ico1End: 1559260800,
ico2End: 1561852800,
ico3End: 1564444800,
liveEnd: 1564444800,
// FIX THESE NUMBERS
privateSaleCents: 5,
preICOCents: 25,
ico1Cents: 50,
ico2Cents: 75,
ico3Cents: 100,
ethPrice: 11936
}
};