2022-09-01 14:44:06 +00:00
|
|
|
import { DeployFunction } from 'hardhat-deploy/dist/types';
|
|
|
|
|
|
|
|
const deployFunc: DeployFunction = async ({ getNamedAccounts, deployments, getChainId }) => {
|
|
|
|
const { deploy } = deployments;
|
|
|
|
const { deployer } = await getNamedAccounts();
|
2022-10-19 10:05:23 +00:00
|
|
|
await deploy('NFTMetadata', {
|
2022-09-01 14:44:06 +00:00
|
|
|
from: deployer,
|
|
|
|
args: [],
|
|
|
|
log: true,
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2022-10-19 10:05:23 +00:00
|
|
|
const tags = ['NFTMetadata'];
|
2022-09-01 14:44:06 +00:00
|
|
|
|
|
|
|
export default deployFunc;
|
|
|
|
export { tags };
|