Hi, Iโm trying to upload an image on IPFS.
With v1 I used this code
let image = canvas.toDataURL("image/png");
const file = new Moralis.File("image.png", { base64: image });
await file.saveIPFS();
console.log(file.hash(), file.ipfs());
How can I get the .hash and .ipfs properties using
await Moralis.EvmApi.ipfs.uploadFolder({
abi
});
Thanks