# finalTargetToken()

```solidity
    function finalTargetToken() external view returns (Token);
```

This function returns the token address of the "finalTargetToken". This token is the one paired with the "targetToken" for the last step of auctions.

{% hint style="info" %}
A bit about the structure:

All tokens are paired against "targetToken" to allow aggregation to a common liquid token.

There is an option that this "targetToken" will be paired against a "finalTargetToken" to allow trading the common token into a specific destination token.
{% endhint %}

### Example

{% code overflow="wrap" %}

```solidity
finalTargetToken()
returns (
    0x1F573D6Fb3F13d689FF844B4cE37794d79a7FF1C  
)
```

{% endcode %}


---

# 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.carbondefi.xyz/contracts-and-functions/carbonvortex-functions/read-functions/finaltargettoken.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.
