You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
426 B
TypeScript

import { ethers } from "hardhat";
async function main() {
const Git3 = await ethers.getContractFactory("Git3");
const git3 = await Git3.deploy();
let receipt = await git3.deployed();
2 years ago
console.log(receipt);
2 years ago
console.log(git3.address);
}
// We recommend this pattern to be able to use async/await everywhere
// and properly handle errors.
main().catch((error) => {
console.error(error);
process.exitCode = 1;
});