transactionID property

String transactionID

Generates the transaction ID using the Keccak256 hash of the serialized transaction.

Implementation

String get transactionID {
  return BytesUtils.toHexString(
      QuickCrypto.keccack256Hash(signedSerialized()),
      prefix: "0x");
}