Calculation

How Average Mint Live Time Is Calculated

Average mint live time is an activity-window metric based on mints created in the window and their latest observed trade time.

Current read-path formula

StepCalculation
Select mintsRead mints whose created_at timestamp falls inside the requested window.
Require activityKeep mints with a last_trade_at timestamp.
Per mintlive_time_ms equals last_trade_at_ms minus created_at_ms.
AverageSum 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.