# Supply Rate

At any point in time one may query the contract to get the current supply rate per block. The supply rate is derived from the [borrow rate](https://docs.agilefi.org/atokens/borrow-rate), [reserve factor](https://docs.agilefi.org/atokens/reserve-factor) and the amount of [total borrows](https://docs.agilefi.org/atokens/total-borrow).

**SErc20 / SEther**

```
function supplyRatePerBlock() returns (uint)
```

* `RETURN`: The current supply rate as an unsigned integer, scaled by 1e18.

**Solidity**

```
SErc20 aToken = SToken(0x3FDA...);
uint supplyRateMantissa = aToken.supplyRatePerBlock();
```

**Web3 1.0**

```javascript
const aToken = SEther.at(0x3FDB...);
const supplyRate = (await aToken.methods.supplyRatePerBlock().call()) / 1e18;
```
