Events

Git Source

Events

LogUpdateSupplyRateMagnifier

emitted when the supply rate magnifier config is updated

event LogUpdateSupplyRateMagnifier(uint256 supplyRateMagnifier_);

LogUpdateBorrowRateMagnifier

emitted when the borrow rate magnifier config is updated

event LogUpdateBorrowRateMagnifier(uint256 borrowRateMagnifier_);

LogUpdateCollateralFactor

emitted when the collateral factor config is updated

event LogUpdateCollateralFactor(uint256 collateralFactor_);

LogUpdateLiquidationThreshold

emitted when the liquidation threshold config is updated

event LogUpdateLiquidationThreshold(uint256 liquidationThreshold_);

LogUpdateLiquidationMaxLimit

emitted when the liquidation max limit config is updated

event LogUpdateLiquidationMaxLimit(uint256 liquidationMaxLimit_);

LogUpdateWithdrawGap

emitted when the withdrawal gap config is updated

event LogUpdateWithdrawGap(uint256 withdrawGap_);

LogUpdateLiquidationPenalty

emitted when the liquidation penalty config is updated

event LogUpdateLiquidationPenalty(uint256 liquidationPenalty_);

LogUpdateBorrowFee

emitted when the borrow fee config is updated

event LogUpdateBorrowFee(uint256 borrowFee_);

LogUpdateCoreSettings

emitted when the core setting configs are updated

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

event LogUpdateOracle(address indexed newOracle_);

LogUpdateRebalancer

emitted when the allowed rebalancer is updated

event LogUpdateRebalancer(address indexed newRebalancer_);

LogRescueFunds

emitted when funds are rescued

event LogRescueFunds(address indexed token_);

LogAbsorbDustDebt

emitted when dust debt is absorbed for nftIds_

event LogAbsorbDustDebt(uint256[] nftIds_, uint256 absorbedDustDebt_);