# Add your Token to DEX

You have created your token on Toucans and now want to get it listed on [Increment Fi](https://app.increment.fi). There are 2 ways to make that happen:

## Option #1: Ask Jacob in Emerald City Discord

Head to the [Emerald City Discord](https://discord.com/invite/emerald-city-906264258189332541) and ping Jacob to add the token for you. This is a quick & easy option to get it listed.

## Option #2: Do it Yourself

{% hint style="info" %}
If you do this step, you will still need to ping Jacob in the Emerald City Discord to accept your PR at the end. But it will take work off of his plate, so he would greatly appreciate it! ;)
{% endhint %}

1. Fork the following repo: <https://github.com/FlowFans/flow-token-list>
2. Go to the `token-registry` folder and add a new folder
   1. To name the folder, you will have to know the contract address and contract name of your token. To do that, go to [Contract Browser](https://contractbrowser.com/) and in the top search bar, look up your project ID from Toucans. If you don't know what a project ID is, it's just the last part of the URL for your DAO's page (ex. for <https://toucans.ecdao.org/p/ADUToken>, it is `ADUToken`)
   2. Once you find the contract, you can find the contract name, which is also the same as your project ID (ex. `ADUToken`) and contract address (ex. `0xe452a2f5665728f5`)

      <figure><img src="/files/2OaaKZa0gWInr8TCMLeY" alt=""><figcaption></figcaption></figure>
   3. Then name the folder `A.{contract address without the 0x}.{contract name}`. For example, `A.e452a2f5665728f5.ADUToken`
3. Inside that folder, add your token logo as a `logo.png` file. Make sure the logo is relatively small in size (\~10 KB)
4. Inside the same folder, add a `token.json` file that looks like [`this`](https://github.com/FlowFans/flow-token-list/blob/main/token-registry/A.e452a2f5665728f5.ADUToken/token.json).
   1. address: the contract address that you got above
   2. contractName: the contract name that you got above (same as your project ID)
   3. path: follow the same format you see in the example, except replace `ADUToken` with your project's ID in all 3 paths
   4. symbol: the token symbol you chose on Toucans when you created your token. Just make sure you do NOT include the $ symbol.
   5. name: the DAO name you chose on Toucans when you created your token.
   6. decimals: 8
   7. logoURI: use `"https://cdn.jsdelivr.net/gh/FlowFans/flow-token-list@main/token-registry/A.e452a2f5665728f5.ADUToken/logo.png"`, but replace `A.e452a2f5665728f5.ADUToken` with your folder name from above
   8. tags: "utility-token"
   9. extensions: {}
5. Copy the contents of your `token.json` file and then go to the `src/tokens/flow-mainnet.tokenlist.json` file
   1. In that file, add your object at the bottom of the list
6. Make a PR to the the [original repo](https://github.com/FlowFans/flow-token-list) using your fork
7. Ping Jacob in the [Emerald City Discord](https://discord.com/invite/emerald-city-906264258189332541) to accept the PR


---

# 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.ecdao.org/products/toucans/add-your-token-to-dex.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.
