MinedTransactionEntity

public protocol MinedTransactionEntity : AbstractTransaction, RawIdentifiable

Attributes that a Mined transaction must have

  • height on which this transaction was mined at. Convention is that -1 is retuned when it has not been mined yet

    Declaration

    Swift

    var minedHeight: Int { get set }
  • internal note id that is involved on this transaction

    Declaration

    Swift

    var noteId: Int { get set }
  • block time in in reference since 1970

    Declaration

    Swift

    var blockTimeInSeconds: TimeInterval { get set }
  • internal index for this transaction

    Declaration

    Swift

    var transactionIndex: Int { get set }