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