token-gallery-contracts/migrations/6_erc165facet_migration.js

13 lines
325 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 ERC165Facet = artifacts.require('ERC165Facet');
await deployer.link(LibDiamond, ERC165Facet);
await deployer.deploy(ERC165Facet);
}