Total Reserves
function totalReserves() returns (uint)SErc20 sToken = SToken(0x3FDA...);
uint reserves = sToken.totalReserves();const sToken = SEther.at(0x3FDB...);
const reserves = (await sToken.methods.totalReserves().call());Last updated
Was this helpful?