🥓 clean up

This commit is contained in:
bt3gl 2022-09-23 07:03:34 -07:00
parent 68066e2c89
commit ef50ffba5a
27 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,14 @@
async function main() {
const nft = await ethers.getContractFactory("MiaNFT");
const nft_deploy = await nft.deploy();
console.log(" ⛓🧱✨ Contract address:", nft_deploy.address);
console.log(" ➡️ (Please add this string to .env)");
}
main()
.then(() => process.exit(0))
.catch(e => {
console.error(e);
process.exit(1);
});