becrypto/migrations/7_deploy_chip.js
2023-01-11 18:04:28 +08:00

11 lines
324 B
JavaScript

const Chip = artifacts.require("tokens/erc1155/BEChip1155");
const config = require("../config/config");
module.exports = async function (deployer, network, accounts) {
await deployer.deploy(Chip);
const chipInstance = await Chip.deployed();
if (chipInstance) {
console.log("Chip successfully deployed.");
}
};