14 lines
485 B
JavaScript
14 lines
485 B
JavaScript
const Box = artifacts.require("tokens/erc721/BEPresaleBox");
|
|
|
|
|
|
module.exports = async function (deployer, network, accounts) {
|
|
// const config = require(`../config/config_${network}`);
|
|
// await deployer.deploy(Box);
|
|
// const boxInstance = await Box.deployed();
|
|
// if (boxInstance) {
|
|
// console.log("BEPresaleBox successfully deployed.");
|
|
// }
|
|
// await boxInstance.updateBaseURI(config.token.baseTokenURI);
|
|
// await boxInstance.setMintFactory(config.admins.admin);
|
|
};
|