FluidConfigHandler ​
Inherits:IFluidConfigHandler
Base contract that any Fluid Config Handler must implement
Functions ​
configPercentDiff ​
returns how much the new config would be different from current config in percent (100 = 1%, 1 = 0.01%).
solidity
function configPercentDiff() public view virtual returns (uint256 configPercentDiff_);
rebalance ​
Rebalances the configs at Fluid Liquidity based on config handler target. Reverts if no update is needed. Can only be called by an authorized rebalancer.
solidity
function rebalance() external virtual;