mirror of
https://github.com/autistic-symposium/blockchains-security-toolkit.git
synced 2025-05-18 06:30:22 -04:00
🍟 github vscode is so cool
This commit is contained in:
parent
0931961978
commit
5b8de9dc6d
21 changed files with 16 additions and 1 deletions
|
@ -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);
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue