-
Notifications
You must be signed in to change notification settings - Fork 518
Open
Description
const hre = require("hardhat");
async function main() {
// کنٹریکٹ کو حاصل کرنا
const HelloWorld = await hre.ethers.getContractFactory("HelloWorld");
// کنٹریکٹ کو لائیو کرنا
const helloWorld = await HelloWorld.deploy();
await helloWorld.deployed();
console.log("HelloWorld contract deployed to:", helloWorld.address);
}
main().catch((error) => {
console.error(error);
process.exitCode = 1;
});
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels