const Hero = artifacts.require('CryptoHero'); module.exports = async function (deployer) { await deployer.deploy(Hero, "CryptoHero", "JC"); const instance = await Hero.deployed(); if(instance) { console.log("CryptoHero successfully deployed.") } };