1
0

2_deploy_contracts.js 409 B

123456789101112
  1. /* eslint no-undef: "off" */
  2. const ShowFactory = artifacts.require('ShowFactory')
  3. const ShowHelper = artifacts.require('ShowHelper')
  4. const ShowOwnership = artifacts.require('ShowOwnership')
  5. const ShowTrader = artifacts.require('ShowTrader')
  6. module.exports = (deployer) => {
  7. deployer.deploy(ShowFactory)
  8. deployer.deploy(ShowHelper)
  9. deployer.deploy(ShowOwnership)
  10. deployer.deploy(ShowTrader)
  11. }