Skip to content

IITokenPool#

Internal interface for token pools.

Functions#

getTokenPoolSupplyData#

Defined in IITokenPool (Docs, Source).

function getTokenPoolSupplyData(
) external returns (
    uint256 _lockedFundsWei,
    uint256 _totalInflationAuthorizedWei,
    uint256 _totalClaimedWei);

Returns token pool supply data.

Returns Type Description
_lockedFundsWei uint256 Total amount of funds ever locked in the token pool (wei). _lockedFundsWei - _totalClaimedWei is the amount currently locked and outside the circulating supply.
_totalInflationAuthorizedWei uint256 Total inflation authorized amount (wei).
_totalClaimedWei uint256 Total claimed amount (wei).