# Multiple transfers

The user interface provides a page suitable to enter a batch of transfers (either sending or receiving requests) and send them all at once. While this may seem just a repetition of the single transfer case, it is a bit problematic in the case of a distributed ledger such as Stellar because it imposes a series of limits:

* The total transfer throughput of Stellar is in the orders of 1000 operations / ledger, and a new ledger closes every 5 sec.
* The Stellar transfer fee increases if the network gets flooded with transactions
* One account can only submit one transaction per ledger
* The Stellar service endpoints impose further rate limits (\~100 calls every 6 seconds).

In order to accommodate these limits, the server will use up to 10 [channel accounts](https://developers.stellar.org/docs/learn/encyclopedia/transactions-specialized/channel-accounts) so that a single account is doing up to 11 transfers / 5 sec. And the server further limits the rate of calls to Stellar so it does not break the 100 requests/ 6 sec limit.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.komunitin.org/technology/accounting/multiple-transfers.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
