becrypto/migrations/7_deploy_market.js
2022-04-16 08:23:15 +08:00

9 lines
294 B
JavaScript

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