harvestedBalance

This method maps from token address to harvested amount. harvestedBalance shows how much of a token has been harvested so far from the contract.

Function

function harvestedBalance(
    address _token
) external view returns (uint);

Parameters

ParameterDescription

_token

An ERC20 token address.

Return values

ValueDescription

uint _val

The total harvested amount of tokens for the given ERC20 token.

Last updated