Skip to content

IFTokenAdmin ​

Git Source

Functions ​

updateRewards ​

updates the rewards rate model contract. Only callable by LendingFactory auths.

solidity
function updateRewards(IFluidLendingRewardsRateModel rewardsRateModel_) external;

Parameters

NameTypeDescription
rewardsRateModel_IFluidLendingRewardsRateModelthe new rewards rate model contract address. can be set to address(0) to set no rewards (to save gas)

rebalance ​

Balances out the difference between fToken supply at Liquidity vs totalAssets(). Deposits underlying from rebalancer address into Liquidity but doesn't mint any shares -> thus making deposit available as rewards. Only callable by rebalancer.

solidity
function rebalance() external payable returns (uint256 assets_);

Returns

NameTypeDescription
assets_uint256amount deposited to Liquidity

updateRates ​

gets the liquidity exchange price of the underlying asset, calculates the updated exchange price (with reward rates) and writes those values to storage. Callable by anyone.

solidity
function updateRates() external returns (uint256 tokenExchangePrice_, uint256 liquidityExchangePrice_);

Returns

NameTypeDescription
tokenExchangePrice_uint256exchange price of fToken share to underlying asset
liquidityExchangePrice_uint256exchange price at Liquidity for the underlying asset

rescueFunds ​

sends any potentially stuck funds to Liquidity contract. Only callable by LendingFactory auths.

solidity
function rescueFunds(address token_) external;

updateRebalancer ​

Updates the rebalancer address (ReserveContract). Only callable by LendingFactory auths.

solidity
function updateRebalancer(address rebalancer_) external;