Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion pages/build/d/graphql.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ When building a query, any of the following values be included in your results:
| Field | Description |
|---|---|
| `id` | The transaction ID. |
| `address` | The address used when posting the transaction. Can be a native address from any of the chains supported by Irys. Note in query arguements, this is referred to as `owner`. |
| `address` | The address used when posting the transaction. Can be a native address from any of the chains supported by Irys. Note in query arguments, this is referred to as `owner`. |
| `token` | The token used to pay for the transaction. |
| `receipt { `<br/>&nbsp;&nbsp;`deadlineHeight `<br/>&nbsp;&nbsp;`signature `<br/>&nbsp;&nbsp;`version `<br/>`}` | An optional receipt, only exists if a user requested one at upload.<br/> `deadlineHeight`: The block number by which the transaction must be finalized. <br/>`signature`: A signed deep hash of the JSON receipt. |
| `tags { `<br/>&nbsp;&nbsp;`name `<br/>&nbsp;&nbsp;`value`<br/>`}` | An array of tags supplied as name / value pairs. Exists if the user added them at upload. |
Expand Down
2 changes: 1 addition & 1 deletion pages/build/d/guides/encrypting-with-lit.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,7 @@ The `encryptString()` function encrypts your data according to the specified acc

### Storing Data on Irys

When storing encrypted data on Irys, store it as JSON objet with three components:
When storing encrypted data on Irys, store it as JSON object with three components:

- `ciphertext`: The encrypted version of your data.
- `dataToEncryptHash`: A hash of the original data, which helps verify its integrity during decryption.
Expand Down
2 changes: 1 addition & 1 deletion pages/build/d/sdk/chunked-uploader.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ Key Terminology:
- Chunk size: the maximum size of a single chunk. Defaults to 25MB. For those with slower/unstable connections, reducing both should lead to improved reliability. For those with faster connections, increasing both will lead to higher throughput, at the cost of more memory (and CPU).

<Callout type="info" emoji="ℹ️">
The default uploder (accessed via `irys.upload()`) does chunking automatically. You only need to use the Chunked
The default uploader (accessed via `irys.upload()`) does chunking automatically. You only need to use the Chunked
Uploader to access advanced features like pausing and resuming uploads, changing batch size, and changing chunk size.
</Callout>