Skip to content

Commit

Permalink
Fix imports in test
Browse files Browse the repository at this point in the history
  • Loading branch information
ryangoree committed Nov 29, 2024
1 parent 5af122f commit 4c2c643
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions packages/drift/src/adapter/OxAdapter.test.ts
Original file line number Diff line number Diff line change
@@ -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";
Expand Down

0 comments on commit 4c2c643

Please sign in to comment.