Files
openzeppelin-contracts/migrations/2_deploy_contracts.js
Manuel Aráoz a3362f7216 Merge pull request #51 from AugustoL/master
Added Claimable contract as an extension of Ownable
2016-11-09 17:36:08 -03:00

13 lines
357 B
JavaScript

module.exports = function(deployer) {
deployer.deploy(PullPaymentBid);
deployer.deploy(BadArrayUse);
deployer.deploy(ProofOfExistence);
deployer.deploy(Ownable);
deployer.deploy(Claimable);
deployer.deploy(LimitFunds);
if(deployer.network == 'test'){
deployer.deploy(SecureTargetBounty);
deployer.deploy(InsecureTargetBounty);
};
};