const Shard = artifacts.require("chip1155/BEShard"); module.exports = async function (deployer, network, accounts) { await deployer.deploy(Shard); const shardInstance = await Shard.deployed(); if (shardInstance) { console.log("Shard 1155 successfully deployed."); } };