13 lines
325 B
JavaScript
13 lines
325 B
JavaScript
/* 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);
|
|
}
|