Skip to content
Draft
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
7 changes: 4 additions & 3 deletions docs/cli/command-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
<!-- verification:
source_repo: ant-client
source_ref: main
source_commit: 6cada1d6b318a93e52ea6c34aa4b68fc2782c946
verified_date: 2026-05-11
source_commit: 91d5f18e3fbf5125fc6b5bbc46bb0a1fe6356ae8
verified_date: 2026-05-13
verification_mode: current-merged-truth
-->

Expand Down Expand Up @@ -54,7 +54,8 @@ The root command accepts the global flags used across data and node operations.
| `--allow-loopback` | boolean | No | Allow loopback connections for local devnet or local testing |
| `--ipv4-only` | boolean | No | Disable dual-stack and force IPv4-only mode |
| `--quote-timeout-secs <N>` | integer | No | Hidden. Controls lightweight network-operation timeouts such as DHT lookups. |
| `--store-timeout-secs <N>` | integer | No | Hidden. Controls chunk store and retrieve timeouts. |
| `--store-timeout-secs <N>` | integer | No | Hidden. Controls chunk store timeouts. |
| `--chunk-get-timeout-secs <N>` | integer | No | Hidden. Controls chunk retrieve timeouts. |
| `--quote-concurrency <N>` | integer | No | Hidden. Caps the quote channel only. It does not affect store or download concurrency. |
| `--store-concurrency <N>` | integer | No | Hidden. Controls upload chunk concurrency. `--chunk-concurrency` is accepted as an alias. |
| `-v, --verbose...` | count | No | Increase log verbosity: `-v`, `-vv`, or `-vvv` |
Expand Down
6 changes: 3 additions & 3 deletions docs/rust/library-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
<!-- verification:
source_repo: ant-client
source_ref: main
source_commit: 6cada1d6b318a93e52ea6c34aa4b68fc2782c946
verified_date: 2026-05-11
source_commit: 91d5f18e3fbf5125fc6b5bbc46bb0a1fe6356ae8
verified_date: 2026-05-13
verification_mode: current-merged-truth
-->

Expand Down Expand Up @@ -130,7 +130,7 @@ For Merkle batches, `prepare_merkle_batch_external` and `finalize_merkle_batch`
| Type | Description |
|------|-------------|
| `ant_core::data::Client` | Main network client |
| `ant_core::data::ClientConfig` | Separate quote and store timeouts, concurrency limits, and loopback policy |
| `ant_core::data::ClientConfig` | Separate timeouts for quotes, chunk store, Merkle batch store (270 s default), and chunk retrieve; concurrency limits; and loopback policy |
| `ant_core::data::PaymentMode` | `Auto`, `Merkle`, or `Single` |
| `ant_core::data::DataMap` | Private retrieval map for uploaded data |
| `ant_core::data::LocalDevnet` | Local development helper |
Expand Down
Loading