organizing directories

This commit is contained in:
bt3gl 2022-04-12 02:15:14 +04:00
parent fef58f8b85
commit 704297afbd
13 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);
});