IFTokenAdmin ​
Functions ​
updateRewards ​
updates the rewards rate model contract. Only callable by LendingFactory auths.
solidity
function updateRewards(IFluidLendingRewardsRateModel rewardsRateModel_) external;
Parameters
Name | Type | Description |
---|---|---|
rewardsRateModel_ | IFluidLendingRewardsRateModel | the 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
Name | Type | Description |
---|---|---|
assets_ | uint256 | amount 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
Name | Type | Description |
---|---|---|
tokenExchangePrice_ | uint256 | exchange price of fToken share to underlying asset |
liquidityExchangePrice_ | uint256 | exchange 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;