Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions packages/thirdweb/src/storage/download.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export type DownloadOptions = Prettify<
* Download a file from IPFS:
* ```ts
* import { download } from "thirdweb/storage";
* import { createThirdwebClient } from "@thirdweb-dev/sdk";
* import { createThirdwebClient } from "thirdweb";
*
* const client = createThirdwebClient({ clientId: "YOUR_CLIENT_ID" });
*
Expand All @@ -38,7 +38,7 @@ export type DownloadOptions = Prettify<
* Download a file from Arweave:
* ```ts
* import { download } from "thirdweb/storage";
* import { createThirdwebClient } from "@thirdweb-dev/sdk";
* import { createThirdwebClient } from "thirdweb";
*
* const client = createThirdwebClient({ clientId: "YOUR_CLIENT_ID" });
*
Expand All @@ -51,7 +51,7 @@ export type DownloadOptions = Prettify<
* Download a file from HTTP:
* ```ts
* import { download } from "thirdweb/storage";
* import { createThirdwebClient } from "@thirdweb-dev/sdk";
* import { createThirdwebClient } from "thirdweb";
*
* const client = createThirdwebClient({ clientId: "YOUR_CLIENT_ID" });
*
Expand Down
Loading