All Downloads are FREE. Search and download functionalities are using the official Maven repository.

tech.figure.eventstream.stream.models.BlockEvent.kt Maven / Gradle / Ivy

package tech.figure.eventstream.stream.models

import com.squareup.moshi.JsonClass
import java.time.OffsetDateTime

/**
 * Used to represent block-level events like `reward`, `commission`, etc.
 */
@JsonClass(generateAdapter = true)
data class BlockEvent(
    val blockHeight: Long,
    val blockDateTime: OffsetDateTime?,
    override val eventType: String,
    override val attributes: List
) : EncodedBlockchainEvent




© 2015 - 2025 Weber Informatics LLC | Privacy Policy