Current read-path formula
| Step | Calculation |
|---|---|
| Select mints | Read mints whose created_at timestamp falls inside the requested window. |
| Require activity | Keep mints with a last_trade_at timestamp. |
| Per mint | live_time_ms equals last_trade_at_ms minus created_at_ms. |
| Average | Sum live_time_ms values and divide by the number of eligible mints. |
Interpretation
This is best read as average observed activity time for recently created mints. It is not a guarantee that a mint is dead, graduated or inactive after the last observed trade.
Limitations
- Mints without trades are excluded from the average.
- The current Redis read path does not infer death from reserve thresholds.
- The value depends on the selected time window and backend retention.