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