# Token listing

Our system for listing tokens in our order book is called "**permissionless**". Any person can list a token on our platform to be available for the creation of a sale or purchase order.

#### Endpoint description

* SC address: `erd1qqqqqqqqqqqqqpgqmmxzmktd09gq0hldtczerlv444ykt3pz6avsnys6m9`
* Endpoint: `communityListToken`
* Parameters:
  * `token identifier`
* Payment: 25`,000 $JEX` (these $JEX are burned in the process)
* Gas limit: `15,000,000`

#### Interface

```
/// Permissionless token listing 
/// Caller pays listing fee in JEX 
#[payable("*")] 
#[endpoint(communityListToken)] 
fn community_list_token(&self, identifier: TokenIdentifier);
```

Notes :&#x20;

* The listing process will not fail if the token is already listed&#x20;
* After calling the endpoint, the token will appear within 15 minutes


---

# 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://jexchange.gitbook.io/english/how-to/token-listing.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.
