add_files

This commit is contained in:
mvonsteinkirch 2022-12-24 20:32:16 -08:00
parent 6a1272df4c
commit fb77004daf
22 changed files with 1226 additions and 2 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);
});