Events ​
Events ​
LogUpdateSupplyRateMagnifier ​
emitted when the supply rate magnifier config is updated
solidity
event LogUpdateSupplyRateMagnifier(uint256 supplyRateMagnifier_);
LogUpdateBorrowRateMagnifier ​
emitted when the borrow rate magnifier config is updated
solidity
event LogUpdateBorrowRateMagnifier(uint256 borrowRateMagnifier_);
LogUpdateCollateralFactor ​
emitted when the collateral factor config is updated
solidity
event LogUpdateCollateralFactor(uint256 collateralFactor_);
LogUpdateLiquidationThreshold ​
emitted when the liquidation threshold config is updated
solidity
event LogUpdateLiquidationThreshold(uint256 liquidationThreshold_);
LogUpdateLiquidationMaxLimit ​
emitted when the liquidation max limit config is updated
solidity
event LogUpdateLiquidationMaxLimit(uint256 liquidationMaxLimit_);
LogUpdateWithdrawGap ​
emitted when the withdrawal gap config is updated
solidity
event LogUpdateWithdrawGap(uint256 withdrawGap_);
LogUpdateLiquidationPenalty ​
emitted when the liquidation penalty config is updated
solidity
event LogUpdateLiquidationPenalty(uint256 liquidationPenalty_);
LogUpdateBorrowFee ​
emitted when the borrow fee config is updated
solidity
event LogUpdateBorrowFee(uint256 borrowFee_);
LogUpdateCoreSettings ​
emitted when the core setting configs are updated
solidity
event LogUpdateCoreSettings(
uint256 supplyRateMagnifier_,
uint256 borrowRateMagnifier_,
uint256 collateralFactor_,
uint256 liquidationThreshold_,
uint256 liquidationMaxLimit_,
uint256 withdrawGap_,
uint256 liquidationPenalty_,
uint256 borrowFee_
);
LogUpdateOracle ​
emitted when the oracle is updated
solidity
event LogUpdateOracle(address indexed newOracle_);
LogUpdateRebalancer ​
emitted when the allowed rebalancer is updated
solidity
event LogUpdateRebalancer(address indexed newRebalancer_);
LogRescueFunds ​
emitted when funds are rescued
solidity
event LogRescueFunds(address indexed token_);
LogAbsorbDustDebt ​
emitted when dust debt is absorbed for nftIds_
solidity
event LogAbsorbDustDebt(uint256[] nftIds_, uint256 absorbedDustDebt_);