Skip to content

Commit

Permalink
remove unecessary build artefacts
Browse files Browse the repository at this point in the history
  • Loading branch information
allan-almeida-imtbl committed Dec 13, 2023
1 parent f116b9b commit ec9d449
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
7 changes: 5 additions & 2 deletions clients/erc721-mint-by-id.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
import type { BigNumber, BigNumberish, BytesLike, CallOverrides, Overrides, PopulatedTransaction } from "ethers";
import type { Provider } from "@ethersproject/providers";

import { ImmutableERC721MintByID, ImmutableERC721MintByID__factory } from "../typechain-types";
import { ImmutableERC721Base } from "../typechain-types/contracts/token/erc721/preset/ImmutableERC721MintByID";
import { ImmutableERC721MintByID__factory } from "../typechain-types/factories/contracts/token/erc721/preset/ImmutableERC721MintByID__factory";
import {
ImmutableERC721Base,
ImmutableERC721MintByID,
} from "../typechain-types/contracts/token/erc721/preset/ImmutableERC721MintByID";
import { PromiseOrValue } from "../typechain-types/common";
import { defaultGasOverrides } from "./config/overrides";

Expand Down
4 changes: 2 additions & 2 deletions clients/erc721.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import type { BigNumber, BigNumberish, BytesLike, CallOverrides, Overrides, PopulatedTransaction } from "ethers";
import type { Provider } from "@ethersproject/providers";

import { ImmutableERC721, ImmutableERC721__factory } from "../typechain-types";
import { ERC721Hybrid } from "../typechain-types/contracts/token/erc721/preset/ImmutableERC721";
import { ImmutableERC721__factory } from "../typechain-types/factories/contracts/token/erc721/preset/ImmutableERC721__factory";
import { ImmutableERC721, ERC721Hybrid } from "../typechain-types/contracts/token/erc721/preset/ImmutableERC721";
import { PromiseOrValue } from "../typechain-types/common";
import { defaultGasOverrides } from "./config/overrides";

Expand Down
3 changes: 1 addition & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,5 @@
"resolveJsonModule": true,
"skipLibCheck": true
},
"include": ["./scripts", "./typechain", "./clients", "./test", "./index.ts", "./deploy"],
"files": ["./hardhat.config.ts"]
"include": ["./index.ts"]
}

0 comments on commit ec9d449

Please sign in to comment.