1_initial_migration.js 172 B

123456
  1. /* eslint no-undef: "off" */
  2. const Migrations = artifacts.require('./Migrations.sol')
  3. module.exports = (deployer) => {
  4. deployer.deploy(Migrations, { gas: 4500000 })
  5. }