UNPKG

bnpl

Version:

The smart contracts for bnpl

17 lines (14 loc) 475 B
import { HardhatRuntimeEnvironment } from "hardhat/types" import { DeployFunction } from "hardhat-deploy/types" const func: DeployFunction = async function (hre: HardhatRuntimeEnvironment) { const { deployments, getNamedAccounts } = hre const { deploy } = deployments const { deployer } = await getNamedAccounts() await deploy("TestERC721", { from: deployer, log: true, skipIfAlreadyDeployed: true, }) } export default func func.tags = ["TestERC721"]