Skip to content

Commit f9d79bb

Browse files
authored
expose cache size env var (#858)
* expose cache size env var * fix typo
1 parent 13968f7 commit f9d79bb

10 files changed

+18
-10
lines changed

src/shared/db/wallet-credentials/get-wallet-credential.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export type ParsedWalletCredential = z.infer<typeof walletCredentialsSchema>;
2929
export const walletCredentialsCache = new LRUMap<
3030
string,
3131
ParsedWalletCredential
32-
>(2048);
32+
>(env.ACCOUNT_CACHE_SIZE);
3333

3434
interface GetWalletCredentialParams {
3535
id: string;

src/shared/db/wallets/get-wallet-details.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ export type SmartBackendWalletType = (typeof SmartBackendWalletTypes)[number];
151151
export type BackendWalletType = (typeof BackendWalletTypes)[number];
152152
export type ParsedWalletDetails = z.infer<typeof walletDetailsSchema>;
153153

154-
export const walletDetailsCache = new LRUMap<string, ParsedWalletDetails>(2048);
154+
export const walletDetailsCache = new LRUMap<string, ParsedWalletDetails>(env.ACCOUNT_CACHE_SIZE);
155155
/**
156156
* Return the wallet details for the given address.
157157
*

src/shared/utils/account.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,9 @@ import { thirdwebClient } from "./sdk";
2121
import { getWalletCredential } from "../db/wallet-credentials/get-wallet-credential";
2222
import { getCircleAccount } from "../../server/utils/wallets/circle";
2323
import { getConfig } from "./cache/get-config";
24+
import { env } from "./env";
2425

25-
export const _accountsCache = new LRUMap<string, Account>(2048);
26+
export const _accountsCache = new LRUMap<string, Account>(env.ACCOUNT_CACHE_SIZE);
2627

2728
export const getAccount = async (args: {
2829
chainId: number;
@@ -212,7 +213,7 @@ export const walletDetailsToAccount = async ({
212213
}
213214
};
214215

215-
export const _adminAccountsCache = new LRUMap<string, Account>(2048);
216+
export const _adminAccountsCache = new LRUMap<string, Account>(env.ACCOUNT_CACHE_SIZE);
216217

217218
/**
218219
* Get the admin account for a smart backend wallet (cached)

src/shared/utils/cache/access-token.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
import type { Tokens } from "@prisma/client";
22
import LRUMap from "mnemonist/lru-map";
33
import { getToken } from "../../db/tokens/get-token";
4+
import { env } from "../env";
45

56
// Cache an access token JWT to the token object, or null if not found.
6-
export const accessTokenCache = new LRUMap<string, Tokens | null>(2048);
7+
export const accessTokenCache = new LRUMap<string, Tokens | null>(env.ACCOUNT_CACHE_SIZE);
78

89
interface GetAccessTokenParams {
910
jwt: string;

src/shared/utils/cache/get-sdk.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { getChain } from "../chain";
77
import { env } from "../env";
88
import { getWallet } from "./get-wallet";
99

10-
export const sdkCache = new LRUMap<string, ThirdwebSDK>(2048);
10+
export const sdkCache = new LRUMap<string, ThirdwebSDK>(env.ACCOUNT_CACHE_SIZE);
1111

1212
export const networkResponseSchema = Type.Object({
1313
name: Type.String({

src/shared/utils/cache/get-smart-wallet-v5.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,9 @@ import { getContract, readContract, type Address, type Chain } from "thirdweb";
33
import { smartWallet, type Account } from "thirdweb/wallets";
44
import { getAccount } from "../account";
55
import { thirdwebClient } from "../sdk";
6+
import { env } from "../env";
67

7-
export const smartWalletsCache = new LRUMap<string, Account>(2048);
8+
export const smartWalletsCache = new LRUMap<string, Account>(env.ACCOUNT_CACHE_SIZE);
89

910
interface SmartWalletParams {
1011
chain: Chain;

src/shared/utils/cache/get-wallet.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,9 @@ import { splitAwsKmsArn } from "../../../server/utils/wallets/aws-kms-arn";
1414
import { splitGcpKmsResourcePath } from "../../../server/utils/wallets/gcp-kms-resource-path";
1515
import { getLocalWallet } from "../../../server/utils/wallets/get-local-wallet";
1616
import { getSmartWallet } from "../../../server/utils/wallets/get-smart-wallet";
17+
import { env } from "../env";
1718

18-
export const walletsCache = new LRUMap<string, EVMWallet>(2048);
19+
export const walletsCache = new LRUMap<string, EVMWallet>(env.ACCOUNT_CACHE_SIZE);
1920

2021
interface GetWalletParams {
2122
pgtx?: PrismaTransaction;

src/shared/utils/cache/get-webhook.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@ import type { Webhooks } from "@prisma/client";
22
import LRUMap from "mnemonist/lru-map";
33
import { getAllWebhooks } from "../../db/webhooks/get-all-webhooks";
44
import type { WebhooksEventTypes } from "../../schemas/webhooks";
5+
import { env } from "../env";
56

6-
export const webhookCache = new LRUMap<string, Webhooks[]>(2048);
7+
export const webhookCache = new LRUMap<string, Webhooks[]>(env.ACCOUNT_CACHE_SIZE);
78

89
export const getWebhooksByEventType = async (
910
eventType: WebhooksEventTypes,

src/shared/utils/cache/keypair.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
import type { Keypairs } from "@prisma/client";
22
import LRUMap from "mnemonist/lru-map";
33
import { getKeypairByHash, getKeypairByPublicKey } from "../../db/keypair/get";
4+
import { env } from "../env";
45

56
// Cache a public key to the Keypair object, or null if not found.
6-
export const keypairCache = new LRUMap<string, Keypairs | null>(2048);
7+
export const keypairCache = new LRUMap<string, Keypairs | null>(env.ACCOUNT_CACHE_SIZE);
78

89
/**
910
* Get a keypair by public key or hash.

src/shared/utils/env.ts

+2
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ export const env = createEnv({
6363
.enum(["default", "sandbox", "server_only", "worker_only"])
6464
.default("default"),
6565
GLOBAL_RATE_LIMIT_PER_MIN: z.coerce.number().default(400 * 60),
66+
ACCOUNT_CACHE_SIZE: z.coerce.number().default(2048),
6667
DD_TRACER_ACTIVATED: boolEnvSchema(false),
6768

6869
// Prometheus
@@ -145,6 +146,7 @@ export const env = createEnv({
145146
ENABLE_CUSTOM_HMAC_AUTH: process.env.ENABLE_CUSTOM_HMAC_AUTH,
146147
CUSTOM_HMAC_AUTH_CLIENT_ID: process.env.CUSTOM_HMAC_AUTH_CLIENT_ID,
147148
CUSTOM_HMAC_AUTH_CLIENT_SECRET: process.env.CUSTOM_HMAC_AUTH_CLIENT_SECRET,
149+
ACCOUNT_CACHE_SIZE: process.env.ACCOUNT_CAHCE_SIZE,
148150
},
149151
onValidationError: (error: ZodError) => {
150152
console.error(

0 commit comments

Comments
 (0)