# TONIC Distribution Speeds

The "TONIC Speed" is defined by the amount of TONIC emitted per block to suppliers and borrowers. The speed of token distribution is unique to each market and also to supplier and borrowers. Distribution within each market is controlled by our [TectonicCore](https://tectonic.gitbook.io/docs/developer/tectoniccore) contract via `tonicSupplySpeeds` and `borrowSupplySpeeds`.

<pre class="language-solidity"><code class="lang-solidity">TectonicCore core = TectonicCare(0x123...)
address tToken = 0xabc...
// Amount of TONIC emitted to suppliers on tToken market each block
uint tonicSupplySpeed = tonicSupplySpeeds(tToken)
// Amount of TONIC emitted to borrowers on tToken market each block
<strong>uint tonicBorrowSpeed = tonicBorrowSpeeds(tToken)
</strong></code></pre>
