2_deploy_contracts.js 254 B

123456789
  1. module.exports = function(deployer) {
  2. deployer.deploy(Ownable);
  3. deployer.deploy(Claimable);
  4. deployer.deploy(LimitBalance);
  5. if(deployer.network == 'test'){
  6. deployer.deploy(SecureTargetBounty);
  7. deployer.deploy(InsecureTargetBounty);
  8. }
  9. };