Single/Plus Utils
Last updated
This contract can check the available reward for Single / Plus Pool of the KLAYswap service.
getPendingSingleReward
function getPendingSingleReward(address pool, address user) public view returns (
uint reward
) Claimable KSP reward information in a specific single pool
Input Parameters
pool : Single Pool address
user : User address
Outputs
reward : Claimable KSP reward
getPendingPlusReward
function getPendingPlusReward(address pool, address user) public view returns (
uint reward
) Claimable KSP reward information in a specific plus pool
Input Parameters
pool : Plus Pool address
user : User address
Outputs
reward : Claimable KSP reward
getSinglePoolBalance
Query the number of assets of a user in a specific SinglePool
Input Parameters
pool : Single Pool address
user : User address
Outputs
ibal : Number of iTokens deposited by users
bal : The number of tokens corresponding to the iToken deposited by the user
getPlusPoolStatus
User's current status in a specific PlusPool
Input Parameters
pool : Plus Pool address
user : User address
Outputs
lp : The number of LPs that the user is depositing in PlusPool
debtA : The number of tokenA borrowed by the user
debtB : The number of tokenB borrowed by the user
Last updated
function getSinglePoolBalance(address pool, address user) public view returns (
uint ibal, uint bal
)function getPlusPoolStatus(address pool, address user) public view returns (
uint lp, uint debtA, uint debtB
)