AlkemiEarnVerified.sol
View Source: contracts/AlkemiEarnVerified.sol
↗ Extends: Exponential, SafeToken
Structs
Balance
Market
SupplyLocalVars
WithdrawLocalVars
AccountValueLocalVars
PayBorrowLocalVars
BorrowLocalVars
LiquidateLocalVars
Contract Members
Constants & Variables
Events
Modifiers
onlyOwner
onlyCustomerWithKYC
nonReentrant
onlyOwner
Modifier to check if the caller is the admin of the contract
Arguments
onlyCustomerWithKYC
Modifier to check if the caller is KYC verified
Arguments
nonReentrant
Prevents a contract from calling itself, directly or indirectly. If you mark a function nonReentrant
, you should also mark it external
. Calling one nonReentrant
function from another is not supported. Instead, you can implement a private
function doing the actual work, and an external
wrapper marked as nonReentrant
.
Arguments
Functions
initializer()
()
_changeKYCAdmin(address KYCAdmin, bool newStatus)
_changeCustomerKYC(address customer, bool newStatus)
_changeLiquidator(address liquidator, bool newStatus)
min(uint256 a, uint256 b)
addCollateralMarket(address asset)
calculateInterestIndex(uint256 startingInterestIndex, uint256 interestRateMantissa, uint256 blockStart, uint256 blockEnd)
calculateBalance(uint256 startingBalance, uint256 interestIndexStart, uint256 interestIndexEnd)
getPriceForAssetAmount(address asset, uint256 assetAmount, bool mulCollatRatio)
calculateBorrowAmountWithFee(uint256 borrowAmount)
fetchAssetPrice(address asset)
assetPrices(address asset)
getAssetAmountForValue(address asset, struct Exponential.Exp ethValue)
_adminFunctions(address newPendingAdmin, address newOracle, bool requestedState, uint256 originationFeeMantissa, uint256 newCloseFactorMantissa, address wethContractAddress, address _rewardControl)
_acceptAdmin()
getAccountLiquidity(address account)
getSupplyBalance(address account, address asset)
getBorrowBalance(address account, address asset)
_supportMarket(address asset, InterestRateModel interestRateModel)
_suspendMarket(address asset)
_setRiskParameters(uint256 collateralRatioMantissa, uint256 liquidationDiscountMantissa)
_setMarketInterestRateModel(address asset, InterestRateModel interestRateModel)
_withdrawEquity(address asset, uint256 amount)
supplyEther(uint256 etherAmount)
revertEtherToUser(address user, uint256 etherAmount)
supply(address asset, uint256 amount)
withdrawEther(address user, uint256 etherAmount)
withdraw(address asset, uint256 requestedAmount)
calculateAccountLiquidity(address userAddress)
calculateAccountValuesInternal(address userAddress)
calculateAccountValues(address userAddress)
repayBorrow(address asset, uint256 amount)
liquidateBorrow(address targetAccount, address assetBorrow, address assetCollateral, uint256 requestedAmountClose)
calculateDiscountedRepayToEvenAmount(address targetAccount, struct Exponential.Exp underwaterAssetPrice, address assetBorrow)
calculateDiscountedBorrowDenominatedCollateral(struct Exponential.Exp underwaterAssetPrice, struct Exponential.Exp collateralPrice, uint256 supplyCurrent_TargetCollateralAsset)
calculateAmountSeize(struct Exponential.Exp underwaterAssetPrice, struct Exponential.Exp collateralPrice, uint256 closeBorrowAmount_TargetUnderwaterAsset)
borrow(address asset, uint256 amount)
supplyOriginationFeeAsAdmin(address asset, address user, uint256 amount, uint256 newSupplyIndex)
refreshAlkIndex(address market, address user, bool isSupply, bool isVerified)
getMarketBalances(address asset)
revertIfError(enum ErrorReporter.Error err)
initializer
AlkemiEarnVerified
is the core contract
Arguments
Do not pay directly into AlkemiEarnVerified, please use supply
.
Arguments
_changeKYCAdmin
Function for use by the admin of the contract to add or remove KYC Admins
Arguments
_changeCustomerKYC
Function for use by the KYC admins to add or remove KYC Customers
Arguments
_changeLiquidator
Function for use by the admin of the contract to add or remove Liquidators
Arguments
min
Simple function to calculate min between two numbers.
Arguments
addCollateralMarket
Adds a given asset to the list of collateral markets. This operation is impossible to reverse. Note: this will not add the asset if it already exists.
Arguments
calculateInterestIndex
Calculates a new supply index based on the prevailing interest rates applied over time This is defined as we multiply the most recent supply index by (1 + blocks times rate)
Returns
Return value is expressed in 1e18 scale
Arguments
calculateBalance
Calculates a new balance based on a previous balance and a pair of interest indices This is defined as: The user's last balance checkpoint is multiplied by the currentSupplyIndex value and divided by the user's checkpoint index value
Returns
Return value is expressed in 1e18 scale
Arguments
getPriceForAssetAmount
Gets the price for the amount specified of the given asset.
Returns
Return value is expressed in a magnified scale per token decimals
Arguments
calculateBorrowAmountWithFee
Calculates the origination fee added to a given borrowAmount This is simply (1 + originationFee) * borrowAmount
Returns
Return value is expressed in 1e18 scale
Arguments
fetchAssetPrice
fetches the price of asset from the PriceOracle and converts it to Exp
Returns
Return value is expressed in a magnified scale per token decimals
Arguments
assetPrices
Reads scaled price of specified asset from the price oracle
Returns
0 on an error or missing price, the price scaled by 1e18 otherwise
Arguments
getAssetAmountForValue
Gets the amount of the specified asset given the specified Eth value ethValue / oraclePrice = assetAmountWei If there's no oraclePrice, this returns (Error.DIVISION_BY_ZERO, 0)
Returns
Return value is expressed in a magnified scale per token decimals
Arguments
_adminFunctions
Admin Functions. The newPendingAdmin must call _acceptAdmin
to finalize the transfer.
Returns
uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
Arguments
_acceptAdmin
Accepts transfer of admin rights. msg.sender must be pendingAdmin
Arguments
getAccountLiquidity
returns the liquidity for given account. a positive result indicates ability to borrow, whereas a negative result indicates a shortfall which may be liquidated
Returns
signed integer in terms of eth-wei (negative indicates a shortfall)
Arguments
getSupplyBalance
return supply balance with any accumulated interest for asset
belonging to account
Returns
uint supply balance on success, throws on failed assertion otherwise
Arguments
getBorrowBalance
return borrow balance with any accumulated interest for asset
belonging to account
Returns
uint borrow balance on success, throws on failed assertion otherwise
Arguments
_supportMarket
Supports a given market (asset) for use
Returns
uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
Arguments
_suspendMarket
Suspends a given supported market (asset) from use. Assets in this state do count for collateral, but users may only withdraw, payBorrow, and liquidate the asset. The liquidate function no longer checks collateralization.
Returns
uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
Arguments
_setRiskParameters
Sets the risk parameters: collateral ratio and liquidation discount
Returns
uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
Arguments
_setMarketInterestRateModel
Sets the interest rate model for a given market
Returns
uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
Arguments
_withdrawEquity
withdraws amount
of asset
from equity for asset, as long as amount
<= equity. Equity = cash + borrows - supply
Returns
uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
Arguments
supplyEther
Convert Ether supplied by user into WETH tokens and then supply corresponding WETH to user
Returns
errors if any
Arguments
revertEtherToUser
Revert Ether paid by user back to user's account in case transaction fails due to some other reason
Arguments
supply
supply amount
of asset
(which must be supported) to msg.sender
in the protocol
Returns
uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
Arguments
withdrawEther
withdraw amount
of ether
from sender's account to sender's address
Arguments
withdraw
withdraw amount
of asset
from sender's account to sender's address
Returns
uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
Arguments
calculateAccountLiquidity
Gets the user's account liquidity and account shortfall balances. This includes any accumulated interest thus far but does NOT actually update anything in storage, it simply calculates the account liquidity and shortfall with liquidity being returned as the first Exp, ie (Error, accountLiquidity, accountShortfall).
Returns
Return values are expressed in 1e18 scale
Arguments
calculateAccountValuesInternal
Gets the ETH values of the user's accumulated supply and borrow balances, scaled by 10e18. This includes any accumulated interest thus far but does NOT actually update anything in storage
Returns
(error code, sum ETH value of supplies scaled by 10e18, sum ETH value of borrows scaled by 10e18)
Arguments
calculateAccountValues
Gets the ETH values of the user's accumulated supply and borrow balances, scaled by 10e18. This includes any accumulated interest thus far but does NOT actually update anything in storage
Returns
(uint 0=success; otherwise a failure (see ErrorReporter.sol for details), sum ETH value of supplies scaled by 10e18, sum ETH value of borrows scaled by 10e18)
Arguments
repayBorrow
Users repay borrowed assets from their own address to the protocol.
Returns
uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
Arguments
liquidateBorrow
users repay all or some of an underwater borrow and receive collateral
Returns
uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
Arguments
calculateDiscountedRepayToEvenAmount
This should ONLY be called if market is supported. It returns shortfall / [Oracle price for the borrow * (collateralRatio - liquidationDiscount - 1)] If the market isn't supported, we support liquidation of asset regardless of shortfall because we want borrows of the unsupported asset to be closed. Note that if collateralRatio = liquidationDiscount + 1, then the denominator will be zero and the function will fail with DIVISION_BY_ZERO.
Returns
Return values are expressed in 1e18 scale
Arguments
calculateDiscountedBorrowDenominatedCollateral
discountedBorrowDenominatedCollateral = [supplyCurrent / (1 + liquidationDiscount)] * (Oracle price for the collateral / Oracle price for the borrow)
Returns
Return values are expressed in 1e18 scale
Arguments
calculateAmountSeize
returns closeBorrowAmount_TargetUnderwaterAsset (1+liquidationDiscount) priceBorrow/priceCollateral
Returns
Return values are expressed in 1e18 scale
Arguments
borrow
Users borrow assets from the protocol to their own address
Returns
uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
Arguments
supplyOriginationFeeAsAdmin
supply amount
of asset
(which must be supported) to admin
in the protocol
Returns
uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
Arguments
refreshAlkIndex
Trigger the underlying Reward Control contract to accrue ALK supply rewards for the supplier on the specified market
Arguments
getMarketBalances
Get supply and borrows for a market
Returns
updated supply and borrows
Arguments
revertIfError
Function to revert in case of an internal exception
Arguments
Last updated