IndexerStats

@Serializable
data class IndexerStats(val totalEvents: Long, val uniqueContracts: Long, val uniqueCredentials: Long, val firstLedger: Long, val lastLedger: Long, val eventTypes: List<EventTypeCount>)

Statistics about the indexer state.

Constructors

Link copied to clipboard
constructor(totalEvents: Long, uniqueContracts: Long, uniqueCredentials: Long, firstLedger: Long, lastLedger: Long, eventTypes: List<EventTypeCount>)

Properties

Link copied to clipboard
@SerialName(value = "eventTypes")
val eventTypes: List<EventTypeCount>
Link copied to clipboard
@SerialName(value = "first_ledger")
val firstLedger: Long
Link copied to clipboard
@SerialName(value = "last_ledger")
val lastLedger: Long
Link copied to clipboard
@SerialName(value = "total_events")
val totalEvents: Long
Link copied to clipboard
@SerialName(value = "unique_contracts")
val uniqueContracts: Long
Link copied to clipboard
@SerialName(value = "unique_credentials")
val uniqueCredentials: Long