Skip to content

Commit 6500b3d

Browse files
committed
Fix knip lint
1 parent 9ed4e64 commit 6500b3d

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

packages/thirdweb/src/assets/constants.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ export const DEFAULT_REFERRER_REWARD_BPS = 5000; // 50%
44
export const DEFAULT_INFRA_ADMIN = "0x1a472863cf21d5aa27f417df9140400324c48f22";
55
export const DEFAULT_FEE_RECIPIENT =
66
"0x1Af20C6B23373350aD464700B5965CE4B0D2aD94";
7-
export const DEFAULT_SALT = "0x";
87

98
export const IMPLEMENTATIONS: Record<number, Record<string, string>> = {
109
8453: {
Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,21 @@
1+
export {
2+
DEFAULT_FEE_RECIPIENT,
3+
DEFAULT_INFRA_ADMIN,
4+
} from "../assets/constants.js";
15
export { createToken } from "../assets/create-token.js";
26
export { createTokenByImplementationConfig } from "../assets/create-token-by-impl-config.js";
7+
export { deployInfraProxy } from "../assets/deploy-infra-proxy.js";
38
export { distributeToken } from "../assets/distribute-token.js";
49
export { getDeployedEntrypointERC20 } from "../assets/get-entrypoint-erc20.js";
10+
export { getOrDeployERC20AssetImpl } from "../assets/get-erc20-asset-impl.js";
11+
export { getInitCodeHashERC1967 } from "../assets/get-initcode-hash-1967.js";
512
export { isRouterEnabled } from "../assets/is-router-enabled.js";
613
export type {
7-
CreateTokenOptions,
814
CreateTokenByImplementationConfigOptions,
15+
CreateTokenOptions,
916
DistributeContent,
1017
MarketConfig,
1118
PoolConfig,
1219
TokenParams,
1320
} from "../assets/types.js";
21+
export { getInitBytecodeWithSalt } from "../utils/any-evm/get-init-bytecode-with-salt.js";

0 commit comments

Comments
 (0)