becrypto/migrations/12_deploy_nft_mall.js
2022-10-19 16:46:51 +08:00

10 lines
285 B
JavaScript

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.");
}
};