becrypto/migrations/13_deploy_nftchip_locker.js
2022-11-04 13:50:24 +08:00

10 lines
314 B
JavaScript

const NftChipLocker = artifacts.require("logic/NftChipLocker");
module.exports = async function (deployer, network, accounts) {
await deployer.deploy(NftChipLocker);
const lockerInstance = await NftChipLocker.deployed();
if (lockerInstance) {
console.log("NftChipLocker successfully deployed.");
}
};