Skip to content

Commit 2b0d6ac

Browse files
committed
fix: bump wallet creation rate limit to 10/hour
1 parent 8030cec commit 2b0d6ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/web-wallet/rate-limit.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ export const RATE_LIMITS: Record<string, RateLimitConfig> = {
5656
'merchant_login_email': { limit: 10, windowSeconds: 3600 }, // 10/hour per email
5757
'merchant_register': { limit: 3, windowSeconds: 3600 }, // 3/hour per IP
5858
// Web wallet endpoints
59-
'wallet_creation': { limit: 3, windowSeconds: 3600 }, // 3/hour per IP
59+
'wallet_creation': { limit: 10, windowSeconds: 3600 }, // 10/hour per IP
6060
'auth_challenge': { limit: 10, windowSeconds: 60 }, // 10/min
6161
'auth_verify': { limit: 10, windowSeconds: 60 }, // 10/min
6262
'balance_query': { limit: 60, windowSeconds: 60 }, // 60/min

0 commit comments

Comments
 (0)