> For the complete documentation index, see [llms.txt](https://docs.chestfi.cash/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.chestfi.cash/tools/multi-send.md).

# Multi-Send

Send tokens to multiple wallets in a single transaction, saving time and gas fees.

* **Path:** Web App → **Multi-Send**
* **Status:** Coming soon

### Current status

Multi-Send is in development. The sidebar entry is visible but the module is not yet live.

### What it does

Sending tokens to 200 addresses one at a time means 200 wallet confirmations and 200 base transaction costs. Multi-Send batches the transfers into a single call: one signature, one base cost, one transaction hash to share.

Typical uses:

* Airdrops to early supporters or testnet participants.
* Payroll or contributor payouts.
* Distributing presale allocations.
* Community rewards and competition prizes.

### Planned flow

1. Enter the **token address**.
2. Provide the recipient list — pasted directly or uploaded as CSV, in `address,amount` format.
3. Review the parsed table: total recipients, total amount, and any rows that failed validation.
4. **Approve** the total, then execute the batch.

### Preparing your recipient list

Get this right before the module ships and you'll be able to send in minutes.

csv

```csv
0x1111111111111111111111111111111111111111,1000
0x2222222222222222222222222222222222222222,2500.5
0x3333333333333333333333333333333333333333,750
```

* One recipient per line, `address,amount`.
* Amounts in **token units**, not wei.
* No header row, no trailing commas, no blank lines.
* Deduplicate. A repeated address receives the sum of its rows, which is rarely what you intended.
* **Verify every address.** Tokens sent to a mistyped address are gone. There is no recall.

### Gas expectations

Batching saves the fixed per-transaction overhead (the 21,000 gas base cost), not the cost of the transfers themselves — each ERC-20 transfer still writes to storage. Expect meaningful savings at scale, not a free lunch.

Very large lists may exceed the block gas limit. When that happens, split the list into chunks and send several batches.

Follow [@ChestFiCash](https://x.com/ChestFiCash) for the launch announcement.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://docs.chestfi.cash/tools/multi-send.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
