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