IpfsDownloaderOptions
type IpfsDownloaderOptions = { clientId?: string; secretKey?: string; timeoutInSeconds?: number;};
Optional clientId to associate with the IpfsDownloader - when used from the frontend. You can get a clientId here: https://thirdweb.com/create-api-key
type clientId = string;
Optional secretKey to associate with the IpfsDownloader - when used from the backend. You can get an secretKey here: https://thirdweb.com/create-api-key
type secretKey = string;
Optional timeout in seconds for the download request, overrides the default timeout
type timeoutInSeconds = number;