From 73347ae6472032deaf2f340554bcf73a2da4f5a2 Mon Sep 17 00:00:00 2001 From: Denis Fadeev Date: Thu, 7 Nov 2024 11:25:43 +0300 Subject: [PATCH] remove unused imports --- examples/nft/tasks/connectedSetCounterparty.ts | 1 - examples/nft/tasks/deploy.ts | 2 +- examples/nft/tasks/mint.ts | 1 - 3 files changed, 1 insertion(+), 3 deletions(-) diff --git a/examples/nft/tasks/connectedSetCounterparty.ts b/examples/nft/tasks/connectedSetCounterparty.ts index d9bec15b..4bf28e91 100644 --- a/examples/nft/tasks/connectedSetCounterparty.ts +++ b/examples/nft/tasks/connectedSetCounterparty.ts @@ -1,6 +1,5 @@ import { task } from "hardhat/config"; import { HardhatRuntimeEnvironment } from "hardhat/types"; -import { ethers } from "ethers"; const main = async (args: any, hre: HardhatRuntimeEnvironment) => { const [signer] = await hre.ethers.getSigners(); diff --git a/examples/nft/tasks/deploy.ts b/examples/nft/tasks/deploy.ts index 54ea346c..72cbc67b 100644 --- a/examples/nft/tasks/deploy.ts +++ b/examples/nft/tasks/deploy.ts @@ -1,4 +1,4 @@ -import { task, types } from "hardhat/config"; +import { task } from "hardhat/config"; import { HardhatRuntimeEnvironment } from "hardhat/types"; const main = async (args: any, hre: HardhatRuntimeEnvironment) => { diff --git a/examples/nft/tasks/mint.ts b/examples/nft/tasks/mint.ts index 515ba6bb..30458166 100644 --- a/examples/nft/tasks/mint.ts +++ b/examples/nft/tasks/mint.ts @@ -1,6 +1,5 @@ import { task } from "hardhat/config"; import { HardhatRuntimeEnvironment } from "hardhat/types"; -import { ethers } from "ethers"; const main = async (args: any, hre: HardhatRuntimeEnvironment) => { const [signer] = await hre.ethers.getSigners();