const NftMall = artifacts.require("market/BENftMall"); module.exports = async function (deployer, network, accounts) { await deployer.deploy(NftMall); const mallInstance = await NftMall.deployed(); if (mallInstance) { console.log("BENftMall successfully deployed."); } };