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 contract via tonicSupplySpeeds and borrowSupplySpeeds.

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
uint tonicBorrowSpeed = tonicBorrowSpeeds(tToken)

Last updated