Created
March 20, 2020 15:24
-
-
Save alexroan/27734f1853452b7dbb1f9eb7a0cfb429 to your computer and use it in GitHub Desktop.
2_deploy_contracts.js/truffle-dapp/0.0.1
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
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