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