@ardrive/turbo-sdk 1.31.0-alpha.2 → 1.31.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -627,7 +627,7 @@ const uploadResult = await turbo.uploadFile({
627
627
 
628
628
  ##### Customize Multi-Part Upload Behavior
629
629
 
630
- By default, the Turbo upload methods will split files into chunks that are larger than 10 MiB and send these chunks to the upload service multi-part endpoints. This behavior can be customized with the following inputs:
630
+ By default, the Turbo upload methods will split files that are larger than 10 MiB into chunks and send them to the upload service multi-part endpoints. This behavior can be customized with the following inputs:
631
631
 
632
632
  - `chunkByteCount`: The maximum size in bytes for each chunk. Must be between 5 MiB and 500 MiB. Defaults to 5 MiB.
633
633
  - `maxChunkConcurrency`: The maximum number of chunks to upload concurrently. Defaults to 5. Reducing concurrency will slow down uploads, but reduce memory utilization and serialize network calls. Increasing it will upload faster, but can strain available resources.
@@ -810,7 +810,7 @@ Revokes all credits shared from the connected wallet to the provided native addr
810
810
 
811
811
  ```typescript
812
812
  const revokedApprovals = await turbo.revokeCredits({
813
- approvedAddress: '2cor...VUa',
813
+ revokedAddress: '2cor...VUa',
814
814
  });
815
815
  ```
816
816