IIsleGlobalsEvents

Git Source

Events

Initialized

event Initialized();

IsleVaultSet

The address for the Isle vault has been set.

event IsleVaultSet(address indexed previousIsleVault_, address indexed currentIsleVault_);

ProtocolPausedSet

The protocol pause was set to a new state.

event ProtocolPausedSet(address indexed caller_, bool protocolPaused_);

ContractPausedSet

Emitted when a contract is paused or unpaused.

event ContractPausedSet(address indexed caller_, address indexed contract_, bool contractPaused_);

FunctionUnpausedSet

Emitted when a function is unpaused or paused.

event FunctionUnpausedSet(
    address indexed caller_, address indexed contract_, bytes4 indexed sig_, bool functionUnpaused_
);

ProtocolFeeSet

Emitted when the protocol fee has been set.

event ProtocolFeeSet(uint24 protocolFee_);

ValidCollateralAssetSet

A valid asset was set.

event ValidCollateralAssetSet(address indexed collateralAsset_, bool isValid_);

ValidPoolAssetSet

A valid asset was set.

event ValidPoolAssetSet(address indexed poolAsset_, bool isValid_);

ValidPoolAdminSet

Emitted when a valid pool admin is set.

event ValidPoolAdminSet(address indexed poolAdmin_, bool isValid_);

MaxCoverLiquidationSet

The max liquidation percent for the given pool manager has been set.

event MaxCoverLiquidationSet(address indexed poolManager_, uint24 maxCoverLiquidation_);

MinCoverSet

Emitted when the min cover value is set.

event MinCoverSet(address indexed poolConfigurator_, uint104 indexed minCover_);

PoolLimitSet

Emitted when the pool limit is set.

event PoolLimitSet(address indexed poolConfigurator_, uint104 poolLimit_);

Last updated