SinglePool
Code
Address
Events, Read-Only Functions, and State-Changing Functions
Last updated
Last updated
event Borrow(address user, address plusPoolAddress, uint borrowAmount, uint accountBorrows, uint totalBorrows);event Repay(address user, address plusPoolAddress, uint repayAmount, uint accountBorrows, uint totalBorrows);function withdrawActive() public view returns (bool)function depositActive() public view returns (bool)function transfer(address _to, uint _value) public returns (bool)function transferFrom(address _from, address _to, uint _value) public returns (bool)function approve(address _spender, uint _value) public returns (bool)function depositETH() public payablefunction depositToken(uint depositAmount) publicfunction withdraw(uint withdrawAmount)function withdrawETHByAmount(uint withdrawTokens)function withdrawToken(uint withdrawAmount)function withdrawTokenByAmount(uint withdrawTokens)function addReserves(uint addAmount) external payablefunction claimReward() public