Skip to content

Instantly share code, notes, and snippets.

@alexroan
Created March 20, 2020 15:24
Show Gist options
  • Save alexroan/27734f1853452b7dbb1f9eb7a0cfb429 to your computer and use it in GitHub Desktop.
Save alexroan/27734f1853452b7dbb1f9eb7a0cfb429 to your computer and use it in GitHub Desktop.
2_deploy_contracts.js/truffle-dapp/0.0.1
const HelloWorld = artifacts.require("HelloWorld");
const SimpleStorage = artifacts.require("SimpleStorage");
module.exports = function(deployer) {
deployer.deploy(HelloWorld);
deployer.deploy(SimpleStorage);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment