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:
projectToken
address
The address of the project token to withdraw.
projectTokenAmount
uint256
The amount of project tokens to withdraw.
priceIds
bytes32[]
An array of bytes32 price identifiers to update.
updateData
bytes[]
An array of bytes update data for the corresponding price identifiers.
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:
projectToken
address
The address of the project token to withdraw.
projectTokenAmount
uint256
The amount of project tokens to withdraw.
user
address
The address of the user withdrawing the tokens.
beneficiary
address
The address of the beneficiary receiving the tokens.
priceIds
bytes32[]
An array of bytes32 price identifiers to update.
updateData
bytes[]
An array of bytes update data for the corresponding price identifiers.
Return values:
[0]
uint256
The amount of project tokens withdrawn and transferred to the beneficiary.
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:
projectToken
address
The address of the project token used as collateral.
lendingToken
address
The address of the lending token being borrowed.
lendingTokenAmount
uint256
The amount of lending token being borrowed.
priceIds
bytes32[]
An array of price identifiers used to update the price oracle.
updateData
bytes[]
An array of update data used to update the price oracle.
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:
projectToken
address
The address of the project token being used as collateral.
lendingToken
address
The address of the lending token being borrowed.
lendingTokenAmount
uint256
The amount of lending tokens to be borrowed.
user
address
The address of the user on whose behalf the lending tokens are being borrowed.
priceIds
bytes32[]
An array of price identifiers used to update the price oracle.
updateData
bytes[]
An array of update data used to update the price oracle.
Return values:
[0]
uint256
amount of lending tokens borrowed
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:
lendingToken
address
The address of the lending token being supplied.
lendingTokenAmount
uint256
The amount of the lending token being supplied.
priceIds
bytes32[]
An array of price identifiers used to update the price oracle.
updateData
bytes[]
An array of update data used to update the price oracle.
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:
lendingToken
address
Address of the lending token.
lendingTokenAmount
uint256
Amount of lending tokens to be supplied.
user
address
Address of the user.
priceIds
bytes32[]
An array of price identifiers used to update the price oracle.
updateData
bytes[]
An array of update data used to update the price oracle.
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:
lendingToken
address
Address of the lending token.
bLendingTokenAmount
uint256
Amount of bLending tokens to be redeemed.
priceIds
bytes32[]
An array of price identifiers used to update the price oracle.
updateData
bytes[]
An array of update data used to update the price oracle.
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:
lendingToken
address
Address of the lending token.
bLendingTokenAmount
uint256
Amount of bLending tokens to be redeemed.
user
address
Address of the user.
priceIds
bytes32[]
An array of price identifiers used to update the price oracle.
updateData
bytes[]
An array of update data used to update the price oracle.
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:
lendingToken
address
Address of the lending token.
lendingTokenAmount
uint256
Amount of lending tokens to be redeemed.
priceIds
bytes32[]
An array of price identifiers used to update the price oracle.
updateData
bytes[]
An array of update data used to update the price oracle.
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:
lendingToken
address
Address of the lending token.
lendingTokenAmount
uint256
Amount of lending tokens to be redeemed.
user
address
Address of the user.
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:
account
address
The address of the user's borrow position.
projectToken
address
The address of the project token.
lendingToken
address
The address of the lending token.
priceIds
bytes32[]
An array of price identifiers used to update the price oracle.
updateData
bytes[]
An array of update data used to update the price oracle.
Return values:
[0]
uint256
The remaining PIT of the user's borrow position.
getTokenEvaluationWithUpdatePrices (0x4d247b46)
Returns the evaluation of a specific token amount in USD after updating related token's prices.
Parameters:
token
address
The address of the token to evaluate.
tokenAmount
uint256
The amount of the token to evaluate.
priceIds
bytes32[]
An array of price identifiers used to update the price oracle.
updateData
bytes[]
An array of update data used to update the price oracle.
Return values:
collateralEvaluation
uint256
the USD evaluation of token by its tokenAmount
in collateral price
capitalEvaluation
uint256
the USD evaluation of token by its tokenAmount
in capital price
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:
account
address
The address of the user's borrow position.
projectToken
address
The address of the project token.
lendingToken
address
The address of the lending token.
priceIds
bytes32[]
An array of price identifiers used to update the price oracle.
updateData
bytes[]
An array of update data used to update the price oracle.
Return values:
depositedProjectTokenAmount
uint256
The amount of project tokens deposited by the user.
loanBody
uint256
The amount of the lending token borrowed by the user.
accrual
uint256
The accrued interest of the borrow position.
healthFactorNumerator
uint256
The numerator of the health factor.
healthFactorDenominator
uint256
The denominator of the health factor.
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:
account
address
Address of the user.
projectToken
address
Address of the project token.
lendingToken
address
Address of the lending token.
priceIds
bytes32[]
An array of price identifiers used to update the price oracle.
updateData
bytes[]
An array of update data used to update the price oracle.
Return values:
collateralProjectToWithdraw
uint256
The amount of collateral available for withdrawal in the project token.
getLendingAvailableToBorrowWithUpdatePrices (0x5da267d7)
Calculates the lending token available amount for borrowing after updating related token's prices.
Parameters:
account
address
Address of the user.
projectToken
address
Address of the project token.
lendingToken
address
Address of the lending token.
priceIds
bytes32[]
An array of price identifiers used to update the price oracle.
updateData
bytes[]
An array of update data used to update the price oracle.
Return values:
availableToBorrow
uint256
The amount of lending token available amount for borrowing.
Last updated