Skip to content

Instantly share code, notes, and snippets.

@Chanutg
Created April 11, 2019 14:26
Show Gist options
  • Save Chanutg/1a9993cf6a91f997fb53836de3845c67 to your computer and use it in GitHub Desktop.
Save Chanutg/1a9993cf6a91f997fb53836de3845c67 to your computer and use it in GitHub Desktop.
const Migrations = artifacts.require("Migrations");
const HelloWorld = artifacts.require("HelloWorld");
module.exports = function(deployer) {
deployer.deploy(Migrations);
deployer.deploy(HelloWorld);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment