# ASAs "ReserveAddress"

**URL:** https://forum.algorand.co/t/asas-reserveaddress/2977
**Category:** General
**Tags:** asa
**Created:** [April 9, 2021, 3:29pm UTC](https://forum.algorand.co/t/asas-reserveaddress/2977 "2021-04-09T15:29:36Z")
**Posts on this page:** 8
**Page:** 1

<div class="post-metadata">

### Author: ![AlgoPete92](https://avatars.discourse-cdn.com/v4/letter/a/c4cdca/32.png) [@AlgoPete92](https://forum.algorand.co/u/AlgoPete92)
#### Post date: [April 9, 2021, 3:29pm UTC](https://forum.algorand.co/t/asas-reserveaddress/2977/1 "2021-04-09T15:29:36Z")

</div>

Hi all,  
what does it mean that the Reserve Account (pointed by “reserve address” field) holds the “non-minted” units of an asset? Could someone explain me what they are and what’s their purpose?

---

<div class="post-metadata">

### Author: ![JasonW](https://avatars.discourse-cdn.com/v4/letter/j/e47c2d/32.png) [@JasonW](https://forum.algorand.co/u/JasonW)
#### Post date: [April 9, 2021, 3:36pm UTC](https://forum.algorand.co/t/asas-reserveaddress/2977/2 "2021-04-09T15:36:23Z")

</div>

So once you create an ASA the token(s) are placed in the creator account. The reserve account is a logical structure where some builders will use the address to put all the tokens in “reserve” They are considered unminted until they leave this reserve account.

---

<div class="post-metadata">

### Author: ![AlgoPete92](https://avatars.discourse-cdn.com/v4/letter/a/c4cdca/32.png) [@AlgoPete92](https://forum.algorand.co/u/AlgoPete92)
#### Post date: [April 9, 2021, 3:51pm UTC](https://forum.algorand.co/t/asas-reserveaddress/2977/3 "2021-04-09T15:51:24Z")

</div>

Ok thank you very much 😊

---

<div class="post-metadata">

### Author: ![jonathan](https://sea2.discourse-cdn.com/flex016/user_avatar/forum.algorand.co/jonathan/32/1279_2.png) [@jonathan](https://forum.algorand.co/u/jonathan)
#### Post date: [August 20, 2021, 1:09pm UTC](https://forum.algorand.co/t/asas-reserveaddress/2977/4 "2021-08-20T13:09:30Z")

</div>

If you create an asset with deployer account that it is different to the reserve account the “non-minted” tokens go to deployer (creator) and not to the reserve. Why does it happen?

more context:

```auto
{
from: deployerAccount
assetManager: managerAccount,
assetReserve:managerAccount,
...
type: TransactionType.ACFG,
}

```

---

<div class="post-metadata">

### Author: ![cusma](https://sea2.discourse-cdn.com/flex016/user_avatar/forum.algorand.co/cusma/32/888_2.png) [@cusma](https://forum.algorand.co/u/cusma)
#### Post date: [August 20, 2021, 3:56pm UTC](https://forum.algorand.co/t/asas-reserveaddress/2977/5 "2021-08-20T15:56:43Z")

</div>

By default, on ASA’s genesis, the total supply will always belong to the Creator Address. If you specify Reserve Address different form Creator’s one then, once the ASA has been created, the total supply must be transferred form the Creator Address to the Reserve Address, so that the total supply will not be interpreted as “circulating supply”.

---

<div class="post-metadata">

### Author: ![jonathan](https://sea2.discourse-cdn.com/flex016/user_avatar/forum.algorand.co/jonathan/32/1279_2.png) [@jonathan](https://forum.algorand.co/u/jonathan)
#### Post date: [August 20, 2021, 5:10pm UTC](https://forum.algorand.co/t/asas-reserveaddress/2977/6 "2021-08-20T17:10:08Z")

</div>

thanks for the explanation. That was my thought. But the problem is that when I create the ASA all the tokens go to the creator and they are not transfer to reserve account. Do I have to something special? I try to do the transfer but I couldn’t because the reserve doesn’t do the the opt-in.  
I have the expectation that the transfer from the creator to the reserve it will be done automatically

---

<div class="post-metadata">

### Author: ![fabrice](https://avatars.discourse-cdn.com/v4/letter/f/5fc32e/32.png) [@fabrice](https://forum.algorand.co/u/fabrice)
#### Post date: [August 20, 2021, 8:08pm UTC](https://forum.algorand.co/t/asas-reserveaddress/2977/7 "2021-08-20T20:08:23Z")

</div>

You need to manually opt-in the reserve to the ASA and then do the transfer.

---

<div class="post-metadata">

### Author: ![jonathan](https://sea2.discourse-cdn.com/flex016/user_avatar/forum.algorand.co/jonathan/32/1279_2.png) [@jonathan](https://forum.algorand.co/u/jonathan)
#### Post date: [August 20, 2021, 8:56pm UTC](https://forum.algorand.co/t/asas-reserveaddress/2977/8 "2021-08-20T20:56:36Z")

</div>

thanks for the clarification!
