Skip to content

Commit ff354a6

Browse files
authored
Jd/cleanups (#2770)
1 parent 8197b3c commit ff354a6

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

packages/thirdweb/src/exports/extensions/erc721.ts

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,10 +78,7 @@ export {
7878
setTokenURI,
7979
type SetTokenURIParams,
8080
} from "../../extensions/erc721/__generated__/INFTMetadata/write/setTokenURI.js";
81-
export {
82-
lazyMint,
83-
type LazyMintParams,
84-
} from "../../extensions/erc721/write/lazyMint.js";
81+
8582
/**
8683
* EVENTS extension for ERC721
8784
*/
@@ -103,6 +100,14 @@ export {
103100
claimTo,
104101
type ClaimToParams,
105102
} from "../../extensions/erc721/drops/write/claimTo.js";
103+
export {
104+
lazyMint,
105+
type LazyMintParams,
106+
} from "../../extensions/erc721/write/lazyMint.js";
107+
export {
108+
setClaimConditions,
109+
type SetClaimConditionsParams,
110+
} from "../../extensions/erc721/drops/write/setClaimConditions.js";
106111

107112
/**
108113
* SIGNATURE extension for ERC721

packages/thirdweb/src/extensions/permissions/permissions.test.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ describe.runIf(process.env.TW_SECRET_KEY)("Permissions", () => {
3131
chain: ANVIL_CHAIN,
3232
client: TEST_CLIENT,
3333
});
34-
});
34+
// this deploys a contract, it may take some time
35+
}, 60_000);
3536

3637
it("should check if the target account has the role", async () => {
3738
// after deployment the deployer should have the admin role

0 commit comments

Comments
 (0)