rawId property

Uint8List rawId

Get the binary representation of the transaction id. The encoded transaction is hashed using sha512/256 without base32 encoding

Returns the raw id of the transaction.

Implementation

Uint8List get rawId =>
    Uint8List.fromList(sha512256.convert(getEncodedTransaction()).bytes);