becrypto/migrations/9_deploy_market.js

9 lines
301 B
JavaScript

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