selfkey-token
Version:
The SelfKey Token is an ERC20 standard token that is used to fuel the SelfKey KYC dapps
10 lines (7 loc) • 353 B
JavaScript
const SelfKeyCrowdsale = artifacts.require('./SelfKeyCrowdsale.sol')
module.exports = deployer => {
const startTime = 1515888000 // 14 Jan 2018 00:00:00 UTC
const endTime = 1517443200 // 1 Feb 2018 00:00:00 UTC
const goal = 166666666666666667000000000 // approx. $2,500,000 in KEY
deployer.deploy(SelfKeyCrowdsale, startTime, endTime, goal)
}