2_deploy_contracts.js 357 B

123456789101112
  1. module.exports = function(deployer) {
  2. deployer.deploy(PullPaymentBid);
  3. deployer.deploy(BadArrayUse);
  4. deployer.deploy(ProofOfExistence);
  5. deployer.deploy(Ownable);
  6. deployer.deploy(Claimable);
  7. deployer.deploy(LimitFunds);
  8. if(deployer.network == 'test'){
  9. deployer.deploy(SecureTargetBounty);
  10. deployer.deploy(InsecureTargetBounty);
  11. };
  12. };