/* 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); }