# TOKEN

<figure><img src="/files/eRpS9zbcbZdhAQztmHaz" alt=""><figcaption><p>Settings box in TOKEN.sol</p></figcaption></figure>

### TOKEN Name (NAME) - string

The name of the TOKEN. For example, '**CaptainToken'** or '**CrunchToken'**.

### TOKEN Symbol (SYMBOL) - string

The symbol of the TOKEN. For example, '**CAPN'** or '**CRCH'**.

### **Protocol Fee (PROTOCOL\_FEE) - uint256**

The fee that gets applied to buys, sells, and borrows. Units are in bps (basis points). Can be calculated by multiplying the desired fee percentage by 100.

PROTOCOL\_\_FEE = (Percent Fee) \* 100

Examples:

* 0.3% Fee: (0.3) \* 100 = **30**
* 0.5% Fee: (0.5) \* 100 = **50**
* 2.0% Fee: (2.0) \* 100 = **200**

### Provider Fee (PROVIDER\_FEE) - uint256

The percent of buy/sell fees that goes to the UI provider. Units are in bps (basis points). Can be calculated by mutliplying the desired fee percentage by 100

PROVIDER\_FEE = (provider percent) \* 100

Examples:

* 40% for provider: (40) \* 100 = **4000**
* 20% for provider: (20) \* 100 = **2000**
* 5% for provider: (5) \* 100 = **500**


---

# 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://paradox-2.gitbook.io/v33x/developers/core/2.-settings/token.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.
