-
Notifications
You must be signed in to change notification settings - Fork 44
/
config.js
41 lines (40 loc) · 1.3 KB
/
config.js
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
let config = {
infura: {
ethereum: 'https://mainnet.infura.io/Oi27hEUIuGqMsrYGpI7e',
ropsten: 'https://ropsten.infura.io/Oi27hEUIuGqMsrYGpI7e',
rinkeby: 'https://rinkeby.infura.io/Oi27hEUIuGqMsrYGpI7e',
kovan: 'https://kovan.infura.io/Oi27hEUIuGqMsrYGpI7e'
},
constants: {
DEFAULT_GAS: 2 * 10 ** 6,
MAX_GAS: 4.7 * 10 ** 6,
DEFAULT_LOW_GAS_PRICE: 0.1 * 10 ** 9,
DEFAULT_GAS_PRICE: 1 * 10 ** 9,
DEFAULT_HIGH_GAS_PRICE: 5 * 10 ** 9,
TOKENS_ALLOCATED_TO_PROOF: 1181031 * (10 ** 18),
DECIMALS_POINTS: 10 ** 18,
TOKEN_UNITS: 10 ** 18,
START_TIMESTAMP: 1509541200,
END_TIMESTAMP: 1512133200,
},
addresses: {
development: {
WALLET_ADDRESS: '0x6704fbfcd5ef766b287262fa2281c105d57246a6',
TOKEN_WALLET_ADDRESS: '0x6704fbfcd5ef766b287262fa2281c105d57246a6'
},
rinkeby: {
WALLET_ADDRESS: '0x9fbdaac5faf6711f38ab26541b7c0d72cb2c0e11',
TOKEN_WALLET_ADDRESS: '0x9fbdaac5faf6711f38ab26541b7c0d72cb2c0e11'
},
ropsten: {
WALLET_ADDRESS: '',
TOKEN_WALLET_ADDRESS: ''
},
ethereum: {
WALLET_ADDRESS: '0x11e3de1bda2650fa6bc74e7cea6a39559e59b103',
TOKEN_WALLET_ADDRESS: '0x11e3de1bda2650fa6bc74e7cea6a39559e59b103',
PRESALE_TOKEN: '0x2469f31A34FCaAc0debf73806cE39B2388874B13'
}
}
}
module.exports = config