PrimaryLendingPlatformV2Zksync
Overview
License: MIT
The PrimaryLendingPlatformV2Zksync contract is the contract that provides the functionality for lending platform system.
Contract that provides the functionality for lending platform system. Inherit from PrimaryLendingPlatformV2Core.
Functions info
withdraw (0x127b642e)
Withdraws project tokens from the caller's deposit position.
Allows a user to withdraw project tokens and update related token's prices.
Requirements:
The project token is listed on the platform.
The project token is not paused for withdrawals.
The project token amount and deposited project token amount in the user's deposit position is greater than 0.
Effects:
Update price of related tokens.
The deposited amount for the user and the specified project token is decreased by the withdrawn amount.
The total deposited project tokens for the specified token is decreased by the withdrawn amount.
If the user has an outstanding loan for the project token, the interest in their borrow position may be updated.
The specified beneficiary receives the withdrawn project tokens.
Parameters:
withdrawFromRelatedContracts (0x9afab2ec)
Withdraws project tokens from related contracts and update related token's prices.
Requirements:
The project token is listed on the platform.
The project token is not paused for withdrawals.
The project token amount and deposited project token amount in the user's deposit position is greater than 0.
Effects:
Update price of related tokens.
The deposited amount for the user and the specified project token is decreased by the withdrawn amount.
The total deposited project tokens for the specified token is decreased by the withdrawn amount.
If the user has an outstanding loan for the project token, the interest in their borrow position may be updated.
Parameters:
Return values:
borrow (0xf6c0b770)
Borrows lending tokens for the caller.
Allows a user to borrow lending tokens by providing project tokens as collateral and update related token's prices.
Requirements:
The project token is listed on the platform.
The lending token is listed on the platform.
The user must not have a leverage position for the
projectToken
.The
lendingToken
address must not be address(0).The
lendingTokenAmount
must be greater than zero.If the user already has a lending token for the
projectToken
, it must match thelendingToken
address.
Effects:
Update price of related tokens.
Increases the borrower's borrow position in the given project and lending token.
Increase the total borrow statistics.
Updates the borrower's current lending token used for collateral if the current lending token is address(0).
Transfers the lending tokens to the borrower..
Parameters:
borrowFromRelatedContract (0x07f4a25c)
Allows a related contract to borrow lending tokens on behalf of a user by providing project tokens as collateral and update related token's prices.
Requirements:
The project token is listed on the platform.
Caller is a related contract.
The lending token is listed on the platform.
The user must not have a leverage position for the
projectToken
.The
lendingToken
address must not be address(0).The
lendingTokenAmount
must be greater than zero.If the user already has a lending token for the
projectToken
, it must match thelendingToken
address.
Effects:
Update price of related tokens.
Increases the borrower's borrow position in the given project and lending token.
Increase the total borrow statistics.
Updates the borrower's current lending token used for collateral if the current lending token is address(0).
Transfers the lending tokens to the borrower.
Parameters:
Return values:
supply (0xd07ab026)
Supplies a specified amount of a lending token to the platform.
Allows a user to supply a specified amount of a lending token to the platform.
Parameters:
Requirements:
The lending token is listed.
The lending token is not paused.
The lending token amount is greater than 0.
Minting the bLendingTokens is successful and the minted amount is greater than 0.
Effects:
Mints the corresponding bLendingTokens and credits them to the user. |
supplyFromRelatedContract (0xac160433)
Supplies a certain amount of lending tokens to the platform from a specific user.
Requirements:
The lending token is listed.
Called by a related contract.
The lending token is not paused.
The lending token amount is greater than 0.
Minting the bLendingTokens is successful and the minted amount is greater than 0.
Effects:
Mints the corresponding bLendingTokens and credits them to the user.
Parameters:
redeem (0xe9bae8a8)
Redeems a specified amount of bLendingToken from the platform.
Function that performs the redemption of bLendingToken and returns the corresponding lending token to user.
Requirements:
The lendingToken is listed.
The lending token should not be paused.
The bLendingTokenAmount should be greater than zero.
The redemption of bLendingToken should not result in a redemption error.
Effects:
Burns the bLendingTokens from the user.
Transfers the corresponding lending tokens to the user.
Parameters:
redeemFromRelatedContract (0xa62b7bd7)
Function that performs the redemption of bLendingToken on behalf of a user and returns the corresponding lending token to the user by related contract.
Requirements:
The lendingToken is listed. _ - Called by a related contract.
The lending token should not be paused.
The bLendingTokenAmount should be greater than zero.
The redemption of bLendingToken should not result in a redemption error.
Effects:
Burns the bLendingTokens from the user.
Transfers the corresponding lending tokens to the user.
Parameters:
redeemUnderlying (0xb78deb78)
Redeems a specified amount of lendingToken from the platform.
Function that performs the redemption of lending token and returns the corresponding underlying token to user.
Requirements:
The lending token is listed.
The lending token should not be paused.
The lendingTokenAmount should be greater than zero.
The redemption of lendingToken should not result in a redemption error.
Effects:
Transfers the corresponding underlying tokens to the user.
Parameters:
redeemUnderlyingFromRelatedContract (0x3898b641)
Function that performs the redemption of lending token on behalf of a user and returns the corresponding underlying token to the user by related contract.
Requirements:
The lending token is listed.
Called by a related contract.
The lending token should not be paused.
The lendingTokenAmount should be greater than zero.
The redemption of lendingToken should not result in a redemption error.
Effects:
Transfers the corresponding underlying tokens to the user.
Parameters:
pitRemainingWithUpdatePrices (0xe662d5c5)
Returns the remaining PIT (primary index token) of a user's borrow position for a specific project token and lending token after updating related token's prices.
Parameters:
Return values:
getTokenEvaluationWithUpdatePrices (0x4d247b46)
Returns the evaluation of a specific token amount in USD after updating related token's prices.
Parameters:
Return values:
getPositionWithUpdatePrices (0xa767ebd3)
Returns the details of a user's borrow position for a specific project token and lending token after updating related token's prices.
Parameters:
Return values:
getCollateralAvailableToWithdrawWithUpdatePrices (0x45f0219c)
Calculates the collateral available for withdrawal based on the loan-to-value ratio of a specific project token after updating related token's prices.
Parameters:
Return values:
getLendingAvailableToBorrowWithUpdatePrices (0x5da267d7)
Calculates the lending token available amount for borrowing after updating related token's prices.
Parameters:
Return values:
Last updated