10grans-ng/scripts/deploy.ts

13 lines
261 B
TypeScript

import { ethers } from "hardhat";
async function main() {
// Do stuff here.
}
// 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;
});