minTokenSaleAmount()
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
minTokenSaleAmount(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2)
returns (
5215367497312276769;
)
Last updated