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