token-gallery-contracts/migrations/2_controlfacet_migration.js

13 lines
328 B
JavaScript
Raw Permalink 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 LibControl = artifacts.require('LibControl');
const ControlFacet = artifacts.require('ControlFacet');
await deployer.link(LibControl, ControlFacet);
await deployer.deploy(ControlFacet)
}