SyncState

sealed class SyncState

Sync state for UI/logging.

Inheritors

Types

Link copied to clipboard

Connecting to indexer.

Link copied to clipboard
data class Error(val message: String) : SyncState

Sync error (after retries exhausted).

Link copied to clipboard
data class Synced(val highestTransactionId: Int) : SyncState

Synced up to highest available transaction.

Link copied to clipboard
data class Syncing(val processedCount: Int, val currentTransactionId: Int) : SyncState

Syncing transactions.