Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Document virtual borrow assets behavior #639

Merged
merged 7 commits into from
Dec 11, 2023
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/libraries/SharesMathLib.sol
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ library SharesMathLib {

/// @dev A number of virtual assets of 1 enforces a conversion rate between shares and assets when a market is
/// empty.
/// @dev Warning: virtual borrow assets behave like unrealizable bad debt, but it is assumed the borrow share price
/// stays low enough to not inflate the virtual borrow assets too much.
Rubilmax marked this conversation as resolved.
Show resolved Hide resolved
uint256 internal constant VIRTUAL_ASSETS = 1;

/// @dev Calculates the value of `assets` quoted in shares, rounding down.
Expand Down
Loading