The rate limit in moralis is horribly really restrictive, Iām not sure if itās even viable to use moralis anymore with this in mind, can you please help me understand?
My use case is this, I need to implement token gating, in a way that gates tokens through a range, for example:
a collection has 10,000 tokens.
Only tokens 1000-2000 are allowed to access the content.
I thought of using getNFTsForContract API and paginate as needed, but then I checked the rate limits page and making a call to check the rate limit cost:
so if I have the PRO plan which has 60 CU/s, and the rateLimitCost is 5, I can do 60/5=12 calls per second?
is there a way around it? seems like a very strict limit, also is my math here right? Iām honestly not sure if the āCU/sā is the rate limit anyway, just guessed it means ācompute units per secondā and that ācost/priceā refers to ācompute unitsāā¦