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
Total Supply
Total Supply is the number of tokens currently in circulation in this sToken market. It is part of the EIP-20 interface of the sToken contract.
SErc20 / SEther
1
function totalSupply() returns (uint)
Copied!
RETURN
: The total number of tokens in circulation for the market.
Solidity
1
SErc20 sToken = SToken(0x3FDA...);
2
uint tokens = sToken.totalSupply();
Copied!
Web3 1.0
1
const
sToken
=
SEther
.
at
(
0x3FDB
...
);
2
const
tokens
=
(
await
sToken
.
methods
.
totalSupply
().
call
());
Copied!
Previous
Borrow Rate
Next
Underlying Balance
Last modified
1yr ago
Copy link