mirror of
https://github.com/autistic-symposium/mev-toolkit.git
synced 2025-04-28 11:46:13 -04:00
15 lines
388 B
JavaScript
15 lines
388 B
JavaScript
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);
|
|
});
|