Skip to content

Commit

Permalink
remove unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
fadeev committed Nov 7, 2024
1 parent 14dd3e2 commit 73347ae
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion examples/nft/tasks/connectedSetCounterparty.ts
Original file line number Diff line number Diff line change
@@ -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();
Expand Down
2 changes: 1 addition & 1 deletion examples/nft/tasks/deploy.ts
Original file line number Diff line number Diff line change
@@ -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) => {
Expand Down
1 change: 0 additions & 1 deletion examples/nft/tasks/mint.ts
Original file line number Diff line number Diff line change
@@ -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();
Expand Down

0 comments on commit 73347ae

Please sign in to comment.