Hey folks, Currently I am working on NFT marketplace using react native And I want to store NFTs on ipfs using Moralis.
This is my cody :
const image = “data:image/png;base64,iVBORw0KGgoAAA…”
const file = new Moralis.File(“image.png”, {base64 : image });
await file.saveIPFS();
When I console file object, it returns nothing.
Please tell me, is there any support of moralis ipfs with react native or not.?
Thanks