becrypto/migrations/10_deploy_market.js
2023-01-11 18:04:28 +08:00

10 lines
305 B
JavaScript

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