# 3. Introducing new assets for deposit

Default Aragon Framework setting are configured to use the USDT (USD Tether) stable coin as a means for cash interactions. Most of the DAOs created need additional token assets to be manually introduced so that your DAO recognizes them and allows using various assets.

Follow the steps described below to add new assets to your DAO.

#### Step 1 - Navigate to Aragon Console

Navigate to <https://client.aragon.org/#/%daoname%/console>&#x20;

{% hint style="info" %}
Please note that *%daoname%* must be changed to the name of your created DAO
{% endhint %}

![The interface for console mode may slightly differ according to your browser settings, but the available content remains the same.](https://635256300-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-Me8u5qenSY382AyAmTe%2Fuploads%2FQiCEf8RPKKy5hSCTEcTH%2F%D0%B8%D0%B7%D0%BE%D0%B1%D1%80%D0%B0%D0%B6%D0%B5%D0%BD%D0%B8%D0%B5_2021-11-08_153159.png?alt=media\&token=a1e1e885-71ab-4c75-82bd-d7970cecff8e)

#### Step 2 - Start the "EXEC" function

Click the "Exec" function available on the list to see the next available commands. The codeline provided will change accordingly as shown below.

```
>_ Exec/
```

#### Step 3 - Select the "TOKEN REQUEST" application

After the list of available execution commands is shown navigate to "Token Request" command and click it. The bytecode will again change to display the command selected. The bytecode contents can be dechiphered as:

* *>\_ exec* - Request for execution of a command
* */0xef5d72e2d0cd8943e02aa4118bf94424017c8fdf/* - The dynamic part which will automatically correspond to the requested action. Here it refers to the Token Request application.

```
>_ exec/0xef5d72e2d0cd8943e02aa4118bf94424017c8fdf/
```

![The HEX (hexadecimal) values for the command are different for each DAO and each request type.](https://635256300-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-Me8u5qenSY382AyAmTe%2Fuploads%2F4GtZkm6oQLet6FCe6V1l%2F%D0%B8%D0%B7%D0%BE%D0%B1%D1%80%D0%B0%D0%B6%D0%B5%D0%BD%D0%B8%D0%B5_2021-11-08_154310.png?alt=media\&token=75ff72d0-e3ab-4088-81c5-649126b02edd)

#### Step 4 - Getting the data required to add tokens

To successfully provide Aragon Framework with the data on the tokens you wish to add to your DAO the prerequisite is having a Token Smart Contract address available. To get the address you need to navigate to <https://etherscan.io/tokens> and select the needed token from the list.

After selecting the needed token - extract the token address from the address bar of your browser as shown on the screenshot below to get the information at ready for the next step.

The last part of the address is the part you need: as an example *0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48* is the address for USDC coin.

![The HEX value is the address for Stable Coin Smart Contract.](https://635256300-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-Me8u5qenSY382AyAmTe%2Fuploads%2F6yEbipQx00YyulbRUE18%2Ftkn3.JPG?alt=media\&token=b0bb5452-7688-463a-ae39-4dfa9e8614e0)

#### Step 5 - Inserting the "addToken" function

After the slash in the bytecode you must manually provide the Framework with the corresponding information to successfully add the required tokens to your DAO. To do that you will need the Smart Contract address of the stable coin you wish to add acquired at step 4.

The command to add tokens is "/addToken(%StableTokenAddress%)" where %StableTokenAddress% is the part you copied at the step 4.

For USDC the bytecode will be as shown below:

```
>_ exec/0xef5d72e2d0cd8943e02aa4118bf94424017c8fdf/addToken(0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48)
```

![The full codeline will have all the commands issued up till now in a single line. Current image shows the line for adding USDC.](https://635256300-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-Me8u5qenSY382AyAmTe%2Fuploads%2FczdTMeK7TysYjcnmeIEa%2Ftkn4.JPG?alt=media\&token=b1cece70-89fd-4642-99d5-962ed6fe81d8)

#### Step 6 - Finalize the process by signing the transaction

After the command input is finished and you have pressed the "Enter" button the system will request you to finalize the action by submitting a transaction. For DAOs with GT Tokens shared by multiple shareholders the voting process will be initiated. How to access and manage the voting can be seen at the corresponding section of the guide (press [HERE](https://1clickdao.gitbook.io/weezi/basics/1.-basic-management-information#4.-guide-to-voting-creation) to navigate directly to the section).


---

# 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://1clickdao.gitbook.io/weezi/setup/introducing-new-assets.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.
