Created
December 1, 2019 19:12
-
-
Save alexytiger/0ef44a9b08a81e71c40174b1743d9a25 to your computer and use it in GitHub Desktop.
e-book
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 FleaMarketContract = artifacts.require("FleaMarketFactory"); | |
| module.exports = async (deployer) => { | |
| await deployer.deploy(FleaMarketContract); | |
| const contract = await FleaMarketContract.deployed(); | |
| console.log(`Contract has been deployed successfully: ${contract.address}`); | |
| }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment