becrypto/migrations/11_deploy_box.js
2023-11-28 11:14:31 +08:00

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.");
// }
};