From f9661e2b92ad745559da1814de0e8b580a0e2409 Mon Sep 17 00:00:00 2001 From: Oleg Date: Sun, 1 Dec 2024 20:30:39 +0000 Subject: [PATCH] upd tests paths --- test/hardhat/CompleteWithdrawal.ts | 2 -- test/hardhat/StartTransaction.ts | 3 --- 2 files changed, 5 deletions(-) diff --git a/test/hardhat/CompleteWithdrawal.ts b/test/hardhat/CompleteWithdrawal.ts index 773127de..2546ac2e 100644 --- a/test/hardhat/CompleteWithdrawal.ts +++ b/test/hardhat/CompleteWithdrawal.ts @@ -1,4 +1,3 @@ -import { Concero } from "../typechain-types"; import "@nomicfoundation/hardhat-chai-matchers"; import { WalletClient } from "viem/clients/createWalletClient"; import { HttpTransport } from "viem/clients/transports/http"; @@ -18,7 +17,6 @@ const lpTokenAddress = process.env.LPTOKEN_BASE_SEPOLIA as Address; const poolAddress = process.env.PARENT_POOL_PROXY_BASE_SEPOLIA as Address; describe("complete withdraw usdc from pool\n", async () => { - let Concero: Concero; const { abi: ParentPoolAbi } = await import("../../artifacts/contracts/ParentPool.sol/ParentPool.json"); let srcPublicClient: PublicClient = createPublicClient({ diff --git a/test/hardhat/StartTransaction.ts b/test/hardhat/StartTransaction.ts index 987802a1..1d246341 100644 --- a/test/hardhat/StartTransaction.ts +++ b/test/hardhat/StartTransaction.ts @@ -1,4 +1,3 @@ -import { Concero } from "../typechain-types"; import "@nomicfoundation/hardhat-chai-matchers"; import { WalletClient } from "viem/clients/createWalletClient"; import { HttpTransport } from "viem/clients/transports/http"; @@ -8,7 +7,6 @@ import { RpcSchema } from "viem/types/eip1193"; import { privateKeyToAccount } from "viem/accounts"; import { Address, createPublicClient, createWalletClient, decodeEventLog, http, PrivateKeyAccount } from "viem"; import { arbitrumSepolia, base, baseSepolia, optimismSepolia, polygon, polygonAmoy } from "viem/chains"; - import { PublicClient } from "viem/clients/createPublicClient"; import ierc20Abi from "@chainlink/contracts/abi/v0.8/IERC20.json"; @@ -59,7 +57,6 @@ describe("startBatchTransactions\n", async () => { "../../artifacts/contracts/InfraOrchestrator.sol/InfraOrchestrator.json" ); - let Concero: Concero; let srcPublicClient: PublicClient = createPublicClient({ chain: chainsMap[srcChainSelector].viemChain, transport: chainsMap[srcChainSelector].viemTransport,