Created
January 28, 2018 03:45
-
-
Save Ntropish/0493bd14cdfc2101b7478b0784fc3bf9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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