Strike Docs
Search…
Strike Docs
Strike Documentation
Getting Started
STokens
Mint
Redeem
Redeem Underlying
Borrow
Repay Borrow
Repay Borrow Behalf
Transfer
Liquidate Borrow
Key Events
Error Codes
Failure Info
Exchange Rate
Get Cash
Total Borrow
Borrow Balance
Borrow Rate
Total Supply
Underlying Balance
Supply Rate
Total Reserves
Reserve Factor
Comptroller
Governance
API
Strike.js
Security
Powered By
GitBook
Underlying Balance
The user's underlying balance, representing their assets in the protocol, is equal to the user's sToken balance multiplied by the
Exchange Rate
.
SErc20 / SEther
1
function balanceOfUnderlying(address account) returns (uint)
Copied!
account
: The account to get the underlying balance of.
RETURN
: The amount of underlying currently owned by the account.
Solidity
1
SErc20 sToken = SToken(0x3FDA...);
2
uint tokens = sToken.balanceOfUnderlying(msg.caller);
Copied!
Web3 1.0
1
const sToken = SEther.at(0x3FDB...);
2
const tokens = await sToken.methods.balanceOfUnderlying(account).call();
Copied!
Previous
Total Supply
Next
Supply Rate
Last modified
1yr ago
Copy link