Skip to content

Commit

Permalink
lint:fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanio committed Apr 1, 2024
1 parent 37fba07 commit c8b95bb
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion test/ERC1155SeaDrop-mintAllowList.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ import {
} from "./utils/helpers";
import { MintType, createMintOrder } from "./utils/order";

import type { AwaitedObject } from "./utils/helpers";
import type {
ConsiderationInterface,
ERC1155SeaDrop,
IERC1155SeaDrop,
} from "../typechain-types";
import type { MintParamsStruct } from "../typechain-types/src/shim/Shim2";
import type { AwaitedObject } from "./utils/helpers";
import type { Wallet } from "ethers";

const { AddressZero, HashZero } = ethers.constants;
Expand Down
2 changes: 1 addition & 1 deletion test/ERC1155SeaDrop-mintPublic.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ import {
} from "./utils/helpers";
import { MintType, createMintOrder } from "./utils/order";

import type { AwaitedObject } from "./utils/helpers";
import type {
ConsiderationInterface,
ERC1155SeaDrop,
IERC1155SeaDrop,
} from "../typechain-types";
import type { PublicDropStruct } from "../typechain-types/src/ERC1155SeaDrop";
import type { AwaitedObject } from "./utils/helpers";
import type { Wallet } from "ethers";

const { AddressZero, HashZero } = ethers.constants;
Expand Down
2 changes: 1 addition & 1 deletion test/ERC1155SeaDrop-mintSigned.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ import {
} from "./utils/helpers";
import { MintType, createMintOrder } from "./utils/order";

import type { AwaitedObject } from "./utils/helpers";
import type {
ConsiderationInterface,
ERC1155SeaDrop,
IERC1155SeaDrop,
} from "../typechain-types";
import type { MintParamsStruct } from "../typechain-types/src/shim/Shim2";
import type { AwaitedObject } from "./utils/helpers";
import type { Wallet } from "ethers";

const { AddressZero, HashZero } = ethers.constants;
Expand Down
4 changes: 2 additions & 2 deletions test/ERC1155SeaDropContractOfferer.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ import { faucet } from "./utils/faucet";
import { VERSION, deployERC1155SeaDrop, setConduit } from "./utils/helpers";
import { MintType, createMintOrder, expectedPrice } from "./utils/order";

import type { SeaportFixtures } from "./seaport-utils/fixtures";
import type { AwaitedObject } from "./utils/helpers";
import type {
ConsiderationInterface,
ERC1155SeaDrop,
Expand All @@ -28,8 +30,6 @@ import type {
} from "../typechain-types";
import type { PublicDropStruct } from "../typechain-types/src/ERC1155SeaDrop";
import type { AllowListDataStruct } from "../typechain-types/src/shim/Shim";
import type { SeaportFixtures } from "./seaport-utils/fixtures";
import type { AwaitedObject } from "./utils/helpers";
import type { Wallet } from "ethers";

const { BigNumber } = ethers;
Expand Down
2 changes: 1 addition & 1 deletion test/ERC721SeaDrop-mintAllowList.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ import {
} from "./utils/helpers";
import { MintType, createMintOrder } from "./utils/order";

import type { AwaitedObject } from "./utils/helpers";
import type {
ConsiderationInterface,
ERC721SeaDrop,
IERC721SeaDrop,
} from "../typechain-types";
import type { MintParamsStruct } from "../typechain-types/src/shim/Shim";
import type { AwaitedObject } from "./utils/helpers";
import type { Wallet } from "ethers";

const { AddressZero, HashZero } = ethers.constants;
Expand Down
2 changes: 1 addition & 1 deletion test/ERC721SeaDrop-mintPublic.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ import {
} from "./utils/helpers";
import { MintType, createMintOrder } from "./utils/order";

import type { AwaitedObject } from "./utils/helpers";
import type {
ConsiderationInterface,
ERC721SeaDrop,
IERC721SeaDrop,
} from "../typechain-types";
import type { PublicDropStruct } from "../typechain-types/src/ERC721SeaDrop";
import type { AwaitedObject } from "./utils/helpers";
import type { Wallet } from "ethers";

const { AddressZero, HashZero } = ethers.constants;
Expand Down
2 changes: 1 addition & 1 deletion test/ERC721SeaDrop-mintSigned.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ import {
} from "./utils/helpers";
import { MintType, createMintOrder } from "./utils/order";

import type { AwaitedObject } from "./utils/helpers";
import type {
ConsiderationInterface,
ERC721SeaDrop,
IERC721SeaDrop,
} from "../typechain-types";
import type { MintParamsStruct } from "../typechain-types/src/shim/Shim";
import type { AwaitedObject } from "./utils/helpers";
import type { Wallet } from "ethers";

const { AddressZero, HashZero } = ethers.constants;
Expand Down
4 changes: 2 additions & 2 deletions test/ERC721SeaDropContractOfferer.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ import {
import { whileImpersonating } from "./utils/impersonate";
import { MintType, createMintOrder, expectedPrice } from "./utils/order";

import type { SeaportFixtures } from "./seaport-utils/fixtures";
import type { AwaitedObject } from "./utils/helpers";
import type {
ConsiderationInterface,
ERC721SeaDrop,
Expand All @@ -34,8 +36,6 @@ import type {
} from "../typechain-types";
import type { PublicDropStruct } from "../typechain-types/src/ERC721SeaDrop";
import type { AllowListDataStruct } from "../typechain-types/src/shim/Shim";
import type { SeaportFixtures } from "./seaport-utils/fixtures";
import type { AwaitedObject } from "./utils/helpers";
import type { Wallet } from "ethers";

const { BigNumber } = ethers;
Expand Down
2 changes: 1 addition & 1 deletion test/utils/order.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { toBN } from "../seaport-utils/encoding";

import { toPaddedBuffer } from "./encoding";

import type { AwaitedObject } from "./helpers";
import type {
ERC1155SeaDrop,
ERC721SeaDrop,
Expand All @@ -14,7 +15,6 @@ import type {
import type { MintParamsStruct as MintParamsStruct721 } from "../../typechain-types/src/shim/Shim";
import type { MintParamsStruct as MintParamsStruct1155 } from "../../typechain-types/src/shim/Shim2";
import type { AdvancedOrder, OrderParameters } from "../seaport-utils/types";
import type { AwaitedObject } from "./helpers";
import type { BigNumberish, Wallet } from "ethers";

const { AddressZero, HashZero } = ethers.constants;
Expand Down

0 comments on commit c8b95bb

Please sign in to comment.