targetToken()

    function targetToken() external view returns (Token);

This function returns the token address of the "targetToken". This is the token all auctions will be paired with excluding the tradeToken->finalTargetToken pair.

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.

Example

targetToken()
returns (
    0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE  
)

Last updated