amountAvailableForTrading()

    function amountAvailableForTrading(Token token) external view returns (uint128);

This function is used to identify the amount of tokens currently available for sale for the token.

Function Arguments

NameTypeDescription

token

Token

The address of the token.

Returns

This returns the amount of tokens that are available for sale.

Example

accumulatedFees(
0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE // token
)

// Return the value in WEI format
// 11039415659335871026  

For the ETH token, use the contract address: 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE

Last updated