Annex Docs
Search…
Annex Docs
Annex Docs
Annex Finance Documentation
Getting Started
ATokens
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
Annex.js
Auction
Security
Pools
Powered By
GitBook
Total Supply
Total Supply is the number of tokens currently in circulation in this aToken market. It is part of the EIP-20 interface of the aToken contract.
SErc20 / SEther
1
function totalSupply() returns (uint)
Copied!
RETURN
: The total number of tokens in circulation for the market.
Solidity
1
SErc20 aToken = SToken(0x3FDA...);
2
uint tokens = aToken.totalSupply();
Copied!
Web3 1.0
1
const
aToken
=
SEther
.
at
(
0x3FDB
...
);
2
const
tokens
=
(
await
aToken
.
methods
.
totalSupply
().
call
());
Copied!
Previous
Borrow Rate
Next
Underlying Balance
Last modified
10mo ago
Copy link