AToken
AToken
aTokens are tokens minted and burnt upon supply and withdraw of assets to Pac Finance market, which denote the amount of crypto assets supplied and the yield earned on those assets. The aTokens’ value is pegged to the value of the corresponding supplied asset at a 1:1 ratio and can be safely stored, transferred or traded. All yield collected by the aTokens' reserves are distributed to aToken holders directly by continuously increasing their wallet balance.
EIP20 Methods
All standard EIP20 methods are implemented for aTokens, such as balanceOf
, transfer
, transferFrom
, approve
, totalSupply
etc.
💡 `balanceOf` will always return the most up to date balance of the user, which includes their principal balance + the yield generated by the principal balance.
EIP712 Methods
DOMAIN_SEPARATOR
function DOMAIN_SEPARATOR()
Get the domain separator for the token at current chain.
nonces
function nonces(address owner)
Returns the nonce value for address specified as parameter. This is the nonce used when calling permit()
Pac Finance View Methods
scaledBalanceOf
function scaledBalanceOf(address user)
Returns the scaled supply balance of user
. The scaled balance is the sum of all the updated stored balance divided by the reserve's liquidity index at the moment of the update.
getScaledUserBalanceAndSupply
function getScaledUserBalanceAndSupply(address user)
Returns the scaled balance of the user and the scaled total supply.
scaledTotalSupply
function scaledTotalSupply()
Returns the scaled total supply of the aToken.
getPreviousIndex
function getPreviousIndex(address user)
Returns last index interest that was accrued to the user's balance (expressed in ray).
getIncentivesController
function getIncentivesController()
Returns the address of the Incentives Controller contract
POOL
function POOL()
Returns the address of the associated Pool for the aToken.
UNDERLYING_ASSET_ADDRESS
function UNDERLYING_ASSET_ADDRESS()
Returns address of the underlying reserve asset.
RESERVE_TREASURY_ADDRESS
function RESERVE_TREASURY_ADDRESS()
Returns address of the Pac Finance Treasury, controlled by governance, receiving the fee on this aToken.
Pac Finance Write Methods
setIncentivesController
function setIncentivesController(IAaveIncentivesController controller)
Sets a new Incentives Controller.
Only Pool Admin can call this methods. To update Incentives Controller on main Pac Finance market, Governance Proposal must be submitted.
permit
Allows a user to permit another account (or contract) to use their funds using a signed message. This enables gas-less transactions and single approval/transfer transactions.
FAQ
How aToken earn interest? / How aToken balance increases?
LendingPool methods (deposit, withdraw, borrow, repay, liquidationCall) updates the state and cumulated liquidity index of the reserve once every block. AToken's
balanceOf
method returns the balance computed based onblock.timestamp
andliquidityIndex
of the underlying reserve and hence, returns the most up to date balance of account, which includesprincipal + interest.
LiquidityRate vs LiquidityIndex
Can I transfer aTokens?
Yes! with few caveat to keep in mind
By transferring aTokens, you’re transferring your balance of the underlying asset. Only the account holding the aTokens can
withdraw
the deposited asset.AToken transfer will fail if the resulting Health Factor of
user
will end up being below 1.
If I transfer aToken does my pending liquidity rewards get transferred?
No, liquidity rewards earned prior to the transfer of aToken are accrued by the user/address holding the aTokens originally. Though, all future liquidity rewards will be earned by the new recipient.
What is the difference between ScaledBalance and Balance?
Example please!
Let’s say you supply 1,000 USDB to the Pac Finance, you will receive 1,000 aUSDB (at 1:1 exchange rate).
You can see your aUSDB balance increasing right away.
Now, say a month later your aUSDB balance is 1,050. You could withdraw 1,050 USDB from LendingPool by burning 1050 aUSDB.
Last updated