Skip to content

Events ​

Git Source

Events ​

LogSetMaxLTV ​

emitted whenever maxLTV is updated

solidity
event LogSetMaxLTV(uint256 maxLTV);

LogQueue ​

emitted when a queue() process is executed

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

LogClaim ​

emitted when a claim() process is executed

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

LogSetAuth ​

emitted when an auth is modified by owner

solidity
event LogSetAuth(address indexed auth, bool allowed);

LogSetGuardian ​

emitted when a guardian is modified by owner

solidity
event LogSetGuardian(address indexed guardian, bool allowed);

LogSetAllowed ​

emitted when an allowed user is modified by auths

solidity
event LogSetAllowed(address indexed user, bool allowed);

LogSetAllowListActive ​

emitted when allowListActive status is updated

solidity
event LogSetAllowListActive(bool active);

LogPaused ​

emitted when protocol is paused by guardian

solidity
event LogPaused();

LogUnpaused ​

emitted when protocol is unpaused by owner

solidity
event LogUnpaused();