Events

Git Source

Events

LogSetMaxLTV

emitted whenever maxLTV is updated

event LogSetMaxLTV(uint256 maxLTV);

LogQueue

emitted when a queue() process is executed

event LogQueue(
    address indexed claimTo, uint256 requestIdFrom, uint256 borrowETHAmount, uint256 queueStETHAmount, address borrowTo
);

LogClaim

emitted when a claim() process is executed

event LogClaim(address indexed claimTo, uint256 requestIdFrom, uint256 claimedAmount, uint256 repayAmount);

LogSetAuth

emitted when an auth is modified by owner

event LogSetAuth(address indexed auth, bool allowed);

LogSetGuardian

emitted when a guardian is modified by owner

event LogSetGuardian(address indexed guardian, bool allowed);

LogSetAllowed

emitted when an allowed user is modified by auths

event LogSetAllowed(address indexed user, bool allowed);

LogSetAllowListActive

emitted when allowListActive status is updated

event LogSetAllowListActive(bool active);

LogPaused

emitted when protocol is paused by guardian

event LogPaused();

LogUnpaused

emitted when protocol is unpaused by owner

event LogUnpaused();