TransactionDigest
open class TransactionDigest : Disposable, AutoCloseable, TransactionDigestInterface
The digest of a Transaction.
Functions
| Name | Summary |
|---|---|
| close | @Synchronized open override fun close() |
| destroy | open override fun destroy() |
| equals | open operator override fun equals(other: Any?): Boolean |
| hashCode | open override fun hashCode(): Int |
| nextLexicographical | open override fun nextLexicographical(): TransactionDigest Returns the next digest in byte-increasing order. |
| nextLexicographicalOpt | open override fun nextLexicographicalOpt(): TransactionDigest? Returns the next digest in byte-increasing order, or None if the result would overflow. |
| toBase58 | open override fun toBase58(): String |
| toBytes | open override fun toBytes(): ByteArray |
| toString | open override fun toString(): String |
Companion object functions
| Name | Summary |
|---|---|
| fromBase58 | fun fromBase58(base58: String): TransactionDigest |
| fromBytes | fun fromBytes(bytes: ByteArray): TransactionDigest |
| genesisMarker | fun genesisMarker(): TransactionDigest The digest used to signify the parent transaction was the genesis. |
| random | fun random(): TransactionDigest |