bom-contracts/deploy/01_furnace.ts

17 lines
415 B
TypeScript
Raw Permalink Normal View History

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