I’m trying to upload to IPFS through cloud functions so I can validate the content before allowing it on my app.
If I upload a file below 8MB it works fine, however It starts stalling if it’s around 10MB or above.
It also doesn’t throw an error, it simple stalls until it timeouts.
Code:
const options = {
  abi: [
    {
      path: "posts/post."+fileType,
      content: fileBase64,
    },
  ],
};
await Moralis.Web3API.storage.uploadFolder(options);
EDIT:
Looks like Moralis.Cloud.toIpfs has the same problem
