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