IpfsUploaderOptions
type IpfsUploaderOptions = { clientId?: string; secretKey?: string; uploadServerUrl?: string; uploadWithGatewayUrl?: boolean;};
Optional clientId to associate with the IpfsUploader. You can get an clientId here: https://thirdweb.com/create-api-key
type clientId = string;
Optional secretKey to associate with the IpfsUploader - when used from the backend. You can get an secretKey here: https://thirdweb.com/create-api-key
type secretKey = string;
Optional upload server url to use instead of the default. (Advanced Usage)
type uploadServerUrl = string;
Whether or not to replace any URLs with schemes with resolved URLs before upload
type uploadWithGatewayUrl = boolean;