You might want to limit the number of requests that a user can make to the web3Api. To do this, you can modify. You can do this to call Moralis.settings.setAPIRateLimit
in your cloud-code:
Moralis.settings.setAPIRateLimit({
anonymous:10, authenticated:20, windowMs:60000
})
hello @cryptokid, do I have to deploy this line of code as a cloud function from my IDE?