const Factory = artifacts.require('MinterFactory'); module.exports = async function (deployer, network, accounts) { await deployer.deploy(Factory); const factoryInstance = await Factory.deployed(); if(factoryInstance) { console.log("Mint Factory successfully deployed.") } }