forked from cofablab/crowdsale-contract
-
Notifications
You must be signed in to change notification settings - Fork 0
/
crowdsale.conf.js
28 lines (26 loc) · 900 Bytes
/
crowdsale.conf.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
const Web3 = require('web3')
const web3 = new Web3()
const DECIMALS = 18
const EXP = web3.toBigNumber(10).pow(DECIMALS) // 1e18
module.exports = {
token: {
standard: ' v1.0',
name: 'My Token',
symbol: 'MTK',
decimals: DECIMALS,
},
crowdsale: {
presaleStartTime: 1519142400,
presaleUnlimitedStartTime: 1519315200, //22/2/2017/1700
crowdsaleStartTime: 1519747200, //27/2/2017/1700
crowdsaleEndedTime: 1521561600, //20/3/2017/1700
minCap: web3.toWei(1, 'ether'),
maxCap: web3.toWei(100, 'ether'),
maxP1Cap: web3.toWei(100, 'ether'),
ethToTokenConversion: 47000,
maxTokenSupply: web3.toBigNumber(1000000000).times(EXP),
presaleBonusTokens: web3.toBigNumber(115996000).times(EXP),
presaleBonusAddress: '0xd7c4af0e30ec62a01036e45b6ed37bc6d0a3bd53',
presaleBonusAddressColdStorage: '0x47d634ce50170a156ec4300d35be3b48e17caaf6',
},
}