Skip to content

Commit cab1f44

Browse files
committed
Fix lint
1 parent 8d4bd1d commit cab1f44

File tree

2 files changed

+19
-9
lines changed

2 files changed

+19
-9
lines changed

packages/thirdweb/src/assets/create-token.test.ts

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { TEST_CLIENT } from "../../test/src/test-clients.js";
44
import { TEST_ACCOUNT_A } from "../../test/src/test-wallets.js";
55
import { getContract } from "../contract/contract.js";
66
import { name } from "../extensions/common/read/name.js";
7-
import { totalSupply } from "../extensions/erc20/__generated__/IERC20/read/totalSupply.js";
7+
// import { totalSupply } from "../extensions/erc20/__generated__/IERC20/read/totalSupply.js";
88
import { createTokenByImplConfig } from "./create-token-by-impl-config.js";
99

1010
describe.runIf(process.env.TW_SECRET_KEY)("create token by impl config", () => {
@@ -31,14 +31,14 @@ describe.runIf(process.env.TW_SECRET_KEY)("create token by impl config", () => {
3131
});
3232
expect(tokenName).to.eq("Test");
3333

34-
const supply = await totalSupply({
35-
contract: getContract({
36-
client: TEST_CLIENT,
37-
chain: ANVIL_CHAIN,
38-
address: token,
39-
}),
40-
});
34+
// const supply = await totalSupply({
35+
// contract: getContract({
36+
// client: TEST_CLIENT,
37+
// chain: ANVIL_CHAIN,
38+
// address: token,
39+
// }),
40+
// });
4141

42-
console.log("supply: ", supply);
42+
// console.log("supply: ", supply);
4343
});
4444
});

packages/thirdweb/src/assets/index.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
export {
2+
deployRouter,
3+
deployRewardLocker,
4+
deployFeeManager,
5+
deployAssetFactory,
6+
getDeployedRouter,
7+
getDeployedRewardLocker,
8+
getDeployedFeeManager,
9+
getDeployedAssetFactory,
10+
} from "./bootstrap.js";
111
export { createToken } from "./create-token.js";
212
export { createTokenByImplConfig } from "./create-token-by-impl-config.js";
313
export { distributeToken } from "./distribute-token.js";

0 commit comments

Comments
 (0)