bom-contracts/deploy/02_nft.ts
2022-09-01 17:44:06 +03:00

17 lines
408 B
TypeScript

import { DeployFunction } from 'hardhat-deploy/dist/types';
const deployFunc: DeployFunction = async ({ getNamedAccounts, deployments, getChainId }) => {
const { deploy } = deployments;
const { deployer } = await getNamedAccounts();
await deploy('NFT', {
from: deployer,
args: [],
log: true,
});
};
const tags = ['NFT'];
export default deployFunc;
export { tags };