becrypto/migrations/6_deploy_chip.js
2022-08-12 16:42:05 +08:00

11 lines
321 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.")
}
}