> 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/mintokensaleamount.md).

# minTokenSaleAmount()

```solidity
    function minTokenSaleAmount(Token token) external view returns (uint128);
```

Once new funds are added to the auction using the execute() function, there is a check whether to reset the price or not.

`minTokenSaleAmount` is defined as half the contract updated balance (available for sale).

### Example

{% code overflow="wrap" %}

```solidity
minTokenSaleAmount(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2)
returns (
    5215367497312276769; 
)
```

{% endcode %}
