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