const EvolveFactory = artifacts.require('logic/EvolveFactory'); module.exports = async function (deployer, network, accounts) { await deployer.deploy(EvolveFactory); const proxyInstance = await EvolveFactory.deployed(); if(proxyInstance) { console.log("EvolveFactory successfully deployed.") } }