add some files from my computer

This commit is contained in:
bt3gl 2022-04-04 22:30:30 +04:00
parent 44874369f1
commit 33411f9bc4
12 changed files with 318 additions and 25 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);
});