zcash-android-wallet-sdk / cash.z.wallet.sdk.entity / MinedTransaction

MinedTransaction

interface MinedTransaction : Transaction

Parent type for transactions that have been mined. This is useful for putting all transactions in one list for things like history. A mined tx should have all properties, except possibly a memo.

Properties

blockTimeInSeconds

abstract val blockTimeInSeconds: Long

minedHeight

abstract val minedHeight: Int

noteId

abstract val noteId: Long

rawTransactionId

abstract val rawTransactionId: ByteArray

transactionIndex

abstract val transactionIndex: Int

Inheritors

ConfirmedTransaction

A mined, shielded transaction. Since this is a MinedTransaction, it represents data on the blockchain.

data class ConfirmedTransaction : MinedTransaction, SignedTransaction