12 lines
366 B
JavaScript
12 lines
366 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.");
|
|
}
|
|
};
|