From a8142d04ef4a0ab93a0373f91705830ba4522f95 Mon Sep 17 00:00:00 2001 From: MaxweLL22-22 Date: Tue, 11 Feb 2025 20:15:15 +0100 Subject: [PATCH 1/3] Fix typos in pages/build/d/graphql.mdx --- pages/build/d/graphql.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/build/d/graphql.mdx b/pages/build/d/graphql.mdx index fe92805..229bafa 100644 --- a/pages/build/d/graphql.mdx +++ b/pages/build/d/graphql.mdx @@ -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 { `
  `deadlineHeight `
  `signature `
  `version `
`}` | An optional receipt, only exists if a user requested one at upload.
`deadlineHeight`: The block number by which the transaction must be finalized.
`signature`: A signed deep hash of the JSON receipt. | | `tags { `
  `name `
  `value`
`}` | An array of tags supplied as name / value pairs. Exists if the user added them at upload. | From 4534523820e4374e92959977df9fc901d521d072 Mon Sep 17 00:00:00 2001 From: MaxweLL22-22 Date: Tue, 11 Feb 2025 20:15:16 +0100 Subject: [PATCH 2/3] Fix typos in pages/build/d/sdk/chunked-uploader.mdx --- pages/build/d/sdk/chunked-uploader.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/build/d/sdk/chunked-uploader.mdx b/pages/build/d/sdk/chunked-uploader.mdx index fbd583c..c6d3fa3 100644 --- a/pages/build/d/sdk/chunked-uploader.mdx +++ b/pages/build/d/sdk/chunked-uploader.mdx @@ -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). - 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. From 3b68319e0ef3381917a562629f1fd5fde2d30796 Mon Sep 17 00:00:00 2001 From: MaxweLL22-22 Date: Tue, 11 Feb 2025 20:15:18 +0100 Subject: [PATCH 3/3] Fix typos in pages/build/d/guides/encrypting-with-lit.mdx --- pages/build/d/guides/encrypting-with-lit.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/build/d/guides/encrypting-with-lit.mdx b/pages/build/d/guides/encrypting-with-lit.mdx index 92bf14c..efe48bf 100644 --- a/pages/build/d/guides/encrypting-with-lit.mdx +++ b/pages/build/d/guides/encrypting-with-lit.mdx @@ -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.