Skip to content

Instantly share code, notes, and snippets.

@Ntropish
Created January 28, 2018 03:45
Show Gist options
  • Save Ntropish/0493bd14cdfc2101b7478b0784fc3bf9 to your computer and use it in GitHub Desktop.
Save Ntropish/0493bd14cdfc2101b7478b0784fc3bf9 to your computer and use it in GitHub Desktop.
var Core = artifacts.require('Core')
var Contract2 = artifacts.require('Contract2')
var Contract1 = artifacts.require('Contract1')
module.exports = async function (deployer) {
deployer.deploy(Contract2)
deployer.deploy(Core).then(function () {
deployer.deploy(Contract1, Core.address, 250)
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment