Hello hello.
I’ve been using Moralis’ uploadFolder API to upload nft images & metadata for some time now & they’ve been able to upload most of the time without any hiccups.
Today, I hit this error & have been unable to upload anything to IPFS since :
{
code: 141,
error: 'This Moralis Server is rate-limited because of the plan restrictions. See the details about the current rate and throttle limits: {"x-rate-limit-limit":"25","x-rate-limit-remaining-ttl":"5","x-rate-limit-used":"30","x-rate-limit-remaining-ip-ttl":"5","x-rate-limit-ip-used":"30"}'
}
How it was called :
// NOTE: 'json_file_path' & 'json_file_content' are just example variables here, actual data was uploaded.
const ipfsArr = [{ path: json_file_path, content: json_file_content }];
const options = { abi: ipfsArr };
const data = await Moralis.Web3API.storage.uploadFolder(options);
console.log(data);
I am currently on the free server, I know free servers are rate limited to 1 request per second only for uploadFolder but I have waited for more than 1 second before trying again & it is still returning the same error.
It’s been like this the whole day no matter how long I waited, can anyone tell me what can I do to resolve this for free servers?