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

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

package tech.figure.eventstream.stream.models

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

/**
 * Represents errored Tx events that collected a fee.
 */
@JsonClass(generateAdapter = true)
data class TxError(
    val blockHeight: Long,
    val blockDateTime: OffsetDateTime?,
    val code: Long,
    val info: String,
    val txHash: String,
    val fee: Long,
    val denom: String
)




© 2015 - 2025 Weber Informatics LLC | Privacy Policy