Server error on my exchange dashboard

I checked and you reached the limit only few times

then what is the essence of my pro plan subscription

this is very bad experience for me so what can i do to resolve this error

I don’t think that the error is from Moralis.

how can i proffer a solution to this please

somehow we should identify what url was used when you got that error

Is there any possibility of getting this resolved please

Curious, do you have a self hosted server? I got a rate limit the other day and I was under the assumption it was coming from my server, not the api as I haven’t come anywhere near the api limits.

If you do self host there are environment variables which seem to be related to redis for:

  • RATE_LIMIT_TTL
  • RATE_LIMIT_AUTHENTICATED
  • RATE_LIMIT_ANONYMOUS

But what variables should we put

Please kindly guide me to figure out this issue please

I have no idea what your app would need, its really dependent on the number of requests you make to the server.

These are defaults I have in my server’s .env file are, but I hit a limit the other day when I made several requests to the server in rapid succession.

RATE_LIMIT_TTL = 30
RATE_LIMIT_AUTHENTICATED = 50
RATE_LIMIT_ANONYMOUS = 20

I believe these are per user limits. So I think an authenticated user can make 50 requests to the server every 30 seconds, and non-authenticated can make 20 requests to the server every 30 seconds.

Based on your error though Im not sure this is the issue. It has nothing to do with any plan. Its to resolve Rate limit exceeded errors from the server.

This topic was automatically closed 5 days after the last reply. New replies are no longer allowed.