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. | 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. 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.