Skip to content

Commit

Permalink
Fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
lfportal committed Mar 26, 2024
1 parent bb6b831 commit 134439d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion test/trading/seaport/immutableseaport.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import { ethers, network } from "hardhat";
import { randomBytes } from "crypto";

import type { ImmutableSeaport, ImmutableSignedZone, TestERC721 } from "../../typechain-types";
import type { ImmutableSeaport, ImmutableSignedZone, TestERC721 } from "../../../typechain-types";
import { constants } from "ethers";
import type { Wallet, BigNumber, BigNumberish } from "ethers";
import { deployImmutableContracts } from "./utils/deploy-immutable-contracts";
Expand Down
2 changes: 1 addition & 1 deletion test/trading/seaport/utils/deploy-immutable-contracts.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import hre from "hardhat";
import { ImmutableSeaport, ImmutableSignedZone } from "../../../typechain-types";
import { ImmutableSeaport, ImmutableSignedZone } from "../../../../typechain-types";

// Deploy the Immutable ecosystem contracts, returning the contract
// references
Expand Down
4 changes: 2 additions & 2 deletions test/trading/seaport/utils/erc721.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ import hre from "hardhat";

import { getOfferOrConsiderationItem, randomBN } from "./encoding";

import type { TestERC721 } from "../../../typechain-types";
import type { TestERC721 } from "../../../../typechain-types";
import type { BigNumberish, BigNumber, Contract, Wallet } from "ethers";

export async function deployERC721(): Promise<TestERC721> {
const erc721Factory = await hre.ethers.getContractFactory("TestERC721");
const erc721 = await erc721Factory.deploy();
const erc721 = (await erc721Factory.deploy()) as TestERC721;
return erc721.deployed();
}

Expand Down
4 changes: 2 additions & 2 deletions test/trading/seaport/utils/order.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ import { calculateOrderHash, convertSignatureToEIP2098, randomHex, toBN } from "

import type { ConsiderationItem, OfferItem, OrderComponents } from "./types";
import type { Contract, Wallet } from "ethers";
import { ImmutableSeaport, TestZone } from "../../../typechain-types";
import { ImmutableSeaport, TestZone } from "../../../../typechain-types";
import { getBulkOrderTree } from "./eip712/bulk-orders";
import { ReceivedItemStruct } from "../../../typechain-types/contracts/ImmutableSeaport";
import { ReceivedItemStruct } from "../../../../typechain-types/contracts/trading/seaport/ImmutableSeaport";
import { CONSIDERATION_EIP712_TYPE, EIP712_DOMAIN, SIGNED_ORDER_EIP712_TYPE, getCurrentTimeStamp } from "./signedZone";

const orderType = {
Expand Down

0 comments on commit 134439d

Please sign in to comment.