{
const img = new Image();
const src = URL.createObjectURL(
new Blob(
[
await node.cat(
"/ipfs/QmW2WQi7j6c7UgJTarActp7tDNikE4B2qXtFCfLPdsgaTQ/cat.jpg"
)
],
{ type: "application/octet-binary" }
)
);
img.src = src;
img.style = "height:400px;width:640px;";
invalidation.then(() => URL.revokeObjectURL(src));
return img;
}