fix(rate limits): Decreasing ANON rate limits from 20 to 10 RPM

This commit is contained in:
Chris Troutner
2022-04-11 17:01:50 -07:00
parent 6c0a7e29c1
commit a33661ddcf
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -12,7 +12,7 @@ const config = {
// Rate Limits
anonRateLimit: process.env.ANON_RATE_LIMIT
? Number(process.env.ANON_RATE_LIMIT)
: 500,
: 1000,
whitelistRateLimit: process.env.WHITELIST_RATE_LIMIT
? Number(process.env.WHITELIST_RATE_LIMIT)
: 10,