Skip to content

Commit 12ab857

Browse files
committed
LFB
1 parent 9cae510 commit 12ab857

File tree

8 files changed

+11
-2
lines changed

8 files changed

+11
-2
lines changed

pages/build/d/features/onchain-folders.mdx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
description: Onchain folders create logical groupings of files.
33
---
44

5+
import { Callout } from "nextra-theme-docs";
6+
7+
58
# Onchain Folders
69

710
You can create onchain folders, or logical groupings of files, using Irys's path manifests. You can create them using any transaction on Irys, even ones you didn't create yourself.

pages/build/d/sdk/chunked-uploader/controlling-the-upload.mdx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
description: Pausing and resuming uploads
33
---
44

5+
import { Callout } from "nextra-theme-docs";
6+
57
# Controlling the upload
68

79
Uploads created with the chunked uploader can be paused and resumed at any time using the functions `uploader.pause()` and `uploader.resume()`. For these functions to work, the initial call to `uploader.uploadData()` or `uploader.uploadTransaction()` must not be preceded with the `await` keyword.

pages/build/d/sdk/chunked-uploader/data-mode.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Within Data Mode, you can either upload using:
1717
const transactionOptions = { tags: [{ name: "Content-Type", value: "text/plain" }] };
1818

1919
// 1. Upload a Buffer containing just the data you want to upload.
20-
const dataBuffer = Buffer.from("Hello, world!");
20+
const dataBuffer = Buffer.from("Hirys, world!");
2121
const response = await uploader.uploadData(dataBuffer, transactionOptions);
2222
// The transaction ID (used to query the network) is found in response.data.id
2323
console.log(`Data buffer uploaded ==> https://gateway.irys.xyz/${response.data.id}`);

pages/build/d/sdk/payment/getPrice.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ description: Returns the cost to upload the specified number of bytes
33
---
44

55
import ApiTable from "@/components/api-table/api-table.tsx";
6+
import { Callout } from "nextra-theme-docs";
67

78
# `irys.getPrice(numBytes)`
89

pages/build/d/sdk/payment/withdrawAll.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ description: Withdraws the supplied amount
33
---
44

55
import ApiTable from "@/components/api-table/api-table.tsx";
6+
import { Callout } from "nextra-theme-docs";
67

78

89
# `irys.withdrawAll()`

pages/build/d/sdk/payment/withdrawBalance.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ description: Withdraws the supplied amount
33
---
44

55
import ApiTable from "@/components/api-table/api-table.tsx";
6+
import { Callout } from "nextra-theme-docs";
67

78
# `irys.withdrawBalance(amount)`
89

pages/build/d/sdk/upload/uploadFolder.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ description: Uploads a folder of files to Irys
33
---
44

55
import ApiTable from "@/components/api-table/api-table.tsx";
6+
import { Callout } from "nextra-theme-docs";
67

78
# `uploadFolder()`
89

theme.config.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ const iconMapping = {
8585
src: "/assets/rive/build/guides.riv",
8686
animation: "GuidesAnim",
8787
},
88-
"Miner": { // Placeholder
88+
"Miners": { // Placeholder
8989
src: "/assets/rive/build/guides.riv",
9090
animation: "GuidesAnim",
9191
},

0 commit comments

Comments
 (0)