/* eslint-disable prefer-const */ /* global artifacts */ module.exports = async function (deployer, network, accounts) { const LibDiamond = artifacts.require('LibDiamond'); const ERC165Facet = artifacts.require('ERC165Facet'); await deployer.link(LibDiamond, ERC165Facet); await deployer.deploy(ERC165Facet); }