From 4c2c643ac349690045939b72eb362e207c096fd6 Mon Sep 17 00:00:00 2001 From: Ryan Goree Date: Thu, 28 Nov 2024 22:07:27 -0600 Subject: [PATCH] Fix imports in test --- packages/drift/src/adapter/OxAdapter.test.ts | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/packages/drift/src/adapter/OxAdapter.test.ts b/packages/drift/src/adapter/OxAdapter.test.ts index 93df20e2..f6898fee 100644 --- a/packages/drift/src/adapter/OxAdapter.test.ts +++ b/packages/drift/src/adapter/OxAdapter.test.ts @@ -1,13 +1,15 @@ +import { OxAdapter } from "src/adapter/OxAdapter"; +import type { Address as AddressType } from "src/adapter/types/Abi"; +import type { Block } from "src/adapter/types/Block"; +import type { EventLog } from "src/adapter/types/Event"; import type { - Block, DecodedFunctionData, FunctionArgs, +} from "src/adapter/types/Function"; +import type { Transaction, TransactionReceipt, -} from "@delvtech/drift"; -import { OxAdapter } from "src/adapter/OxAdapter"; -import type { Address as AddressType } from "src/adapter/types/Abi"; -import type { EventLog } from "src/adapter/types/Event"; +} from "src/adapter/types/Transaction"; import { ZERO_ADDRESS } from "src/constants"; import { erc20 } from "src/utils/testing/erc20"; import { describe, expect, it } from "vitest";