Skip to content

Instantly share code, notes, and snippets.

@alexytiger
Created December 1, 2019 19:12
Show Gist options
  • Save alexytiger/0ef44a9b08a81e71c40174b1743d9a25 to your computer and use it in GitHub Desktop.
Save alexytiger/0ef44a9b08a81e71c40174b1743d9a25 to your computer and use it in GitHub Desktop.
e-book
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