> For the complete documentation index, see [llms.txt](https://docs.artinals.com/artinals-protocol/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.artinals.com/artinals-protocol/functions-and-entry-points/withdrawing-proceeds.md).

# Withdrawing Proceeds

**`withdraw_currency<CURRENCY>(...)`**\
**Purpose**: Allows the sale’s creator to withdraw the accumulated currency from successful NFT sales.

**Key Parameters**:

* `sale`: A mutable reference to the `NFTSale`.
* `recipients`: A vector of addresses to receive the withdrawn funds.
* `percentages`: Corresponding percentages to split the withdrawn amount.
* `collection_cap`: For final authorization checks.
* `ctx`: The transaction context.

**Process**:

1. Verify the caller is the sale creator and that there are funds to withdraw.
2. Check that the percentages sum to 100%, ensuring a proper split.
3. Distribute funds to each recipient accordingly, emitting `CurrencyWithdrawn` events.
4. This can be performed multiple times throughout or after the sale.

**Use Cases**:

* The artist wants to receive their earnings or split them between multiple stakeholders (e.g., artist, gallery, charity).
* A team might allocate a percentage of proceeds to a development fund automatically.


---

# 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.artinals.com/artinals-protocol/functions-and-entry-points/withdrawing-proceeds.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.
