Event Reference
Complete reference of all events emitted by Flux Protocol contracts.
FluxVault Events
Deposit
event Deposit(
address indexed sender,
address indexed owner,
uint256 assets,
uint256 shares
);Emitted when an LP deposits assets into the vault.
Withdraw
event Withdraw(
address indexed sender,
address indexed receiver,
address indexed owner,
uint256 assets,
uint256 shares
);Emitted when an LP withdraws assets from the vault.
Borrow
Emitted when a manager borrows from the vault.
Repay
Emitted when a manager repays debt.
Liquidate
Emitted when a position is liquidated.
BadDebtAccrued
Emitted when bad debt is recorded.
Strategy Events
ParameterUpdated
Emitted when strategy parameters change (mutable strategies only).
Oracle Events
PriceUpdated
Emitted when oracle price is updated.
Related Documentation
Last updated