Skip to content

Commit

Permalink
chore(api-evm): increase rate limit (#831)
Browse files Browse the repository at this point in the history
* Increase rate limit

* Empty
  • Loading branch information
sebastijankuzner authored Jan 21, 2025
1 parent 8123c96 commit aae8113
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/api-evm/source/defaults.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export const defaults = {
) ?? [],
duration: Environment.get(Constants.EnvironmentVariables.CORE_API_EVM_RATE_LIMIT_USER_EXPIRES, 60), // Sec
enabled: !Environment.isTrue(Constants.EnvironmentVariables.CORE_API_EVM_RATE_LIMIT_DISABLED),
points: Environment.get(Constants.EnvironmentVariables.CORE_API_EVM_RATE_LIMIT_USER_LIMIT, 100),
points: Environment.get(Constants.EnvironmentVariables.CORE_API_EVM_RATE_LIMIT_USER_LIMIT, 150),

whitelist:
Environment.get<undefined>(Constants.EnvironmentVariables.CORE_API_EVM_RATE_LIMIT_WHITELIST)?.split(
Expand Down

0 comments on commit aae8113

Please sign in to comment.