getCid()
Syntax
getCid(file: File, exportedKey?: string)Parameters
Name
Type
Required
Description
Example
import {getCid} from "@eueno/lib-browser";
const getData = async () => {
const file = files[0];
const exportedKey = "4R2Bw-kz9DnWA5FEcoopIsPhZZ5PswLBvtPwll6ejkU"
const response = await getCid(file, exportedKey);
console.log(response);
};
Last updated