Crypto-Birdies/migrations/3_MarketPlace_migration.js
2021-12-07 15:36:30 +08:00

10 lines
343 B
JavaScript

const CryptoBirdies = artifacts.require("CryptoBirdies");
const MarketPlace = artifacts.require("MarketPlace");
module.exports = async function(deployer) {
await deployer.deploy(MarketPlace, CryptoBirdies.address);
const instance = await MarketPlace.deployed();
if(instance) {
console.log("MarketPlace successfully deployed.")
}
}