becrypto/migrations/14_deploy_nftchip_locker.js
2023-01-11 18:04:28 +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.");
}
};