token-gallery-contracts/migrations/4_diamondloupefacet_migrati...

13 lines
349 B
JavaScript
Raw Normal View History

2025-01-18 12:44:49 +00:00
/* eslint-disable prefer-const */
/* global artifacts */
module.exports = async function (deployer, network, accounts) {
const LibDiamond = artifacts.require('LibDiamond');
const DiamondLoupeFacet = artifacts.require('DiamondLoupeFacet');
await deployer.link(LibDiamond, DiamondLoupeFacet);
await deployer.deploy(DiamondLoupeFacet);
}