PToken
Implementation of the interest bearing token for the ParaSpace protocol
PERMIT_TYPEHASH
PTOKEN_REVISION
_treasury
_underlyingAsset
getRevision
Returns the revision number of the contract
Needs to be defined in the inherited class as a constant.
Return Values
[0]
uint256
The revision number
constructor
Constructor.
Parameters
pool
contract IPool
The address of the Pool contract
initialize
Initializes the pToken
Parameters
initializingPool
contract IPool
treasury
address
The address of the ParaSpace treasury, receiving the fees on this pToken
underlyingAsset
address
The address of the underlying asset of this pToken (E.g. WETH for pWETH)
incentivesController
contract IRewardController
The smart contract managing potential incentives distribution
pTokenDecimals
uint8
The decimals of the pToken, same as the underlying asset's
pTokenName
string
The name of the pToken
pTokenSymbol
string
The symbol of the pToken
params
bytes
A set of encoded parameters for additional initialization
mint
Mints amount
xTokens to user
Parameters
caller
address
The address performing the mint
onBehalfOf
address
The address of the user that will receive the minted xTokens
amount
uint256
The amount of tokens getting minted
index
uint256
The next liquidity index of the reserve
Return Values
[0]
bool
true
if the the previous balance of the user was 0
burn
Burns xTokens from user
and sends the equivalent amount of underlying to receiverOfUnderlying
In some instances, the mint event could be emitted from a burn transaction if the amount to burn is less than the interest that the user accrued
Parameters
from
address
The address from which the xTokens will be burned
receiverOfUnderlying
address
The address that will receive the underlying
amount
uint256
The amount being burned
index
uint256
The next liquidity index of the reserve
mintToTreasury
Mints xTokens to the reserve treasury
Parameters
amount
uint256
The amount of tokens getting minted
index
uint256
The next liquidity index of the reserve
transferOnLiquidation
Transfers xTokens in the event of a borrow being liquidated, in case the liquidators reclaims the xToken
Parameters
from
address
The address getting liquidated, current owner of the xTokens
to
address
The recipient
value
uint256
The amount of tokens getting transferred
balanceOf
Returns the amount of tokens owned by account
.
totalSupply
Returns the amount of tokens in existence.
RESERVE_TREASURY_ADDRESS
Returns the address of the ParaSpace treasury, receiving the fees on this xToken.
Return Values
[0]
address
Address of the ParaSpace treasury
UNDERLYING_ASSET_ADDRESS
Returns the address of the underlying asset of this xToken (E.g. WETH for pWETH)
Return Values
[0]
address
The address of the underlying asset
transferUnderlyingTo
Transfers the underlying asset to target
.
Used by the Pool to transfer assets in borrow(), withdraw() and flashLoan()
Parameters
target
address
amount
uint256
The amount getting transferred
handleRepayment
Handles the underlying received by the xToken after the transfer has been completed.
The default implementation is empty as with standard ERC20 tokens, nothing needs to be done after the transfer is concluded. However in the future there may be xTokens that allow for example to stake the underlying to receive LM rewards. In that case, handleRepayment()
would perform the staking of the underlying asset.
Parameters
user
address
The user executing the repayment
amount
uint256
The amount getting repaid
permit
Allow passing a signed message to approve spending
implements the permit function as for https://github.com/ethereum/EIPs/blob/8a34d644aacf0f9f8f00815307fd7dd5da07655f/EIPS/eip-2612.md
Parameters
owner
address
The owner of the funds
spender
address
The spender
value
uint256
The amount
deadline
uint256
The deadline timestamp, type(uint256).max for max deadline
v
uint8
Signature param
r
bytes32
Signature param
s
bytes32
Signature param
_transfer
Transfers the pTokens between two users. Validates the transfer (ie checks for valid HF after the transfer) if required
Parameters
from
address
The source address
to
address
The destination address
amount
uint256
The amount getting transferred
validate
bool
True if the transfer needs to be validated, false otherwise
_transfer
Overrides the parent _transfer to force validated transfer() and transferFrom()
Parameters
from
address
The source address
to
address
The destination address
amount
uint128
The amount getting transferred
DOMAIN_SEPARATOR
Overrides the base function to fully implement IPToken see IncentivizedERC20.DOMAIN_SEPARATOR()
for more detailed documentation
nonces
Overrides the base function to fully implement IPToken see IncentivizedERC20.nonces()
for more detailed documentation
_EIP712BaseId
Returns the user readable name of signing domain (e.g. token name)
Return Values
[0]
string
The name of the signing domain
rescueTokens
Rescue and transfer tokens locked in this contract
Parameters
token
address
The address of the token
to
address
The address of the recipient
amount
uint256
The amount of token to transfer
getXTokenType
return token type`of xToken