DustGenerationDtimeUpdate

data class DustGenerationDtimeUpdate(val eventId: Long, val rawHex: String, val blockHeight: Long?, val timestamp: Long?) : DustEvent

Dust generation time updated.

When this occurs:

  • Blockchain updates dust generation parameters

  • Affects future dust accumulation rate

State Update:

  • Updates generation dtime in DustLocalState

  • Affects balance calculations going forward

Constructors

Link copied to clipboard
constructor(eventId: Long, rawHex: String, blockHeight: Long?, timestamp: Long?)

Properties

Link copied to clipboard
open override val blockHeight: Long?

Block height where event occurred.

Link copied to clipboard
open override val eventId: Long

Event ID from indexer (for tracking sync progress).

Link copied to clipboard
open override val rawHex: String

Raw hex-encoded event data (SCALE codec). This is the actual data that gets replayed into DustLocalState.

Link copied to clipboard
open override val timestamp: Long?

Block timestamp (milliseconds).