async function main()

in contract/scripts/deploy.js [3:9]


async function main () {
  const SimpleERC721 = await ethers.getContractFactory('SimpleERC721');
  const simpleERC721 = await SimpleERC721.deploy();
  await simpleERC721.deployed();

  console.log('Contract deployed at', simpleERC721.address);
}