Guest User

Untitled

a guest
Jun 22nd, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. var DevToken = artifacts.require("./contracts/DevToken");
  2. var DevCrowdsale = artifacts.require("./contracts/DevCrowdsale")
  3.  
  4. module.exports = function(deployer) {
  5.  
  6. const MIN = 60;
  7. const HOUR = 60 * MIN;
  8. const DAY = 24 * HOUR;
  9. const WEEK = 7 * DAY;
  10.  
  11. const rate = new web3.BigNumber(10);
  12. const wallet = "0x393bacA47D5F2D19Cfa8F8eC579A3f94D1a8DE63";
  13.  
  14. deployer.deploy(DevCrowdsale, rate, wallet, DevToken.address);
  15. };
Add Comment
Please, Sign In to add comment