becrypto/migrations/13_deploy_nft_mall.js
2023-01-11 18:04:28 +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.");
}
};