> For the complete documentation index, see [llms.txt](https://docs.carbondefi.xyz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.carbondefi.xyz/contracts-and-functions/carbonvortex-functions/read-functions/mintargettokensaleamount.md).

# minTargetTokenSaleAmount()

```solidity
    function minTargetTokenSaleAmount() external view returns (uint128);
```

This function returns the minimum amount of "targetToken" that can be in the account balance before triggering a top up and price update.

{% hint style="info" %}
Once "targetToken" sale amount is below this value, it will reset the price and restart the auction
{% endhint %}

### Example

{% code overflow="wrap" %}

```solidity
minTargetTokenSaleAmount()
returns (
    10000000000000000000; 
)
```

{% endcode %}
