IPoolConfiguratorEvents

Git Source

Events

Initialized

Emitted when a pool configurator is initialized

event Initialized(address indexed poolAdmin_, address indexed asset_, address pool_);

BuyerSet

Emitted when the buyer of a pool is set

event BuyerSet(address indexed buyer_);

ValidSellerSet

Emitted when a valid seller is set

event ValidSellerSet(address indexed seller_, bool isValid_);

ValidLenderSet

Emitted when a valid lender is set

event ValidLenderSet(address indexed lender_, bool isValid_);

AdminFeeSet

Emitted when an admin fee rate is set

event AdminFeeSet(uint256 adminFee_);

OpenToPublicSet

Emitted when the pool is set as open to the public

event OpenToPublicSet(bool isOpenToPublic_);

GracePeriodSet

Emitted when the grace period of the pool is set

event GracePeriodSet(uint256 gracePeriod_);

RedeemProcessed

Emitted when a redeem is processed

event RedeemProcessed(address indexed owner_, uint256 redeemableShares_, uint256 resultingAssets_);

CoverDeposited

Emitted when the pool cover is deposited

event CoverDeposited(uint256 amount_);

CoverWithdrawn

Emitted when the pool cover is withdrawn

event CoverWithdrawn(uint256 amount_);

RedeemRequested

Emitted when an owner requests a redemption

event RedeemRequested(address indexed owner_, uint256 shares_);

SharesRemoved

Emitted when an owner removes shares from their withdrawal request

event SharesRemoved(address indexed owner_, uint256 shares_);

CoverLiquidated

Emitted when the pool cover is liquidated

event CoverLiquidated(uint256 toPool_);

Last updated