Events

Transfer

event Transfer(address indexed from, address indexed to, uint256 value);

Logs the transfer of the market token.

Approval

event Approval(address indexed owner, address indexed spender, uint256 value);

Logs changes in allowance with the market token.

MaxTotalSupplyUpdated

event MaxTotalSupplyUpdated(uint256 assets);

Logs changes to the maximum total supply of the market token.

AnnualInterestBipsUpdated

event AnnualInterestBipsUpdated(uint256 annualInterestBipsUpdated);

Logs changes to the APR bips.

LiquidityCoverageRatioUpdated

event LiquidityCoverageRatioUpdated(uint256 liquidityCoverageRatioUpdated);

Logs changes to the liquidity coverage ratio

Deposit

Logs deposits to the market.

Borrow

Logs borrows from the market.

MarketClosed

Logs the closure of a market.

FeesCollected

Logs the collection of fees.

StateUpdated

Logs changes to the market state.

ScaleFactorUpdated

Logs changes to the scale factor.

AuthorizationStatusUpdated

Logs changes to an account's authorization.

WithdrawalBatchExpired

Logs withdrawal batch expiration on market state changes.

WithdrawalBatchCreated

Logs the creation of a withdrawal batch.

WithdrawalBatchClosed

Logs the closure of a withdrawal batch.

WithdrawalBatchPayment

Logs the payment of a withdrawal batch.

WithdrawalQueued

Logs queued withdrawals.

WithdrawalExecuted

Logs the execution of a withdrawal.

MarketDeployed

Logs the deployment of a new market.

Last updated