16 lines
381 B
JavaScript
16 lines
381 B
JavaScript
const Box = artifacts.require('market/BEBoxMall');
|
|
|
|
const config = require("../config/config");
|
|
|
|
module.exports = async function (deployer, network, accounts) {
|
|
await deployer.deploy(
|
|
Box,
|
|
config.admins.proposers,
|
|
config.admins.executors
|
|
);
|
|
const boxInstance = await Box.deployed();
|
|
if(boxInstance) {
|
|
console.log("BEBoxMall successfully deployed.")
|
|
}
|
|
}
|